forked from lindoelio/meteor-office365-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffice365_server.js
83 lines (74 loc) · 2.67 KB
/
office365_server.js
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
/*globals Office365, OAuth */
'use strict';
Office365 = {};
let userAgent = 'Meteor';
if (Meteor.release) { userAgent += `/${ Meteor.release }`; }
const getAccessToken = function(query) {
const config = ServiceConfiguration.configurations.findOne({service: 'office365'});
if (!config) { throw new ServiceConfiguration.ConfigError(); }
const redirectUri = OAuth._redirectUri('office365', config).replace('?close', '');
let response;
try {
response = HTTP.post(
`https://login.microsoftonline.com/${ config.tenant || 'common' }/oauth2/v2.0/token`, {
headers: {
Accept: 'application/json',
'User-Agent': userAgent
},
params: {
grant_type: 'authorization_code',
code: query.code,
client_id: config.clientId,
client_secret: OAuth.openSecret(config.secret),
redirect_uri: redirectUri,
state: query.state
}
});
} catch (error) {
throw _.extend(new Error(`Failed to complete OAuth handshake with Microsoft Office365. ${ error.message }`), {response: error.response});
}
if (response.data.error) {
throw new Error(`Failed to complete OAuth handshake with Microsoft Office365. ${ response.data.error }`);
} else {
return response.data.access_token;
}
};
const getIdentity = function(accessToken) {
try {
return HTTP.get(
'https://graph.microsoft.com/v1.0/me', {
headers: {
Authorization: `Bearer ${ accessToken }`,
Accept: 'application/json',
'User-Agent': userAgent
}
}).data;
} catch (error) {
throw _.extend(new Error(`Failed to fetch identity from Microsoft Office365. ${ error.message }`), {response: error.response});
}
};
OAuth.registerService('office365', 2, null, function(query) {
const accessToken = getAccessToken(query);
const identity = getIdentity(accessToken);
return {
serviceData: {
id: identity.id,
accessToken: OAuth.sealSecret(accessToken),
displayName: identity.displayName,
givenName: identity.givenName,
surname: identity.surname,
username: identity.userPrincipalName && identity.userPrincipalName.split('@')[0],
userPrincipalName: identity.userPrincipalName,
mail: identity.mail,
jobTitle: identity.jobTitle,
mobilePhone: identity.mobilePhone,
businessPhones: identity.businessPhones,
officeLocation: identity.officeLocation,
preferredLanguage: identity.preferredLanguage
},
options: {profile: {name: identity.givenName}}
};
});
Office365.retrieveCredential = function(credentialToken, credentialSecret) {
return OAuth.retrieveCredential(credentialToken, credentialSecret);
};