forked from TarsCloud/TarsWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
168 lines (137 loc) · 5.24 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
/**
* 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 bodyparser = require('koa-bodyparser');
const session = require('koa-session');
const multer = require('koa-multer');
const static = require('koa-static');
const apiMidware = require('./app/midware/apiMidware');
const preMidware = require('./app/midware/preMidware');
const postMidware = require('./app/midware/postMidware');
const localeMidware = require('./app/midware/localeMidware');
const helmet = require("koa-helmet");
const loginMidware = require('./app/midware/ssoMidware');
const limitMidware = require('./app/midware/limitMidware');
const WebConf = require('./config/webConf');
const staticRouter = require('koa-static-router');
const upload = multer({dest: WebConf.pkgUploadPath.path + '/'});
const logger = require('./app/logger');
const AuthService = require('./sso/app/service/auth/AuthService');
//信任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(bodyparser());
app.use(upload.array('suse',5)); //这里决定了上传包的name只能叫suse。
//国际化多语言中间件
app.use(localeMidware);
//前置中间件
preMidware.forEach((midware) => {
app.use(midware);
});
//登录校验
let loginConf = require('./config/loginConf.js');
loginConf.ignore = loginConf.ignore.concat(['/web_version', '/static', '/captcha', '/files', '/get_tarsnode', '/install.sh', '/favicon.ico', '/pages/server/api/get_locale']);
loginConf.ignore = loginConf.ignore.concat(['/adminPass.html', '/login.html', '/register.html', '/pages/server/api/adminModifyPass', '/pages/server/api/get_locale', '/pages/server/api/login']);
//上传文件不需要登录
if(WebConf.webConf.uploadLogin || process.env.TARS_WEB_UPLOAD == 'true') {
loginConf.ignore.push('/pages/server/api/upload_patch_package');
loginConf.ignore.push('/api/upload_patch_package');
loginConf.ignore.push('/pages/server/api/upload_and_publish');
loginConf.ignore.push('/api/upload_and_publish');
}
//web和demo的cookie写在同一个域名下
if(process.env.COOKIE_DOMAIN) {
loginConf.cookieDomain = process.env.COOKIE_DOMAIN
}
app.use(async (ctx, next) => {
var myurl = url.parse(ctx.url);
if (await AuthService.isInit()) {
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
let dcacheConf = require('./config/dcacheConf.js');
if (dcacheConf.enableDcache) {
app.use(async (ctx, next) => {
await next();
ctx.cookies.set('dcache', 'true', {httpOnly: false});
});
// tars-dcache 的包,依赖了很多tars的模块,引用路径是从根目录开始的,防止引用出错,先改后更
// let cwd = process.cwd();
// process.chdir(path.join(__dirname, './'));
require('./dcache');
// let tarsDcache = require('@tars/dcache');
// process.chdir(cwd);
} else {
app.use(async (ctx, next) => {
await next();
ctx.cookies.set('dcache', 'false', {httpOnly: false});
})
}
require('./sso');
//激活router
// dcache 会添加新的 page、api router, 不能提前
const { pageRouter, paegApiRouter, clientRouter, apiRouter} = require('./app/router');
// app.use(apiMidware(apiRouter));
app.use(pageRouter.routes(), pageRouter.allowedMethods());
app.use(paegApiRouter.routes(), paegApiRouter.allowedMethods());
app.use(clientRouter.routes(), clientRouter.allowedMethods());
app.use(apiRouter.routes(), apiRouter.allowedMethods());
//激活静态资源中间件
app.use(static(path.join(__dirname, './client/dist'), {maxage: 7 * 24 * 60 * 60 * 1000}));
//后置中间件
postMidware.forEach((midware) => {
app.use(midware);
});
//
module.exports = app;