passport-taobao.js
1.98 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
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
/**
* Module dependencies.
*/
const util = require('util');
const md5 = require('yoho-md5');
const TopClient = require('topsdk');
const { OAuth2Strategy, InternalOAuthError } = require('passport-oauth');
let client;
/**
* @param {Object} params
* @api public
*/
function signMD5(params, clientSecret) {
let _signStr = '';
params.sign_method = 'md5';
for (const k of Object.keys(params).sort()) {
_signStr += `${k}${params[k]}`;
}
let signd = md5(clientSecret + _signStr + clientSecret);
params.sign = new Buffer(signd, 'base64').toString('hex');
return params;
}
/**
* @param {Object} options
* @param {Function} verify
* @api public
*/
function Strategy(options, verify) {
options = options || {};
options.authorizationURL = options.authorizationURL || 'https://oauth.taobao.com/authorize';
options.tokenURL = options.tokenURL || 'https://oauth.taobao.com/token';
options.scopeSeparator = options.scopeSeparator || ',';
options.customHeaders = options.customHeaders || {};
client = new TopClient(options.clientID, options.clientSecret, {
endpoint: 'https://eco.taobao.com/router/rest',
useValidators: true,
rawResponse: false
});
if (!options.customHeaders['User-Agent']) {
options.customHeaders['User-Agent'] = options.userAgent || 'passport-taobao';
}
OAuth2Strategy.call(this, options, verify);
this.name = 'taobao';
this._userProfileURL = options.userProfileURL || 'https://eco.taobao.com/router/rest';
}
/**
* Inherit from `OAuth2Strategy`.
*/
util.inherits(Strategy, OAuth2Strategy);
/**
* @param {String} accessToken
* @param {Function} done
* @api protected
*/
Strategy.prototype.userProfile = function (accessToken, done) {
client.execute('taobao.openuid.get', {
session: accessToken
}).then(res => {
done(null, res);
}).catch(e => {
done(new InternalOAuthError('failed to fetch open uid', e));
});
}
module.exports = Strategy;