-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
83 lines (75 loc) · 1.84 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
'use strict';
module.exports = app => {
// app
app.locals = {
nav_menu: [
{
name: 'Home',
href: '/',
},
{
name: 'Docs',
href: '/docs',
},
{
name: 'About',
href: '/about',
},
{
name: 'Contributors',
href: '/contributors',
},
],
};
// passport
const githubHandler = async (ctx, { profile }) => {
let existUser = await ctx.model.User.findOne({
githubId: profile.id,
});
// 用户不存在则创建
if (!existUser) {
existUser = new ctx.model.User({});
}
// 用户存在,更新字段
existUser.avatar = profile._json.avatar_url;
existUser.username = profile.username;
existUser.githubId = profile.id;
existUser.displayName = profile.displayName;
existUser.githubJson = profile._json;
await existUser.save();
return existUser;
};
app.passport.verify(async (ctx, user) => {
ctx.logger.debug('passport.verify', user);
const existUser = await githubHandler(ctx, user);
if (existUser) {
// id存入Cookie, 用于验证过期.
const authToken = existUser._id + '$$$$'; // 以后可能会存储更多信息,用 $$$$ 来分隔
const opts = {
path: '/',
maxAge: 1000 * 60 * 60 * 24 * 30,
signed: true,
httpOnly: true,
};
ctx.cookies.set(app.config.authCookieName, authToken, opts); // cookie 有效期30天
}
return existUser;
});
app.passport.serializeUser(async (ctx, user) => {
if (user) {
return {
_id: user._id,
};
}
return user;
});
app.passport.deserializeUser(async (ctx, user) => {
if (user && user._id) {
const existUser = await ctx.model.User.findOne({
_id: user._id,
});
return existUser;
}
return user;
});
};