index.js
1.46 KB
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
/**
* web ui 模块
*
* @author: jiang
*/
import path from 'path';
import Koa from 'koa';
import hbs from '../../middleware/yoho-koa-hbs';
import helpers from '../../lib/helpers';
import routers from './routers'
import collectData from './actions/collect_data';
const app = new Koa();
app.use(hbs({
views: path.join(__dirname, '/views'),
defaultLayout: 'layout',
helpers: helpers
}));
const mastersUrl = [
'/projects/new',
'/projects/edit',
'/projects/save',
'/projects/build',
'/projects/deploy',
'/servers',
'/users'
];
// 服务器监控数据采集
collectData.collect();
app.use(async(ctx, next) => {
ctx.locals = {
title: 'Yoho Node.js 持续集成平台'
};
let pjax = ctx.request.get('X-PJAX');
if (pjax) {
ctx.locals.layout = null;
}
if (ctx.session && ctx.session.user) {
ctx.locals.is_master = ctx.session.user.role === '1000';
ctx.locals.current_user = ctx.session.user;
}
let needMaster = mastersUrl.some(u => {
return ctx.request.path.indexOf(u) === 0;
});
if (needMaster) {
if (ctx.locals.is_master) {
await next();
}
} else {
await next();
}
// if (pjax && ctx.status == 301) {
// let location = ctx.response.get('Location');
// ctx.response.set('X-PJAX-URL', ctx.origin + location);
// }
ctx.response.set('X-PJAX-URL', ctx.href);
});
routers(app);
export default app;