index.js
2.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* web ui 模块
*
* @author: jiang
*/
'use strict';
const path = require('path');
const json = require('koa-json')
const Koa = require('koa');
const hbs = require('../../middleware/yoho-koa-hbs');
const helpers = require('../../lib/helpers');
const routers = require('./routers');
const collectData = require('./actions/collect_data');
const checkcode = require('./actions/checkcode');
const redis = require('../../lib/redis');
const app = new Koa();
app.use(json())
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'
];
// 代码规则检查
checkcode.check();
// 服务器监控数据采集
collectData.collect();
app.use(async(ctx, next) => {
ctx.redis = redis.client;
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.is_dev = ctx.session.user.role === '2000';
ctx.locals.not_business = ctx.session.user.role !== '3000';
ctx.locals.is_business = ctx.session.user.role === '3000';
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('Cache-Control', 'no-cache, no-store');
ctx.response.set('Pragma', 'no-cache')
ctx.response.set('X-PJAX-URL', ctx.href);
});
routers(app);
module.exports = app;