This repository has been archived by the owner on May 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
calendar-api.js
536 lines (503 loc) · 21.2 KB
/
calendar-api.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE.txt in the project root for license information.
var base = require('./version-2.js');
var utilities = require('./utilities.js');
/**
* @module calendar
*/
module.exports = {
/**
* Used to get events from a calendar.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [parameters.calendarId] {string} The calendar id. If absent, the API calls the `/User/Events` endpoint.
* @param [parameters.odataParams] {object} An object containing key/value pairs representing OData query parameters. See [Use OData query parameters]{@link https://msdn.microsoft.com/office/office365/APi/complex-types-for-mail-contacts-calendar#UseODataqueryparameters} for details.
*
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the v2.0 endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // Set up oData parameters
* var queryParams = {
* '$select': 'Subject,Start,End',
* '$orderby': 'Start/DateTime desc',
* '$top': 20
* };
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* outlook.calendar.getEvents({token: token, folderId: 'Inbox', odataParams: queryParams, user: userInfo},
* function(error, result){
* if (error) {
* console.log('getEvents returned an error: ' + error);
* }
* else if (result) {
* console.log('getEvents returned ' + result.value.length + ' events.');
* result.value.forEach(function(event) {
* console.log(' Subject:', event.Subject);
* console.log(' Start:', event.Start.DateTime.toString());
* console.log(' End:', event.End.DateTime.toString());
* });
* }
* });
*/
getEvents: function(parameters, callback){
var userSpec = utilities.getUserSegment(parameters);
var calendarSpec = parameters.calendarId === undefined ? '' : '/Calendars/' + parameters.calendarId;
var requestUrl = base.apiEndpoint() + userSpec + calendarSpec + '/Events';
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user
};
if (parameters.odataParams !== undefined) {
apiOptions['query'] = parameters.odataParams;
}
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 200) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if (typeof callback === 'function') {
callback(null, response.body);
}
}
});
},
/**
* Syncs events of a calendar.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.startDateTime {string} The start time and date for the calendar view in ISO 8601 format without a timezone designator. Time zone is assumed to be UTC unless the `Prefer: outlook.timezone` header is sent in the request.
* @param parameters.endDateTime {string} The end time and date for the calendar view in ISO 8601 format without a timezone designator. Time zone is assumed to be UTC unless the `Prefer: outlook.timezone` header is sent in the request.
* @param [parameters.skipToken] {string} The value to pass in the `skipToken` query parameter in the API call.
* @param [parameters.deltaToken] {string} The value to pass in the `deltaToken` query parameter in the API call.
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [parameters.calendarId] {string} The calendar id. If absent, the API calls the `/User/calendarview` endpoint. Valid values of this parameter are:
*
* - The `Id` property of a `Calendar` entity
* - `Primary`, the primary calendar is used. It is used by default if no Id is specified
*
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the 2.0 version of the api
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* // You have to specify a time window
* var startDateTime = "2017-01-01";
* var endDateTime = "2017-12-31";
*
* var apiOptions = {
* token: token,
* calendarId: 'calendar_id', // If none specified, the Primary calendar will be used
* user: userinfo,
* startDateTime: startDateTime,
* endDateTime: endDateTime
* };
*
* outlook.calendar.syncEvents(apiOptions, function(error, events) {
* if (error) {
* console.log('syncEvents returned an error:', error);
* } else {
* // Do something with the events.value array
* // Then get the @odata.deltaLink
* var delta = messages['@odata.deltaLink'];
*
* // Handle deltaLink value appropriately:
* // In general, if the deltaLink has a $skiptoken, that means there are more
* // "pages" in the sync results, you should call syncEvents again, passing
* // the $skiptoken value in the apiOptions.skipToken. If on the other hand,
* // the deltaLink has a $deltatoken, that means the sync is complete, and you should
* // store the $deltatoken value for future syncs.
* //
* // The one exception to this rule is on the initial sync (when you call with no skip or delta tokens).
* // In this case you always get a $deltatoken back, even if there are more results. In this case, you should
* // immediately call syncMessages again, passing the $deltatoken value in apiOptions.deltaToken.
* }
* }
*/
syncEvents: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var calendarSpec = parameters.calendarId === undefined ? '' : "/calendars/" + parameters.calendarId;
var requestUrl = base.apiEndpoint() + userSpec + calendarSpec + '/calendarview?startdatetime=' + parameters.startDateTime + '&enddatetime=' + parameters.endDateTime;
var query = parameters.odataParams || {};
if (parameters.skipToken) {
query['$skiptoken'] = parameters.skipToken;
}
if (parameters.deltaToken) {
query['$deltatoken'] = parameters.deltaToken;
}
var headers = {
Prefer: [
'odata.track-changes',
'odata.maxpagesize=' + (parameters.pageSize === undefined ? '50' : parameters.pageSize.toString())
]
};
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
query: query,
headers: headers
}
base.makeApiCall(apiOptions, (error, response) => {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 200) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if(typeof callback === 'function') {
callback(null, response.body);
}
}
});
},
/**
* Used to get a specific event.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.eventId {string} The Id of the event.
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [parameters.odataParams] {object} An object containing key/value pairs representing OData query parameters. See [Use OData query parameters]{@link https://msdn.microsoft.com/office/office365/APi/complex-types-for-mail-contacts-calendar#UseODataqueryparameters} for details.
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the v2.0 endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // The Id property of the event to retrieve. This could be
* // from a previous call to getEvents
* var eventId = 'AAMkADVhYTYwNzk...';
*
* // Set up oData parameters
* var queryParams = {
* '$select': 'Subject,Start,End'
* };
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* outlook.calendar.getEvent({token: token, eventId: eventId, odataParams: queryParams, user: userInfo},
* function(error, result){
* if (error) {
* console.log('getEvent returned an error: ' + error);
* }
* else if (result) {
* console.log(' Subject:', result.Subject);
* console.log(' Start:', result.Start.DateTime.toString());
* console.log(' End:', result.End.DateTime.toString());
* }
* });
*/
getEvent: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Events/' + parameters.eventId;
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user
};
if (parameters.odataParams !== undefined) {
apiOptions['query'] = parameters.odataParams;
}
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 200) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if (typeof callback === 'function') {
callback(null, response.body);
}
}
});
},
/**
* Create a new event
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.event {object} The JSON-serializable event
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [parameters.calendarId] {string} The calendar id. If absent, the API calls the `/User/Events` endpoint.
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the v2.0 endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* var newEvent = {
* "Subject": "Discuss the Calendar REST API",
* "Body": {
* "ContentType": "HTML",
* "Content": "I think it will meet our requirements!"
* },
* "Start": {
* "DateTime": "2016-02-03T18:00:00",
* "TimeZone": "Eastern Standard Time"
* },
* "End": {
* "DateTime": "2016-02-03T19:00:00",
* "TimeZone": "Eastern Standard Time"
* },
* "Attendees": [
* {
* "EmailAddress": {
* "Address": "[email protected]",
* "Name": "Allie Bellew"
* },
* "Type": "Required"
* }
* ]
* };
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* outlook.calendar.createEvent({token: token, event: newEvent, user: userInfo},
* function(error, result){
* if (error) {
* console.log('createEvent returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
createEvent: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var calendarSpec = parameters.calendarId === undefined ? '' : '/Calendars/' + parameters.calendarId;
var requestUrl = base.apiEndpoint() + userSpec + calendarSpec + '/Events';
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: parameters.event,
method: 'POST'
};
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 201) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if (typeof callback === 'function') {
callback(null, response.body);
}
}
});
},
/**
* Update a specific event.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.eventId {string} The Id of the event.
* @param parameters.update {object} The JSON-serializable update payload
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [parameters.odataParams] {object} An object containing key/value pairs representing OData query parameters. See [Use OData query parameters]{@link https://msdn.microsoft.com/office/office365/APi/complex-types-for-mail-contacts-calendar#UseODataqueryparameters} for details.
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the v2.0 endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // The Id property of the event to update. This could be
* // from a previous call to getEvents
* var eventId = 'AAMkADVhYTYwNzk...';
*
* // Update the location
* var update = {
* Location: {
* DisplayName: 'Conference Room 2'
* }
* };
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* outlook.calendar.updateEvent({token: token, eventId: eventId, update: update, user: userInfo},
* function(error, result){
* if (error) {
* console.log('updateEvent returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
updateEvent: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Events/' + parameters.eventId;
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: parameters.update,
method: 'PATCH'
};
if (parameters.odataParams !== undefined) {
apiOptions['query'] = parameters.odataParams;
}
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 200) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if (typeof callback === 'function') {
callback(null, response.body);
}
}
});
},
/**
* Delete a specific event.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.eventId {string} The Id of the event.
* @param [parameters.useMe] {boolean} If true, use the `/Me` segment instead of the `/Users/<email>` segment. This parameter defaults to false and is ignored if the `parameters.user.email` parameter isn't provided (the `/Me` segment is always used in this case).
* @param [parameters.user.email] {string} The SMTP address of the user. If absent, the `/Me` segment is used in the API URL.
* @param [parameters.user.timezone] {string} The timezone of the user.
* @param [callback] {function} A callback function that is called when the function completes. It should have the signature `function (error, result)`.
*
* @example var outlook = require('node-outlook');
*
* // Set the API endpoint to use the v2.0 endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/v2.0');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // The Id property of the event to delete. This could be
* // from a previous call to getEvents
* var eventId = 'AAMkADVhYTYwNzk...';
*
* // Pass the user's email address
* var userInfo = {
* email: '[email protected]'
* };
*
* outlook.calendar.deleteEvent({token: token, eventId: eventId, user: userInfo},
* function(error, result){
* if (error) {
* console.log('deleteEvent returned an error: ' + error);
* }
* else if (result) {
* console.log('SUCCESS');
* }
* });
*/
deleteEvent: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Events/' + parameters.eventId;
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
method: 'DELETE'
};
if (parameters.odataParams !== undefined) {
apiOptions['query'] = parameters.odataParams;
}
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 204) {
if (typeof callback === 'function') {
callback('REST request returned ' + response.statusCode + '; body: ' + JSON.stringify(response.body), response);
}
}
else {
if (typeof callback === 'function') {
callback(null, response.body);
}
}
});
}
};