-
Notifications
You must be signed in to change notification settings - Fork 100
/
app.js
182 lines (146 loc) · 5.09 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* Tencent is pleased to support the open source community by making Tars available.
*
* Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
const Koa = require('koa');
const app = new Koa();
const path = require('path');
const url = require('url');
const onerror = require('koa-onerror');
const session = require('koa-session');
const static = require('koa-static');
const helmet = require("koa-helmet");
const staticRouter = require('koa-static-router');
const WebConf = require('./config/webConf');
const logger = require('./logger');
const localeMidware = require('./midware/localeMidware');
const loginMidware = require('./midware/ssoMidware');
const limitMidware = require('./midware/limitMidware');
const AuthService = require('./sso/service/auth/AuthService');
const PluginController = require('./plugin/controller/PluginController');
//信任proxy头部,支持 X-Forwarded-Host
app.proxy = true;
// error handler
onerror(app);
//防洪水攻击
app.use(limitMidware());
//验证码
const CONFIG = {
key: 'koa:sess',
maxAge: 1000 * 60 * 60 * 12, // 12小时, 设置 session 的有效时间,单位毫秒
autoCommit: true,
overwrite: true,
httpOnly: true,
signed: true,
rolling: false,
renew: false,
}
app.keys = ['sessionCaptcha']
app.use(session(CONFIG, app));
//安全防护
app.use(helmet());
//国际化多语言中间件
app.use(localeMidware);
//app.use
//登录校验
let loginConf = require('./config/loginConf.js');
loginConf.ignore = loginConf.ignore.concat(['/web', '/static', '/files', '/get_tarsnode', '/install.sh', '/favicon.ico']);
loginConf.ignore = loginConf.ignore.concat(['/adminPass.html', '/login.html', '/pages/server/api/adminModifyPass', '/pages/server/api/get_locale', '/pages/server/api/login', '/pages/server/api/isEnableLdap', '/pages/plugin/api/install', '/pages/server/api/authList', '/pages/server/api/ticket']);
//不需要登录, 环境变量优先
if (process.env.TARS_ENABLE_LOGIN == "false") {
loginConf.enableLogin = false;
}
app.use(async (ctx, next) => {
if (process.env.TARS_HAS_EXPIRE == 'true') {
logger.error("expire:", process.env.TARS_HAS_EXPIRE);
ctx.body = "The system has expired, please renew...";
return;
}
var myurl = url.parse(ctx.url);
if (!await AuthService.isActivated()) {
if ((myurl.pathname.lastIndexOf('.html') != -1 || myurl.pathname == '/') && myurl.pathname != '/adminPass.html') {
logger.info('/adminPass.html?redirect_url=' + encodeURIComponent(ctx.url));
ctx.redirect('/adminPass.html?redirect_url=' + encodeURIComponent(ctx.url));
return;
}
} else if (myurl.pathname == '/adminPass.html') {
ctx.redirect(myurl.pathname);
return;
}
await next();
});
app.use(loginMidware(loginConf));
//安装包资源中间件
app.use(staticRouter([{
dir: './files', //静态资源目录对于相对入口文件index.js的路径
router: '/files' //路由命名
}]));
//激活router
if (WebConf.isEnableK8s()) {
require('./k8s');
}
app.use(async (ctx, next) => {
ctx.cookies.set('enable', WebConf.enable ? "true" : "false", {
httpOnly: false
});
ctx.cookies.set('show', (WebConf.enable && WebConf.show) ? "true" : "false", {
httpOnly: false
});
ctx.cookies.set('k8s', WebConf.isEnableK8s() ? "true" : "false", {
httpOnly: false
});
await next();
})
//激活router
// dcache 会添加新的 page、api router, 不能提前
const {
indexRouter,
pageRouter,
paegApiRouter,
clientRouter,
apiRouter,
k8sRouter,
k8sApiRouter,
pluginApiRouter,
marketApiRouter
} = require('./midware');
app.use(indexRouter.routes(), indexRouter.allowedMethods({
throw: true
}));
app.use(pageRouter.routes(), pageRouter.allowedMethods({
throw: true
}));
app.use(paegApiRouter.routes(), paegApiRouter.allowedMethods({
throw: true
}));
app.use(clientRouter.routes(), clientRouter.allowedMethods({
throw: true
}));
app.use(apiRouter.routes(), apiRouter.allowedMethods({
throw: true
}));
if (k8sRouter) {
app.use(k8sRouter.routes()).use(k8sRouter.allowedMethods());
}
if (k8sApiRouter) {
app.use(k8sApiRouter.routes()).use(k8sApiRouter.allowedMethods());
}
app.use(pluginApiRouter.routes()).use(pluginApiRouter.allowedMethods());
app.use(marketApiRouter.routes()).use(marketApiRouter.allowedMethods());
//激活静态资源中间件
app.use(static(path.join(__dirname, './client/dist'), {
maxage: 7 * 24 * 60 * 60 * 1000
}));
PluginController.loadPlugins(app);
module.exports = app;