forked from CiscoDevNet/webex-integration-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
325 lines (275 loc) · 12.4 KB
/
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
//
// Copyright (c) 2016 Cisco Systems
// Licensed under the MIT License
//
/*
* a Webex Teams Integration based on Node.js, that acts on user's behalf.
* implements the Webex OAuth flow, to retreive an API access tokens.
*
* See documentation: https://developer.webex.com/authentication.html
*
*/
// Load environment variables from project .env file
require('node-env-file')(__dirname + '/.env');
const debug = require("debug")("oauth");
const fine = require("debug")("oauth:fine");
const request = require("request");
const express = require('express');
const app = express();
// Step 0: create an OAuth integration from https://developer.ciscospark.com/add-integration.html
// - then fill in your Integration properties below
//
const clientId = process.env.CLIENT_ID || "C4d2626189e40ffbde5f8d2948650bda5b4261804986bb3a977b079d2af2d7d93";
const clientSecret = process.env.CLIENT_SECRET || "81772d83ee75a5835d2b19a1c9e95b47bf6618a3a736e361c5324dc18e7183e8";
const scopes = process.env.SCOPES || "spark:people_read"; // supported scopes are documented at: https://developer.webex.com/add-integration.html, the scopes separator is a space, example: "spark:people_read spark:rooms_read"
// Compute redirect URI where your integration is waiting for Webex cloud to redirect and send the authorization code
// unless provided via the REDIRECT_URI variable
const port = process.env.PORT || 8080;
let redirectURI = process.env.REDIRECT_URI
if (!redirectURI) {
// Glitch hosting
if (process.env.PROJECT_DOMAIN) {
redirectURI = "https://" + process.env.PROJECT_DOMAIN + ".glitch.me/oauth";
}
else {
// defaults to localhost
redirectURI = `http://localhost:${port}/oauth`;
}
}
debug(`OAuth integration settings:\n - CLIENT_ID : ${clientId}\n - REDIRECT_URI : ${redirectURI}\n - SCOPES : ${scopes}`);
// Step 1: initiate the OAuth flow
// - serves a Web page with a link to the Webex OAuth flow initializer
//
// Initiate the OAuth flow from the 'index.ejs' template
// -------------------------------------------------------------
// -- Comment this section to initiate the flow from static html page
// state can be used for security and/or correlation purposes
const state = process.env.STATE || "CiscoDevNet";
const initiateURL = "https://api.ciscospark.com/v1/authorize?"
+ "client_id=" + clientId
+ "&response_type=code"
+ "&redirect_uri=" + encodeURIComponent(redirectURI)
+ "&scope=" + encodeURIComponent(scopes)
+ "&state=" + state;
const read = require("fs").readFileSync;
const join = require("path").join;
const str = read(join(__dirname, '/www/index.ejs'), 'utf8');
const ejs = require("ejs");
const compiled = ejs.compile(str)({ "link": initiateURL }); // inject the link into the template
app.get("/index.html", function (req, res) {
debug("serving the integration home page (generated from an EJS template)");
res.send(compiled);
});
app.get("/", function (req, res) {
res.redirect("/index.html");
});
// -------------------------------------------------------------
// Statically serve the "/www" directory
// WARNING: Do not move the 2 lines of code below, as we need this exact precedance order for the static and dynamic HTML generation to work correctly all together
// If the section above is commented, the static index.html page will be served instead of the EJS template.
const path = require('path');
app.use("/", express.static(path.join(__dirname, 'www')));
// Step 2: process OAuth Authorization codes
//
app.get("/oauth", function (req, res) {
debug("oauth callback hitted");
// Did the user decline
if (req.query.error) {
if (req.query.error == "access_denied") {
debug("user declined, received err: " + req.query.error);
res.send("<h1>OAuth Integration could not complete</h1><p>Got your NO, ciao.</p>");
return;
}
if (req.query.error == "invalid_scope") {
debug("wrong scope requested, received err: " + req.query.error);
res.send("<h1>OAuth Integration could not complete</h1><p>The application is requesting an invalid scope, Bye bye.</p>");
return;
}
if (req.query.error == "server_error") {
debug("server error, received err: " + req.query.error);
res.send("<h1>OAuth Integration could not complete</h1><p>Webex sent a server error, Auf Wiedersehen.</p>");
return;
}
debug("received err: " + req.query.error);
res.send("<h1>OAuth Integration could not complete</h1><p>Error case not implemented, au revoir.</p>");
return;
}
// Check request parameters correspond to the spec
if ((!req.query.code) || (!req.query.state)) {
debug("expected code & state query parameters are not present");
res.send("<h1>OAuth Integration could not complete</h1><p>Unexpected query parameters, ignoring...</p>");
return;
}
// Check State
// [NOTE] we implement a Security check below, but the State variable can also be leveraged for Correlation purposes
if (state != req.query.state) {
debug("State does not match");
res.send("<h1>OAuth Integration could not complete</h1><p>Wrong secret, aborting...</p>");
return;
}
// Retreive access token (expires in 14 days) & refresh token (expires in 90 days)
// {
// "access_token":"N2MxMmE0YzgtMjY0MS00MDIxLWFmZDItNTg0MGVkOWEyNWQ3YmMzMmFlODItYzAy",
// "expires_in":1209599,
// "refresh_token":"NjBjNDk3MjktMjUwMy00YTlkLWJkOTctM2E2MjE3YWU1NmI4Njk3Y2IzODctMjBh",
// "refresh_token_expires_in":7775999
// }
const options = {
method: "POST",
url: "https://api.ciscospark.com/v1/access_token",
headers: {
"content-type": "application/x-www-form-urlencoded"
},
form: {
grant_type: "authorization_code",
client_id: clientId,
client_secret: clientSecret,
code: req.query.code,
redirect_uri: redirectURI
}
};
request(options, function (error, response, body) {
if (error) {
debug("could not reach Webex cloud to retreive access & refresh tokens");
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your access token. Try again...</p>");
return;
}
if (response.statusCode != 200) {
debug("access token not issued with status code: " + response.statusCode);
switch (response.statusCode) {
case 400:
const responsePayload = JSON.parse(response.body);
res.send("<h1>OAuth Integration could not complete</h1><p>Bad request. <br/>" + responsePayload.message + "</p>");
break;
case 401:
res.send("<h1>OAuth Integration could not complete</h1><p>OAuth authentication error. Ask the service contact to check the secret.</p>");
break;
default:
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your access token. Try again...</p>");
break;
}
return;
}
// Check payload
const json = JSON.parse(body);
if ((!json) || (!json.access_token) || (!json.expires_in) || (!json.refresh_token) || (!json.refresh_token_expires_in)) {
debug("could not parse access & refresh tokens");
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your access token. Try again...</p>");
return;
}
debug("OAuth flow completed, fetched tokens: " + JSON.stringify(json));
// [Optional] Store tokens for future use
storeTokens(json.access_token, json.expires_in, json.refresh_token, json.refresh_token_expires_in);
// OAuth flow has completed
oauthFlowCompleted(json.access_token, res);
});
});
// Step 3: this is where the integration runs its custom logic
// - this function is called as the OAuth flow has been successfully completed,
// - this function is expected to send back an HTML page to the end-user
//
// some optional activities to perform here:
// - associate the issued access token to a user through the state (acting as a Correlation ID)
// - store the refresh token (valid 90 days) to reissue later a new access token (valid 14 days)
function oauthFlowCompleted(access_token, res) {
//
// Custom logic below
//
// Retreive user name: GET https://api.ciscospark.com/v1/people/me
const options = {
method: 'GET',
url: 'https://api.ciscospark.com/v1/people/me',
headers:
{
"authorization": "Bearer " + access_token
}
};
request(options, function (error, response, body) {
if (error) {
debug("could not reach Webex API to retreive Person's details, error: " + error);
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your Webex Teams account details. Try again...</p>");
return;
}
// Check the call is successful
if (response.statusCode != 200) {
debug("could not retreive your details, /people/me returned: " + response.statusCode);
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your Webex Teams account details. Try again...</p>");
return;
}
// Check JSON payload is compliant with specs https://api.ciscospark.com/v1/people/me
// {
// "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS85MmIzZGQ5YS02NzVkLTRhNDEtOGM0MS0yYWJkZjg5ZjQ0ZjQ",
// "emails": [
// "[email protected]"
// ],
// "displayName": "Steve Sfartz",
// "avatar": "https://1efa7a94ed216783e352-c62266528714497a17239ececf39e9e2.ssl.cf1.rackcdn.com/V1~c2582d2fb9d11e359e02b12c17800f09~aqSu09sCTVOOx45HJCbWHg==~1600",
// "created": "2016-02-04T15:46:20.321Z"
// }
const json = JSON.parse(body);
if ((!json) || (!json.displayName)) {
debug("could not parse Person details: bad json payload or could not find a displayName.");
res.send("<h1>OAuth Integration could not complete</h1><p>Sorry, could not retreive your Webx Teams account details. Try again...</p>");
return;
}
// Uncomment to send feedback via static HTML code
//res.send("<h1>OAuth Integration example for Webex (static HTML)</h1><p>So happy to meet, " + json.displayName + " !</p>");
// Current code leverages an EJS template:
const str = read(join(__dirname, '/www/display-name.ejs'), 'utf8');
const compiled = ejs.compile(str)({ "displayName": json.displayName });
res.send(compiled);
});
}
// The idea here is to store the access token for future use, and the expiration dates and refresh_token to have Webex cloud issue a new access token
function storeTokens(access_token, expires_in, refresh_token, refresh_token_expires_in) {
// Store the token in some secure backend
debug("TODO: store tokens and expiration dates");
// For demo purpose, we'll NOW ask for a refreshed token
refreshAccessToken(refresh_token);
}
//
// Example of Refresh token usage
//
function refreshAccessToken(refresh_token) {
const options = {
method: "POST",
url: "https://api.ciscospark.com/v1/access_token",
headers: {
"content-type": "application/x-www-form-urlencoded"
},
form: {
grant_type: "refresh_token",
client_id: clientId,
client_secret: clientSecret,
refresh_token: refresh_token
}
};
request(options, function (error, response, body) {
if (error) {
debug("could not reach Webex cloud to refresh access token");
return;
}
if (response.statusCode != 200) {
debug("access token not issued with status code: " + response.statusCode);
return;
}
// Check payload
const json = JSON.parse(body);
if ((!json) || (!json.access_token) || (!json.expires_in) || (!json.refresh_token) || (!json.refresh_token_expires_in)) {
debug("could not parse response");
return;
}
// Refresh token obtained
debug("newly issued tokens: " + JSON.stringify(json));
});
}
function getLogoutURL(token, redirectURL) {
const rootURL = redirectURL.substring(0, redirectURL.length - 5);
return "https://idbroker.webex.com/idb/oauth2/v1/logout?"
+ "goto=" + encodeURIComponent(rootURL)
+ "&token=" + token;
}
// Starts the Webex Integration
app.listen(port, function () {
console.log("Webex OAuth Integration started on port: " + port);
});