forked from laardee/serverless-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.js
More file actions
59 lines (57 loc) · 1.17 KB
/
Copy pathprofile.js
File metadata and controls
59 lines (57 loc) · 1.17 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
'use strict';
/**
* Profile class that normalizes profile data fetched from authentication provider
*/
function formatAddress(address) {
const result = address;
if (result) {
result.formatted =
`${result.street_address}\n${result.postal_code} ${result.locality}\n${result.country}`;
return result;
}
return null;
}
export class Profile {
/**
* @param data {object}
*/
constructor(data) {
const fields = [
'_raw',
'address',
'at_hash',
'birthdate',
'email_verified',
'email',
'family_name',
'gender',
'given_name',
'id',
'locale',
'middle_name',
'name',
'nickname',
'phone_number_verified',
'phone_number',
'picture',
'preferred_username',
'profile',
'provider',
'sub',
'updated_at',
'website',
'zoneinfo'
];
this._raw = data;
for (const field of fields) {
if (data.hasOwnProperty(field)) {
const value = data[field];
if (field === 'address') {
this.address = formatAddress(data.address);
} else {
this[field] = value || null;
}
}
}
}
}