-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
executable file
·37 lines (32 loc) · 1.22 KB
/
app.js
File metadata and controls
executable file
·37 lines (32 loc) · 1.22 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
'use strict';
const debug = require('debug')('egg-passport-weixin');
const assert = require('assert');
const Strategy = require('passport-weixin').Strategy;
module.exports = app => {
const config = app.config.passportWeiXin;
config.passReqToCallback = true;
assert(config.key, '[egg-passport-weixin] config.passportWeiXin.key required');
assert(config.secret, '[egg-passport-weixin] config.passportWeiXin.secret required');
config.clientID = config.key;
config.clientSecret = config.secret;
config.authorizationURL = 'https://open.weixin.qq.com/connect/oauth2/authorize';
// config.scope = 'snsapi_userinfo';
// must require `req` params
app.passport.use('weixin', new Strategy(config, (req, accessToken, refreshToken, params, profile, done) => {
// format user
const user = {
provider: 'weixin',
id: profile.id,
name: profile.username,
displayName: profile.displayName,
photo: profile.photos && profile.photos[0] && profile.photos[0].value,
accessToken,
refreshToken,
params,
profile,
};
debug('%s %s get user: %j', req.method, req.url, user);
// let passport do verify and call verify hook
app.passport.doVerify(req, user, done);
}));
};