-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
89 lines (83 loc) · 2.28 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
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 logger = require("koa-logger");
const jwtKoa = require("koa-jwt");
const cors = require("koa2-cors");
const fs = require("fs");
//引入模块
const index = require("./routes/index");
const users = require("./routes/users");
const dashboard = require("./routes/dashboard");
const usertabel = require("./routes/tabel");
//密钥
const { secret } = require("./config/index");
// const routerArr = fs.readdirSync(__dirname + "/routes");
// console.log(routerArr, "routerArradsdasdasdsad");
// routerArr.forEach((item, index) => {
// const index = require("./routes/" + item);
// console.log(router, "router");
// app.use(index.routes(), index.allowedMethods());
// });
// error handler
onerror(app);
// middlewares
app.use(
bodyparser({
enableTypes: ["json", "form", "text"],
})
);
app.use(json());
app.use(logger());
app.use(require("koa-static")(__dirname + "/public"));
app.use(
views(__dirname + "/views", {
extension: "ejs",
})
);
app.use(cors()); //配置跨域
app.use((ctx, next) => {
return next().catch((err) => {
if (err.status === 401) {
ctx.status = 401;
ctx.body = {
ok: false,
code: 401,
msg: err.originalError ? err.originalError.message : err.message,
};
} else {
throw err;
}
});
});
// 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`);
});
/* 路由权限控制 */
app.use(
jwtKoa({ secret: secret }).unless({
// 设置login、register接口,可以不需要认证访问
path: [
/^\/api\/login/,
/^\/api\/register/,
/^((?!).)*$/, // 设置除了私有接口外的其它资源,可以不需要认证访问
],
})
);
// routes
app.use(index.routes(), index.allowedMethods());
app.use(users.routes(), users.allowedMethods());
app.use(dashboard.routes(), dashboard.allowedMethods());
app.use(usertabel.routes(), usertabel.allowedMethods());
// error-handling
app.on("error", (err, ctx) => {
console.error("server error", err, ctx);
});
module.exports = app;