profile.js
884 Bytes
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
/**
* Parse profile.
*
* @param {object|string} json
* @return {object}
* @access public
*/
exports.parse = function(json) {
if ('string' == typeof json) {
json = JSON.parse(json);
}
var profile = {};
profile.id = json.id;
profile.username = json.username;
profile.displayName = json.name;
profile.name = { familyName: json.last_name,
givenName: json.first_name,
middleName: json.middle_name };
profile.gender = json.gender;
profile.profileUrl = json.link;
if (json.email) {
profile.emails = [{ value: json.email }];
}
if (json.picture) {
if (typeof json.picture == 'object' && json.picture.data) {
// October 2012 Breaking Changes
profile.photos = [{ value: json.picture.data.url }];
} else {
profile.photos = [{ value: json.picture }];
}
}
return profile;
};