forked from swordsman-coder/webfunny_servers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
91 lines (84 loc) · 2.55 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
const Koa = require('koa')
const app = new Koa()
const views = require('koa-views')
const json = require('koa-json')
const onerror = require('koa-onerror')
const bodyparser = require('koa-bodyparser')
const jwt = require('koa-jwt')
const logger = require('koa-logger')
const cors = require('koa2-cors');
const index = require('./routes/index')
const secret = require('./config/secret')
const err = require('./middlreware/error')
const log = require("./config/log")
// error handler
onerror(app)
app.use(err())
// app.use(cors({
// "Origin": function (ctx) {
// if (ctx.url === '/api') {
// }
// return 'http://localhost:9010'; // 这样就能只允许 http://localhost:9010 这个域名的请求了
// },
// "Access-Control-Allow-Headers": "Content-Type, Authorization, X-Requested-With",
// "Access-Control-Allow-Methods": "PUT,POST,GET,DELETE,OPTIONS",
// "Access-Control-Allow-Credentials": true,
// "X-Powered-By": "3.2.1",
// "Content-Type": "application/json;charset=utf-8"
// }))
app.use(async (ctx, next) => {
// ctx.set("Access-Control-Allow-Origin", "*")
// ctx.set("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Requested-With")
// ctx.set("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS")
// ctx.set("Access-Control-Allow-Credentials", true)
ctx.set("X-Powered-By", "3.2.1")
ctx.set("Content-Type", "application/json;charset=utf-8")
await next()
})
// app.use(cors())
// 过滤不用jwt验证
// app.use(jwt({secret: secret.sign}).unless({
// path: [
// /^\/api\/v1\/*/,
// ]
// }))
// middlewares
app.use(bodyparser({
enableTypes: ['json', 'form', 'text'],
formLimit: "5mb",
jsonLimit: "5mb",
textLimit: "5mb"
}))
app.use(json())
// app.use(logger())
app.use(require('koa-static')(__dirname + '/public'))
app.use(views(__dirname + '/views', {
extension: 'pug'
}))
// logger
app.use(async (ctx, next) => {
const start = new Date()
// await next()
// const ms = new Date() - start
// console.log(`${ctx.method} ${ctx.url} - ${ms}ms`)
let ms = 0
try {
//开始进入到下一个中间件
await next();
ms = new Date() - start
//记录响应日志
// log.info(ctx, ms);
} catch (error) {
//记录异常日志
log.error(ctx, error, ms);
}
console.log(`${ctx.req.method} ${ctx.req.url} - ${ms}ms`)
})
// routes
app.use(index.routes())
app.use(index.allowedMethods())
// error-handling
app.on('error', (err, ctx) => {
console.error('server error', err, ctx)
});
module.exports = app