-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
53 lines (45 loc) · 1.19 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
const Koa = require('koa')
const app = new Koa()
const path = require('path')
const views = require('koa-views')
const json = require('koa-json')
const onerror = require('koa-onerror')
const bodyparser = require('koa-bodyparser')
const logger = require('koa-logger')
const session = require('koa-session2')
const Store = require("./utils/store")
const index = require('./routes/index')
// error handler
onerror(app)
app.use(bodyparser())
app.use(json())
app.use(logger())
app.use(require('koa-static')(__dirname + '/public'))
app.use(require('koa-static')(__dirname + '/bower_components'))
app.use(session({
key: "ldk_upload_img",
maxAge: 2 * 60 * 60 * 1000,
store: new Store()
}));
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`)
})
// user info
app.use(async(ctx, next) => {
ctx.state.user = ctx.session.user
await next()
})
// routes
app.use(index.routes(), index.allowedMethods())
// error-handling
app.on('error', (err, ctx) => {
console.error('server error', err, ctx)
});
module.exports = app