strategy.js
2.41 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
80
81
82
83
84
85
86
var util = require('util'),
OAuth2Strategy = require('passport-oauth2');
var DEFAULT_CLIENT_SECRET = 'kakao';
/**
* KaKaoStrategy 생성자.<br/>
* @param options.clientID 필수. kakao rest app key.
* @param options.callbackURL 필수. 로그인 처리 후 호출할 URL
* @param verify
* @constructor
*/
function Strategy(options, verify) {
var oauthHost = 'https://kauth.kakao.com';
options = options || {};
options.authorizationURL = oauthHost + '/oauth/authorize';
options.tokenURL = oauthHost + '/oauth/token';
if (!options.clientSecret) {
options.clientSecret = DEFAULT_CLIENT_SECRET;
}
options.scopeSeparator = options.scopeSeparator || ',';
options.customHeaders = options.customHeaders || {};
if (!options.customHeaders['User-Agent']) {
options.customHeaders['User-Agent'] = options.userAgent || 'passport-kakao';
}
OAuth2Strategy.call(this, options, verify);
this.name = 'kakao';
this._userProfileURL = 'https://kapi.kakao.com/v1/user/me';
}
/**
* `OAuth2Stragegy`를 상속 받는다.
*/
util.inherits(Strategy, OAuth2Strategy);
/**
* kakao 사용자 정보를 얻는다.<br/>
* 사용자 정보를 성공적으로 조회하면 아래의 object가 done 콜백함수 호출과 함꼐 넘어간다.
*
* - `provider` kakao 고정
* - `id` kakao user id number
* - `username` 사용자의 kakao nickname
* - `_raw` json string 원문
* _ `_json` json 원 데이터
*
* @param {String} accessToken
* @param {Function} done
*/
Strategy.prototype.userProfile = function(accessToken, done) {
this._oauth2.get(this._userProfileURL, accessToken, function (err, body, res) {
if (err) { return done(new InternalOAuthError('failed to fetch user profile', err)); }
try {
var json = JSON.parse(body);
var profile = { provider: 'kakao' };
profile.id = json.id;
// 카카오톡이나 카카오스토리에 연동한 적이 없는 계정의 경우
// properties가 비어있다고 한다. 없을 경우의 처리
var properties = json.properties || {
nickname: '미연동 계정'
};
profile.username = properties.nickname;
profile.displayName = properties.nickname;
profile._raw = body;
profile._json = json;
return done(null, profile);
} catch(e) {
return done(e);
}
});
}
/**
* Expose `Strategy`.
*/
module.exports = Strategy;