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
/
mail-api.js
913 lines (856 loc) · 34.9 KB
/
mail-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
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
// 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 mail
*/
module.exports = {
/**
* Used to get messages from a folder.
*
* @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.folderId] {string} The folder id. If absent, the API calls the `/User/Messages` endpoint. Valid values of this parameter are:
*
* - The `Id` property of a `MailFolder` entity
* - `Inbox`
* - `Drafts`
* - `SentItems`
* - `DeletedItems`
*
* @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,ReceivedDateTime,From',
* '$orderby': 'ReceivedDateTime desc',
* '$top': 20
* };
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.getMessages({token: token, folderId: 'Inbox', odataParams: queryParams, user: userInfo},
* function(error, result){
* if (error) {
* console.log('getMessages returned an error: ' + error);
* }
* else if (result) {
* console.log('getMessages returned ' + result.value.length + ' messages.');
* result.value.forEach(function(message) {
* console.log(' Subject:', message.Subject);
* console.log(' Received:', message.ReceivedDateTime.toString());
* console.log(' From:', message.From ? message.From.EmailAddress.Name : 'EMPTY');
* });
* }
* });
*/
getMessages: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var folderSpec = parameters.folderId === undefined ? '' : getFolderSegment() + parameters.folderId;
var requestUrl = base.apiEndpoint() + userSpec + folderSpec + '/Messages';
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);
}
}
});
},
/**
* Used to get a specific message.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The Id of the message.
* @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 message to retrieve. This could be
* // from a previous call to getMessages
* var msgId = 'AAMkADVhYTYwNzk...';
*
* // Set up oData parameters
* var queryParams = {
* '$select': 'Subject,ReceivedDateTime,From'
* };
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.getMessage({token: token, messageId: msgId, odataParams: queryParams, user: userInfo},
* function(error, result){
* if (error) {
* console.log('getMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(' Subject:', result.Subject);
* console.log(' Received:', result.ReceivedDateTime.toString());
* console.log(' From:', result.From ? result.From.EmailAddress.Name : 'EMPTY');
* }
* });
*/
getMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Messages/' + parameters.messageId;
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);
}
}
});
},
/**
* Get all attachments from a message
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The Id of the message.
* @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 message to retrieve. This could be
* // from a previous call to getMessages
* var msgId = 'AAMkADVhYTYwNzk...';
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.getMessageAttachments({token: token, messageId: msgId, user: userInfo},
* function(error, result){
* if (error) {
* console.log('getMessageAttachments returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
getMessageAttachments: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/messages/' + parameters.messageId + '/attachments';
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 message
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.message {object} The JSON-serializable message
* @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.folderId] {string} The folder id. If absent, the API calls the `/User/Messages` 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 newMsg = {
* Subject: 'Did you see last night\'s game?',
* Importance: 'Low',
* Body: {
* ContentType: 'HTML',
* Content: 'They were <b>awesome</b>!'
* },
* ToRecipients: [
* {
* EmailAddress: {
* Address: 'azizh@contoso.com'
* }
* }
* ]
* };
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.createMessage({token: token, message: newMsg, user: userInfo},
* function(error, result){
* if (error) {
* console.log('createMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
createMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var folderSpec = parameters.folderId === undefined ? '' : getFolderSegment() + parameters.folderId;
var requestUrl = base.apiEndpoint() + userSpec + folderSpec + '/Messages';
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: parameters.message,
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 message.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The Id of the message.
* @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 message to update. This could be
* // from a previous call to getMessages
* var msgId = 'AAMkADVhYTYwNzk...';
*
* // Mark the message unread
* var update = {
* IsRead: false,
* };
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.updateMessage({token: token, messageId: msgId, update: update, user: userInfo},
* function(error, result){
* if (error) {
* console.log('updateMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
updateMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Messages/' + parameters.messageId;
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 message.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The Id of the message.
* @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 message to delete. This could be
* // from a previous call to getMessages
* var msgId = 'AAMkADVhYTYwNzk...';
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.deleteMessage({token: token, messageId: msgId, user: userInfo},
* function(error, result){
* if (error) {
* console.log('deleteMessage returned an error: ' + error);
* }
* else if (result) {
* console.log('SUCCESS');
* }
* });
*/
deleteMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Messages/' + parameters.messageId;
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);
}
}
});
},
/**
* Sends a new message
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.message {object} The JSON-serializable message
* @param [parameters.saveToSentItems] {boolean} Set to false to bypass saving a copy to the Sent Items folder. Default is true.
* @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...';
*
* var newMsg = {
* Subject: 'Did you see last night\'s game?',
* Importance: 'Low',
* Body: {
* ContentType: 'HTML',
* Content: 'They were <b>awesome</b>!'
* },
* ToRecipients: [
* {
* EmailAddress: {
* Address: 'azizh@contoso.com'
* }
* }
* ]
* };
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.sendNewMessage({token: token, message: newMsg, user: userInfo},
* function(error, result){
* if (error) {
* console.log('sendNewMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
sendNewMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/sendmail';
var payload = {
Message: parameters.message,
SaveToSentItems: parameters.saveToSentItems !== undefined ? parameters.saveToSentItems : 'true'
};
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: payload,
method: 'POST'
};
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 202) {
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);
}
}
});
},
/**
* Sends a draft message.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The Id of the message.
* @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 message to send. This could be
* // from a previous call to getMessages
* var msgId = 'AAMkADVhYTYwNzk...';
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* outlook.mail.sendDraftMessage({token: token, messageId: msgId, user: userInfo},
* function(error, result){
* if (error) {
* console.log('sendDraftMessage returned an error: ' + error);
* }
* else if (result) {
* console.log('SUCCESS');
* }
* });
*/
sendDraftMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/Messages/' + parameters.messageId + '/send';
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
method: 'POST'
};
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 202) {
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 messages in a folder.
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param [parameters.pageSize] {Number} The maximum number of results to return in each call. Defaults to 50.
* @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.folderId] {string} The folder id. If absent, the API calls the `/User/Messages` endpoint. Valid values of this parameter are:
*
* - The `Id` property of a `MailFolder` entity
* - `Inbox`
* - `Drafts`
* - `SentItems`
* - `DeletedItems`
*
* @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 beta endpoint
* outlook.base.setApiEndpoint('https://outlook.office.com/api/beta');
*
* // This is the oAuth token
* var token = 'eyJ0eXAiOiJKV1Q...';
*
* // Pass the user's email address
* var userInfo = {
* email: 'sarad@contoso.com'
* };
*
* var syncMsgParams = {
* '$select': 'Subject,ReceivedDateTime,From,BodyPreview,IsRead',
* '$orderby': 'ReceivedDateTime desc'
* };
*
* var apiOptions = {
* token: token,
* folderId: 'Inbox',
* odataParams: syncMsgParams,
* user: userinfo,
* pageSize: 20
* };
*
* outlook.mail.syncMessages(apiOptions, function(error, messages) {
* if (error) {
* console.log('syncMessages returned an error:', error);
* } else {
* // Do something with the messages.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 syncMessages 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.
* }
* }
*/
syncMessages: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var folderSpec = parameters.folderId === undefined ? '' : getFolderSegment() + parameters.folderId;
var requestUrl = base.apiEndpoint() + userSpec + folderSpec + '/Messages';
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, 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);
}
}
});
},
/**
* Reply to sender
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The ID of the message to reply to.
* @param parameters.comment {string} The comment to include. Can be an empty string.
* @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...';
*
* var comment = "Sounds great! See you tomorrow.";
* var messageId = "AAMkAGE0Mz8DmAAA=";
*
* outlook.mail.replyToMessage({token: token, comment: comment, messageId: messageId},
* function(error, result){
* if (error) {
* console.log('replyToMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
replyToMessage: function(parameters, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/messages/'+ parameters.messageId + '/reply' ;
var payload = {
Comment: parameters.comment,
};
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: payload,
method: 'POST'
};
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 202) {
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);
}
}
});
},
/**
* Reply to all
*
* @param parameters {object} An object containing all of the relevant parameters. Possible values:
* @param parameters.token {string} The access token.
* @param parameters.messageId {string} The ID of the message to reply to.
* @param parameters.comment {string} The comment to include. Can be an empty string.
* @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...';
*
* var comment = "Sounds great! See you tomorrow.";
* var messageId = "AAMkAGE0Mz8DmAAA=";
*
* outlook.mail.replyToAllMessage({token: token, comment: comment, messageId: messageId},
* function(error, result){
* if (error) {
* console.log('replyToMessage returned an error: ' + error);
* }
* else if (result) {
* console.log(JSON.stringify(result, null, 2));
* }
* });
*/
replyToAllMessage: function(params, callback) {
var userSpec = utilities.getUserSegment(parameters);
var requestUrl = base.apiEndpoint() + userSpec + '/messages/'+ parameters.messageId + '/replyall' ;
var payload = {
Comment: parameters.comment,
};
var apiOptions = {
url: requestUrl,
token: parameters.token,
user: parameters.user,
payload: payload,
method: 'POST'
};
base.makeApiCall(apiOptions, function(error, response) {
if (error) {
if (typeof callback === 'function') {
callback(error, response);
}
}
else if (response.statusCode !== 202) {
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);
}
}
});
}
};
/**
* Helper function to return the correct name for the folders segment
* of the request URL. /Me/Folders became /Me/MailFolders in the beta and
* 2.0 endpoints.
* @private
*/
var getFolderSegment = function() {
if (base.apiEndpoint().toLowerCase().indexOf('/api/v1.0') > 0){
return '/Folders/';
}
return '/MailFolders/'
}