-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsendpulse.js
1330 lines (1225 loc) · 32.6 KB
/
sendpulse.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
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Sendpulse REST API Node.js class
*
* Documentation
* https://login.sendpulse.com/manual/rest-api/
* https://sendpulse.com/api
*
*/
'use strict';
var API_URL = 'api.sendpulse.com';
var API_USER_ID = '';
var API_SECRET = '';
var TOKEN_STORAGE;
var TOKEN = '';
var ERRORS = {
INVALID_TOKEN: 'Invalid token',
INVALID_RESPONSE: 'Bad response from server',
INVALID_CREDENTIALS: 'Invalid credentials',
};
/**
* SHA256
*
* @param data
* @return string
*/
async function sha256(data) {
const encoder = new TextEncoder();
const dataBuffer = encoder.encode(data);
return crypto.subtle.digest('SHA-256', dataBuffer).then((hashBuffer)=>{
const hashArray = Array.from(new Uint8Array(hashBuffer));
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
return hashHex;
});
}
/**
* Base64
*
* @param data
* @return string
*/
function base64(data) {
var b = new Buffer(data);
return b.toString('base64');
}
/**
* Sendpulse API initialization
*
* @param user_id
* @param secret
* @param storage
* @param callback
*/
function init(user_id, secret, storage, callback) {
API_USER_ID = user_id;
API_SECRET = secret;
TOKEN_STORAGE = storage;
if (!callback) {
callback = function () {
}
}
var hashName = sha256(API_USER_ID + '::' + API_SECRET);
TOKEN = TOKEN_STORAGE.getToken(hashName)
if (!TOKEN.length) {
getToken(callback);
return;
}
callback(TOKEN)
}
/**
* Form and send request to API service
*
* @param path
* @param method
* @param data
* @param useToken
* @param callback
* Define the function that will be called
* when a response is received.
*/
function sendRequest(path, method = 'POST', data, useToken = false, callback) {
var headers = {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(JSON.stringify(data)).toString(),
};
if (useToken && TOKEN.length) {
headers['Authorization'] = 'Bearer ' + TOKEN;
}
var options = {
method: method,
headers: headers,
body: JSON.stringify(data),
};
fetch(`https://${API_URL}/${path}`, options)
.then(response => response.text().then(str => {
let answer;
try {
answer = JSON.parse(str);
} catch (ex) {
answer = returnError(ERRORS.INVALID_RESPONSE);
}
if (response.status === 401) {
if (answer.error === 'invalid_client') {
callback(returnError(ERRORS.INVALID_CREDENTIALS));
return;
}
getToken(function (result) {
if (result && result.is_error === 1) {
callback(result);
return;
}
// Рекурсивно вызываем функцию с useToken = true
sendRequest(path, method, data, true, callback);
});
return;
}
callback(answer);
}))
.catch(error => {
const answer = error.message ? returnError(error.message, error.errno) : returnError(error.code, error.errno);
callback(answer);
});
}
/**
* Get token and store it
*
* @param callback
*/
function getToken(callback) {
if (!callback) {
callback = function () {
}
}
var data = {
grant_type: 'client_credentials',
client_id: API_USER_ID,
client_secret: API_SECRET
};
sendRequest('oauth/access_token', 'POST', data, false, saveToken);
function saveToken(data) {
if (data && data.is_error) {
callback(data);
return;
}
TOKEN = data.access_token ?? "";
var hashName = sha256(API_USER_ID + '::' + API_SECRET);
TOKEN_STORAGE.setToken(hashName, TOKEN);
callback(TOKEN)
}
}
/**
* Form error object
*
* @return object
*/
function returnError(message, code) {
var data = {is_error: 1};
if (message !== undefined && message.length) {
data['message'] = message
}
if (code !== undefined && code) {
data['error_code'] = code;
}
return data;
}
/**
* Serializing of the array
*
* @param mixed_value
* @return string
*/
function serialize(mixed_value) {
var val, key, okey,
ktype = '',
vals = '',
count = 0,
_utf8Size = function (str) {
var size = 0,
i = 0,
l = str.length,
code = '';
for (i = 0; i < l; i++) {
code = str.charCodeAt(i);
if (code < 0x0080) { //[0x0000, 0x007F]
size += 1;
} else if (code < 0x0800) { //[0x0080, 0x07FF]
size += 2;
} else if (code < 0xD800) { //[0x0800, 0xD7FF]
size += 3;
} else if (code < 0xDC00) { //[0xD800, 0xDBFF]
var lo=str.charCodeAt(++i);
if (i < l && lo >= 0xDC00 && lo <= 0xDFFF) { //followed by [0xDC00, 0xDFFF]
size += 4;
} else {
// UCS-2 String malformed
size = 0
}
} else if (code < 0xE000) { //[0xDC00, 0xDFFF]
// UCS-2 String malformed
size = 0
} else { //[0xE000, 0xFFFF]
size += 3;
}
}
return size;
},
_getType = function (inp) {
var match, key, cons, types, type = typeof inp;
if (type === 'object' && !inp) {
return 'null';
}
if (type === 'object') {
if (!inp.constructor) {
return 'object';
}
cons = inp.constructor.toString();
match = cons.match(/(\w+)\(/);
if (match) {
cons = match[1].toLowerCase();
}
types = ['boolean', 'number', 'string', 'array'];
for (key in types) {
if (cons == types[key]) {
type = types[key];
break;
}
}
}
return type;
},
type = _getType(mixed_value);
switch (type) {
case 'function':
val = '';
break;
case 'boolean':
val = 'b:' + (mixed_value ? '1' : '0');
break;
case 'number':
val = (Math.round(mixed_value) == mixed_value ? 'i' : 'd') + ':' + mixed_value;
break;
case 'string':
val = 's:' + _utf8Size(mixed_value) + ':"' + mixed_value + '"';
break;
case 'array':
case 'object':
val = 'a';
for (key in mixed_value) {
if (mixed_value.hasOwnProperty(key)) {
ktype = _getType(mixed_value[key]);
if (ktype === 'function') {
continue;
}
okey = (key.match(/^[0-9]+$/) ? parseInt(key, 10) : key);
vals += serialize(okey) + serialize(mixed_value[key]);
count++;
}
}
val += ':' + count + ':{' + vals + '}';
break;
case 'undefined':
default:
val = 'N';
break;
}
if (type !== 'object' && type !== 'array') {
val += ';';
}
return val;
}
/**
* API interface implementation
*/
/**
* Get list of address books
*
* @param callback
* @param limit
* @param offset
*/
function listAddressBooks(callback, limit, offset) {
var data = {};
if (limit === undefined) {
limit = null;
} else {
data['limit'] = limit;
}
if (offset === undefined) {
offset = null;
} else {
data['offset'] = offset;
}
sendRequest('addressbooks', 'GET', data, true, callback);
}
/**
* Create address book
*
* @param callback
* @param bookName
*/
function createAddressBook(callback, bookName) {
if ((bookName === undefined) || (!bookName.length)) {
return callback(returnError('Empty book name'));
}
var data = {bookName: bookName};
sendRequest('addressbooks', 'POST', data, true, callback);
}
/**
* Edit address book name
*
* @param callback
* @param id
* @param bookName
*/
function editAddressBook(callback, id, bookName) {
if ((id === undefined) || (bookName === undefined) || (!bookName.length)) {
return callback(returnError('Empty book name or book id'));
}
var data = {name: bookName};
sendRequest('addressbooks/' + id, 'PUT', data, true, callback);
}
/**
* Remove address book
*
* @param callback
* @param id
*/
function removeAddressBook(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('addressbooks/' + id, 'DELETE', {}, true, callback);
}
/**
* Get list of email templates
*
* @param callback
*/
function listEmailTemplates(callback) {
sendRequest('templates', 'GET', {}, true, callback);
}
/**
* Get email template by id
*
* @param callback
* @param id
*/
function getEmailTemplate(callback, id) {
if (id === undefined) {
return callback(returnError('Empty email template id'));
}
sendRequest('template/' + id, 'GET', {}, true, callback);
}
/**
* Get information about book
*
* @param callback
* @param id
*/
function getBookInfo(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('addressbooks/' + id, 'GET', {}, true, callback);
}
/**
* List email addresses from book
*
* @param callback
* @param id
*/
function getEmailsFromBook(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('addressbooks/' + id + '/emails', 'GET', {}, true, callback);
}
/**
* Add new emails to address book
*
* @param callback
* @param id
* @param emails
*/
function addEmails(callback, id, emails) {
if ((id === undefined) || (emails === undefined) || (!emails.length)) {
return callback(returnError('Empty email or book id'));
}
var data = {emails: serialize(emails)};
sendRequest('addressbooks/' + id + '/emails', 'POST', data, true, callback);
}
/**
* Remove email addresses from book
*
* @param callback
* @param id
* @param emails
*/
function removeEmails(callback, id, emails) {
if ((id === undefined) || (emails === undefined) || (!emails.length)) {
return callback(returnError('Empty email or book id'));
}
var data = {emails: serialize(emails)};
sendRequest('addressbooks/' + id + '/emails', 'DELETE', data, true, callback);
}
/**
* Get information about email address from book
*
* @param callback
* @param id
* @param email
*/
function getEmailInfo(callback, id, email) {
if ((id === undefined) || (email === undefined) || (!email.length)) {
return callback(returnError('Empty email or book id'));
}
sendRequest('addressbooks/' + id + '/emails/' + email, 'GET', {}, true, callback);
}
/**
* Update Variables for an email address in an address book
*
* @param callback
* @param id
* @param email
* @param variables
*/
function updateEmailVariables(callback, id, email, variables) {
if ((id === undefined) || (email === undefined) || (variables === undefined) || (!variables.length)) {
return callback(returnError('Empty email, variables or book id'));
}
var data = {
email: email,
variables: variables
};
sendRequest('addressbooks/' + id + '/emails/variable', 'POST', data, true, callback);
}
/**
* Get cost of campaign based on address book
*
* @param callback
* @param id
*/
function campaignCost(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('addressbooks/' + id + '/cost', 'GET', {}, true, callback);
}
/**
* Get list of campaigns
*
* @param callback
* @param limit
* @param offset
*/
function listCampaigns(callback, limit, offset) {
var data = {};
if (limit === undefined) {
limit = null;
} else {
data['limit'] = limit;
}
if (offset === undefined) {
offset = null;
} else {
data['offset'] = offset;
}
sendRequest('campaigns', 'GET', data, true, callback);
}
/**
* Get information about campaign
*
* @param callback
* @param id
*/
function getCampaignInfo(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('campaigns/' + id, 'GET', {}, true, callback);
}
/**
* Get campaign statistic by countries
*
* @param callback
* @param id
*/
function campaignStatByCountries(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('campaigns/' + id + '/countries', 'GET', {}, true, callback);
}
/**
* Get campaign statistic by referrals
*
* @param callback
* @param id
*/
function campaignStatByReferrals(callback, id) {
if (id === undefined) {
return callback(returnError('Empty book id'));
}
sendRequest('campaigns/' + id + '/referrals', 'GET', {}, true, callback);
}
/**
* Create new campaign
*
* @param callback
* @param senderName
* @param senderEmail
* @param subject
* @param body
* @param bookId
* @param name
* @param attachments
*/
function createCampaign(callback, senderName, senderEmail, subject, body, bookId, name, attachments) {
if ((senderName === undefined) || (!senderName.length) || (senderEmail === undefined) || (!senderEmail.length) || (subject === undefined) || (!subject.length) || (body === undefined) || (!body.length) || (bookId === undefined)) {
return callback(returnError('Not all data.'));
}
if (name === undefined) {
name = '';
}
if (attachments === undefined) {
attachments = '';
}
if (attachments.length) {
attachments = serialize(attachments);
}
var data = {
sender_name: senderName,
sender_email: senderEmail,
//subject: encodeURIComponent(subject),
//subject: urlencode(subject),
subject: subject,
body: base64(body),
list_id: bookId,
name: name,
attachments: attachments
};
sendRequest('campaigns', 'POST', data, true, callback);
}
/**
* Cancel campaign
*
* @param callback
* @param id
*/
function cancelCampaign(callback, id) {
if (id === undefined) {
return callback(returnError('Empty campaign id'));
}
sendRequest('campaigns/' + id, 'DELETE', {}, true, callback);
}
/**
* List all senders
*
* @param callback
*/
function listSenders(callback) {
sendRequest('senders', 'GET', {}, true, callback);
}
/**
* Add new sender
*
* @param callback
* @param senderName
* @param senderEmail
*/
function addSender(callback, senderName, senderEmail) {
if ((senderEmail === undefined) || (!senderEmail.length) || (senderName === undefined) || (!senderName.length)) {
return callback(returnError('Empty sender name or email'));
}
var data = {
email: senderEmail,
name: senderName
};
sendRequest('senders', 'POST', data, true, callback);
}
/**
* Remove sender
*
* @param callback
* @param senderEmail
*/
function removeSender(callback, senderEmail) {
if ((senderEmail === undefined) || (!senderEmail.length)) {
return callback(returnError('Empty email'));
}
var data = {
email: senderEmail
};
sendRequest('senders', 'DELETE', data, true, callback);
}
/**
* Activate sender using code
*
* @param callback
* @param senderEmail
* @param code
*/
function activateSender(callback, senderEmail, code) {
if ((senderEmail === undefined) || (!senderEmail.length) || (code === undefined) || (!code.length)) {
return callback(returnError('Empty email or activation code'));
}
var data = {
code: code
};
sendRequest('senders/' + senderEmail + '/code', 'POST', data, true, callback);
}
/**
* Request mail with activation code
*
* @param callback
* @param senderEmail
*/
function getSenderActivationMail(callback, senderEmail) {
if ((senderEmail === undefined) || (!senderEmail.length)) {
return callback(returnError('Empty email'));
}
sendRequest('senders/' + senderEmail + '/code', 'GET', {}, true, callback);
}
/**
* Get global information about email
*
* @param callback
* @param email
*/
function getEmailGlobalInfo(callback, email) {
if ((email === undefined) || (!email.length)) {
return callback(returnError('Empty email'));
}
sendRequest('emails/' + email, 'GET', {}, true, callback);
}
/**
* Remove email from all books
*
* @param callback
* @param email
*/
function removeEmailFromAllBooks(callback, email) {
if ((email === undefined) || (!email.length)) {
return callback(returnError('Empty email'));
}
sendRequest('emails/' + email, 'DELETE', {}, true, callback);
}
/**
* Get email statistic by all campaigns
*
* @param callback
* @param email
*/
function emailStatByCampaigns(callback, email) {
if ((email === undefined) || (!email.length)) {
return callback(returnError('Empty email'));
}
sendRequest('emails/' + email + '/campaigns', 'GET', {}, true, callback);
}
/**
* Get all emails from blacklist
*
* @param callback
*/
function getBlackList(callback) {
sendRequest('blacklist', 'GET', {}, true, callback);
}
/**
* Add email to blacklist
*
* @param callback
* @param emails
* @param comment
*/
function addToBlackList(callback, emails, comment) {
if ((emails === undefined) || (!emails.length)) {
return callback(returnError('Empty email'));
}
if (comment === undefined) {
comment = '';
}
var data = {
emails: base64(emails),
comment: comment
};
sendRequest('blacklist', 'POST', data, true, callback);
}
/**
* Remove emails from blacklist
*
* @param callback
* @param emails
*/
function removeFromBlackList(callback, emails) {
if ((emails === undefined) || (!emails.length)) {
return callback(returnError('Empty emails'));
}
var data = {
emails: base64(emails),
};
sendRequest('blacklist', 'DELETE', data, true, callback);
}
/**
* Get balance
*
* @param callback
* @param currency
*/
function getBalance(callback, currency) {
if (currency === undefined) {
var url = 'balance';
} else {
var url = 'balance/' + currency.toUpperCase();
}
sendRequest(url, 'GET', {}, true, callback);
}
/**
* SMTP: get list of emails
*
* @param callback
* @param limit
* @param offset
* @param fromDate
* @param toDate
* @param sender
* @param recipient
*/
function smtpListEmails(callback, limit, offset, fromDate, toDate, sender, recipient) {
if (limit === undefined) {
limit = 0;
}
if (offset === undefined) {
offset = 0;
}
if (fromDate === undefined) {
fromDate = '';
}
if (toDate === undefined) {
toDate = '';
}
if (sender === undefined) {
sender = '';
}
if (recipient === undefined) {
recipient = '';
}
var data = {
limit: limit,
offset: offset,
from: fromDate,
to: toDate,
sender: sender,
recipient: recipient
};
sendRequest('smtp/emails', 'GET', data, true, callback);
}
/**
* Get information about email by id
*
* @param callback
* @param id
*/
function smtpGetEmailInfoById(callback, id) {
if ((id === undefined) || (!id.length)) {
return callback(returnError('Empty id'));
}
sendRequest('smtp/emails/' + id, 'GET', {}, true, callback);
}
/**
* SMTP: add emails to unsubscribe list
*
* @param callback
* @param emails
*/
function smtpUnsubscribeEmails(callback, emails) {
if (emails === undefined) {
return callback(returnError('Empty emails'));
}
var data = {
emails: serialize(emails)
};
sendRequest('smtp/unsubscribe', 'POST', data, true, callback);
}
/**
* SMTP: remove emails from unsubscribe list
*
* @param callback
* @param emails
*/
function smtpRemoveFromUnsubscribe(callback, emails) {
if (emails === undefined) {
return callback(returnError('Empty emails'));
}
var data = {
emails: serialize(emails)
};
sendRequest('smtp/unsubscribe', 'DELETE', data, true, callback);
}
/**
* Get list of IP
*
* @param callback
*/
function smtpListIP(callback) {
sendRequest('smtp/ips', 'GET', {}, true, callback);
}
/**
* SMTP: get list of allowed domains
*
* @param callback
*/
function smtpListAllowedDomains(callback) {
sendRequest('smtp/domains', 'GET', {}, true, callback);
}
/**
* SMTP: add new domain
*
* @param callback
* @param email
*/
function smtpAddDomain(callback, email) {
if ((email === undefined) || (!email.length)) {
return callback(returnError('Empty email'));
}
var data = {
email: email
};
sendRequest('smtp/domains', 'POST', data, true, callback);
}
/**
* SMTP: verify domain
*
* @param callback
* @param email
*/
function smtpVerifyDomain(callback, email) {
if ((email === undefined) || (!email.length)) {
return callback(returnError('Empty email'));
}
sendRequest('smtp/domains/' + email, 'GET', {}, true, callback);
}
/**
* SMTP: send mail
*
* @param callback
* @param email
*/
function smtpSendMail(callback, email) {
if (email === undefined) {
return callback(returnError('Empty email data'));
}
if (email.html)
email['html'] = base64(email['html']);
var data = {
email: serialize(email)
};
sendRequest('smtp/emails', 'POST', data, true, callback);
}
// ********************************* SMS *********************************
/**
* Add new phones to address book
*
* @param callback
* @param addressbook_id
* @param phones
*/
function smsAddPhones(callback, addressbook_id, phones) {
if ((addressbook_id === undefined) || (phones === undefined) || (!phones.length)) {
return callback(returnError('Empty phones or book id'));
}
var data = {
addressBookId: addressbook_id,
phones: JSON.stringify(phones)
};
sendRequest('sms/numbers', 'POST', data, true, callback);
}
/**
* Add new phones to address book with variables
*
* @param callback
* @param addressbook_id
* @param phones
*/
function smsAddPhonesWithVariables(callback, addressbook_id, phones) {
if ((addressbook_id === undefined) || (phones === undefined) || (!Object.keys(phones).length)) {
return callback(returnError('Empty phones or book id'));
}
var data = {
addressBookId: addressbook_id,
phones: JSON.stringify(phones)
};
sendRequest('sms/numbers/variables', 'POST', data, true, callback);
}
/**
* Remove phones from address book
*
* @param callback
* @param addressbook_id
* @param phones
*/
function smsRemovePhones(callback, addressbook_id, phones) {
if ((addressbook_id === undefined) || (phones === undefined) || (!phones.length)) {
return callback(returnError('Empty phones or book id'));
}
var data = {
addressBookId: addressbook_id,
phones: JSON.stringify(phones)
};
sendRequest('sms/numbers', 'DELETE', data, true, callback);
}
/**
* Get all phones from blacklist
*
* @param callback
*/
function smsGetBlackList(callback) {
sendRequest('sms/black_list', 'GET', {}, true, callback);
}
/**
* Get information about phone from the address book
*