-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat-message.js
914 lines (683 loc) · 20.4 KB
/
format-message.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
'use strict';
const isUrl = require('./is-url');
const breakText = require('./breaktext');
function isNumber(number) {
return !isNaN(parseFloat(number)) && isFinite(number);
}
class FacebookTemplate {
constructor() {
this.template = {};
}
setNotificationType(type) {
if (type !== 'REGULAR' && type !== 'SILENT_PUSH' && type !== 'NO_PUSH')
throw new Error('Notification type must be one of REGULAR, SILENT_PUSH, or NO_PUSH');
this.template.notification_type = type;
return this;
}
addQuickReply(text, payload, imageUrl) {
if (!text || !payload)
throw new Error('Both text and payload are required for a quick reply');
if (payload.length > 1000)
throw new Error('Payload can not be more than 1000 characters long');
if (imageUrl && !isUrl(imageUrl))
throw new Error('Image has a bad url');
if (!this.template.quick_replies)
this.template.quick_replies = [];
if (this.template.quick_replies.length === 11)
throw new Error('There can not be more than 11 quick replies');
if (text.length > 20)
text = breakText(text, 20)[0];
let quickReply = {
content_type: 'text',
title: text,
payload: payload
};
if (imageUrl) quickReply.image_url = imageUrl;
this.template.quick_replies.push(quickReply);
return this;
}
addQuickReplyLocation() {
if (!this.template.quick_replies)
this.template.quick_replies = [];
if (this.template.quick_replies.length === 11)
throw new Error('There can not be more than 11 quick replies');
let quickReply = {
content_type: 'location'
};
this.template.quick_replies.push(quickReply);
return this;
}
get() {
return this.template;
}
}
class Text extends FacebookTemplate {
constructor(text) {
super();
if (!text)
throw new Error('Text is required for text template');
this.template = {
text: text
};
}
}
class Attachment extends FacebookTemplate {
constructor(url, type) {
super();
if (!url || !isUrl(url))
throw new Error('Attachment template requires a valid URL as a first paramether');
this.template = {
attachment: {
type: type || 'file',
payload: {
url: url
}
}
};
}
}
class Image extends FacebookTemplate {
constructor(url) {
super();
if (!url || !isUrl(url))
throw new Error('Image template requires a valid URL as a first paramether');
this.template = {
attachment: {
type: 'image',
payload: {
url: url
}
}
};
}
}
class Audio extends FacebookTemplate {
constructor(url) {
super();
if (!url || !isUrl(url))
throw new Error('Audio template requires a valid URL as a first paramether');
this.template = {
attachment: {
type: 'audio',
payload: {
url: url
}
}
};
}
}
class Video extends FacebookTemplate {
constructor(url) {
super();
if (!url || !isUrl(url))
throw new Error('Video template requires a valid URL as a first paramether');
this.template = {
attachment: {
type: 'video',
payload: {
url: url
}
}
};
}
}
class File extends FacebookTemplate {
constructor(url) {
super();
if (!url || !isUrl(url))
throw new Error('File attachment template requires a valid URL as a first paramether');
this.template = {
attachment: {
type: 'file',
payload: {
url: url
}
}
};
}
}
class Generic extends FacebookTemplate {
constructor() {
super();
this.bubbles = [];
this.template = {
attachment: {
type: 'template',
payload: {
template_type: 'generic',
elements: []
}
}
};
}
getLastBubble() {
if (!this.bubbles || !this.bubbles.length)
throw new Error('Add at least one bubble first!');
return this.bubbles[this.bubbles.length - 1];
}
addBubble(title, subtitle) {
if (this.bubbles.length === 10)
throw new Error('10 bubbles are maximum for Generic template');
if (!title)
throw new Error('Bubble title cannot be empty');
if (title.length > 80)
throw new Error('Bubble title cannot be longer than 80 characters');
if (subtitle && subtitle.length > 80)
throw new Error('Bubble subtitle cannot be longer than 80 characters');
let bubble = {
title: title
};
if (subtitle)
bubble['subtitle'] = subtitle;
this.bubbles.push(bubble);
return this;
}
addUrl(url) {
if (!url)
throw new Error('URL is required for addUrl method');
if (!isUrl(url))
throw new Error('URL needs to be valid for addUrl method');
this.getLastBubble()['item_url'] = url;
return this;
}
addImage(url) {
if (!url)
throw new Error('Image URL is required for addImage method');
if (!isUrl(url))
throw new Error('Image URL needs to be valid for addImage method');
this.getLastBubble()['image_url'] = url;
return this;
}
addButton(title, value, type) {
const bubble = this.getLastBubble();
bubble.buttons = bubble.buttons || [];
if (bubble.buttons.length === 3)
throw new Error('3 buttons are already added and that\'s the maximum');
if (!title)
throw new Error('Button title cannot be empty');
if (!value)
throw new Error('Button value is required');
const button = {
title: title
};
if (isUrl(value)) {
button.type = 'web_url';
button.url = value;
} else {
button.type = 'postback';
button.payload = value;
}
if (type) {
button.type = type;
}
bubble.buttons.push(button);
return this;
}
addShareButton() {
const bubble = this.getLastBubble();
bubble.buttons = bubble.buttons || [];
if (bubble.buttons.length === 3)
throw new Error('3 buttons are already added and that\'s the maximum');
const button = {
type: 'element_share'
};
bubble.buttons.push(button);
return this;
}
get() {
if (!this.bubbles || !this.bubbles.length)
throw new Error('Add at least one bubble first!');
this.template.attachment.payload.elements = this.bubbles;
return this.template;
}
}
class Button extends FacebookTemplate {
constructor(text) {
super();
if (!text)
throw new Error('Button template text cannot be empty');
if (text.length > 640)
throw new Error('Button template text cannot be longer than 640 characters');
this.template = {
attachment: {
type: 'template',
payload: {
template_type: 'button',
text: text,
buttons: []
}
}
};
}
addButton(title, value) {
if (this.template.attachment.payload.buttons.length === 3)
throw new Error('3 buttons are already added and that\'s the maximum');
if (!title)
throw new Error('Button title cannot be empty');
if (!value)
throw new Error('Button value is required');
const button = {
title: title
};
if (isUrl(value)) {
button.type = 'web_url';
button.url = value;
} else {
button.type = 'postback';
button.payload = value;
}
this.template.attachment.payload.buttons.push(button);
return this;
}
get() {
if (this.template.attachment.payload.buttons.length === 0)
throw new Error('Add at least one button first!');
return this.template;
}
}
class Receipt extends FacebookTemplate {
constructor(name, orderNumber, currency, paymentMethod) {
super();
if (!name)
throw new Error('Recipient\'s name cannot be empty');
if (!orderNumber)
throw new Error('Order number cannot be empty');
if (!currency)
throw new Error('Currency cannot be empty');
if (!paymentMethod)
throw new Error('Payment method cannot be empty');
this.template = {
attachment: {
type: 'template',
payload: {
template_type: 'receipt',
recipient_name: name,
order_number: orderNumber,
currency: currency,
payment_method: paymentMethod,
elements: [],
summary: {}
}
}
};
}
addTimestamp(timestamp) {
if (!timestamp)
throw new Error('Timestamp is required for addTimestamp method');
if (!(timestamp instanceof Date))
throw new Error('Timestamp needs to be a valid Date object');
this.template.attachment.payload.timestamp = timestamp.getTime();
return this;
}
addOrderUrl(url) {
if (!url)
throw new Error('Url is required for addOrderUrl method');
if (!isUrl(url))
throw new Error('Url needs to be valid for addOrderUrl method');
this.template.attachment.payload.order_url = url;
return this;
}
getLastItem() {
if (!this.template.attachment.payload.elements || !this.template.attachment.payload.elements.length)
throw new Error('Add at least one order item first!');
return this.template.attachment.payload.elements[this.template.attachment.payload.elements.length - 1];
}
addItem(title) {
if (!title)
throw new Error('Item title is required');
this.template.attachment.payload.elements.push({
title: title
});
return this;
}
addSubtitle(subtitle) {
if (!subtitle)
throw new Error('Subtitle is required for addSubtitle method');
let item = this.getLastItem();
item.subtitle = subtitle;
return this;
}
addQuantity(quantity) {
if (!quantity)
throw new Error('Quantity is required for addQuantity method');
if (!isNumber(quantity))
throw new Error('Quantity needs to be a number');
let item = this.getLastItem();
item.quantity = quantity;
return this;
}
addPrice(price) {
if (!price)
throw new Error('Price is required for addPrice method');
if (!isNumber(price))
throw new Error('Price needs to be a number');
let item = this.getLastItem();
item.price = price;
return this;
}
addCurrency(currency) {
if (!currency)
throw new Error('Currency is required for addCurrency method');
let item = this.getLastItem();
item.currency = currency;
return this;
}
addImage(image) {
if (!image)
throw new Error('Abotolute url is required for addImage method');
if (!isUrl(image))
throw new Error('Valid absolute url is required for addImage method');
let item = this.getLastItem();
item.image_url = image;
return this;
}
addShippingAddress(street1, street2, city, zip, state, country) {
if (!street1)
throw new Error('Street is required for addShippingAddress');
if (!city)
throw new Error('City is required for addShippingAddress method');
if (!zip)
throw new Error('Zip code is required for addShippingAddress method');
if (!state)
throw new Error('State is required for addShippingAddress method');
if (!country)
throw new Error('Country is required for addShippingAddress method');
this.template.attachment.payload.address = {
street_1: street1,
street_2: street2 || '',
city: city,
postal_code: zip,
state: state,
country: country
};
return this;
}
addAdjustment(name, amount) {
if (!amount || !isNumber(amount))
throw new Error('Adjustment amount must be a number');
let adjustment = {};
if (name)
adjustment.name = name;
if (amount)
adjustment.amount = amount;
if (name || amount) {
this.template.attachment.payload.adjustments = this.template.attachment.payload.adjustments || [];
this.template.attachment.payload.adjustments.push(adjustment);
}
return this;
}
addSubtotal(subtotal) {
if (!subtotal)
throw new Error('Subtotal is required for addSubtotal method');
if (!isNumber(subtotal))
throw new Error('Subtotal must be a number');
this.template.attachment.payload.summary.subtotal = subtotal;
return this;
}
addShippingCost(shippingCost) {
if (!shippingCost)
throw new Error('shippingCost is required for addShippingCost method');
if (!isNumber(shippingCost))
throw new Error('Shipping cost must be a number');
this.template.attachment.payload.summary.shipping_cost = shippingCost;
return this;
}
addTax(tax) {
if (!tax)
throw new Error('Total tax amount is required for addSubtotal method');
if (!isNumber(tax))
throw new Error('Total tax amount must be a number');
this.template.attachment.payload.summary.total_tax = tax;
return this;
}
addTotal(total) {
if (!total)
throw new Error('Total amount is required for addSubtotal method');
if (!isNumber(total))
throw new Error('Total amount must be a number');
this.template.attachment.payload.summary.total_cost = total;
return this;
}
get() {
if (!this.template.attachment.payload.elements.length)
throw new Error('At least one element/item is required');
if (!this.template.attachment.payload.summary.total_cost)
throw new Error('Total amount is required');
return this.template;
}
}
class List extends FacebookTemplate {
constructor(topElementStyle) {
super();
this.bubbles = [];
this.template = {
attachment: {
type: 'template',
payload: {
template_type: 'list',
top_element_style: topElementStyle ? topElementStyle : 'large',
elements: [],
buttons: []
}
}
};
}
getFirstBubble() {
if (!this.bubbles || !this.bubbles.length)
throw new Error('Add at least one bubble first!');
return this.bubbles[0];
}
getLastBubble() {
if (!this.bubbles || !this.bubbles.length)
throw new Error('Add at least one bubble first!');
return this.bubbles[this.bubbles.length - 1];
}
addBubble(title, subtitle) {
if (this.bubbles.length === 4)
throw new Error('4 bubbles are maximum for List template');
if (!title)
throw new Error('Bubble title cannot be empty');
if (title.length > 80)
throw new Error('Bubble title cannot be longer than 80 characters');
if (subtitle && subtitle.length > 80)
throw new Error('Bubble subtitle cannot be longer than 80 characters');
let bubble = {
title: title
};
if (subtitle)
bubble['subtitle'] = subtitle;
this.bubbles.push(bubble);
return this;
}
addImage(url) {
if (!url)
throw new Error('Image URL is required for addImage method');
if (!isUrl(url))
throw new Error('Image URL needs to be valid for addImage method');
this.getLastBubble()['image_url'] = url;
return this;
}
addDefaultAction(url) {
const bubble = this.getLastBubble();
if (bubble.default_action)
throw new Error('Bubble already has default action');
if (!url)
throw new Error('Bubble default action URL is required');
if (!isUrl(url))
throw new Error('Bubble default action URL must be valid URL');
bubble.default_action = {
type: 'web_url',
url: url
};
return this;
}
addButton(title, value, type) {
const bubble = this.getLastBubble();
bubble.buttons = bubble.buttons || [];
if (bubble.buttons.length === 1)
throw new Error('One button is already added and that\'s the maximum');
if (!title)
throw new Error('Button title cannot be empty');
if (!value)
throw new Error('Button value is required');
const button = {
title: title
};
if (isUrl(value)) {
button.type = 'web_url';
button.url = value;
} else {
button.type = 'postback';
button.payload = value;
}
if (type) {
button.type = type;
}
bubble.buttons.push(button);
return this;
}
addShareButton() {
const bubble = this.getLastBubble();
bubble.buttons = bubble.buttons || [];
if (bubble.buttons.length === 1)
throw new Error('One button is already added and that\'s the maximum');
const button = {
type: 'element_share'
};
bubble.buttons.push(button);
return this;
}
addListButton(title, value, type) {
if (this.template.attachment.payload.buttons.length === 1)
throw new Error('One List button is already added and that\'s the maximum');
if (!title)
throw new Error('List button title cannot be empty');
if (!value)
throw new Error('List button value is required');
const button = {
title: title
};
if (isUrl(value)) {
button.type = 'web_url';
button.url = value;
} else {
button.type = 'postback';
button.payload = value;
}
if (type) {
button.type = type;
}
this.template.attachment.payload.buttons.push(button);
return this;
}
get() {
if (!this.bubbles || !this.bubbles.length || this.bubbles.length < 2)
throw new Error('2 bubbles are minimum for List template!');
if (this.template.attachment.payload.top_element_style === 'large' && !this.getFirstBubble()['image_url'])
throw new Error('You need to add image to the first bubble because you use `large` top element style');
this.template.attachment.payload.elements = this.bubbles;
return this.template;
}
}
class ChatAction {
constructor(action) {
const AVAILABLE_TYPES = ['typing_on', 'typing_off', 'mark_seen'];
if (AVAILABLE_TYPES.indexOf(action) < 0)
throw new Error('Valid action is required for Facebook ChatAction template. Available actions are: typing_on, typing_off and mark_seen.');
this.template = {
sender_action: action
};
}
get() {
return this.template;
}
}
class Pause {
constructor(miliseconds) {
this.template = {
claudiaPause: miliseconds || 500
};
}
get() {
return this.template;
}
}
/* Deprecated methods */
class text extends Text {
constructor(text) {
super(text);
console.log('Deprecation notice: please use .Text instead of .text method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class attachment extends Attachment {
constructor(url, type) {
super(url, type);
console.log('Deprecation notice: please use .Attachment instead of .attachment method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class image extends Image {
constructor(url) {
super(url);
console.log('Deprecation notice: please use .Image instead of .image method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class audio extends Audio {
constructor(url) {
super(url);
console.log('Deprecation notice: please use .Audio instead of .audio method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class video extends Video {
constructor(url) {
super(url);
console.log('Deprecation notice: please use .Video instead of .video method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class file extends File {
constructor(url) {
super(url);
console.log('Deprecation notice: please use .File instead of .file method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class generic extends Generic {
constructor() {
super();
console.log('Deprecation notice: please use .Generic instead of .generic method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class button extends Button {
constructor(text) {
super(text);
console.log('Deprecation notice: please use .Button instead of .button method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
class receipt extends Receipt {
constructor(name, orderNumber, currency, paymentMethod) {
super(name, orderNumber, currency, paymentMethod);
console.log('Deprecation notice: please use .Receipt instead of .receipt method, lower case method names will be removed in next major version of Clauida bot builder');
}
}
module.exports = {
Text: Text,
Attachment: Attachment,
Image: Image,
Audio: Audio,
Video: Video,
File: File,
Generic: Generic,
Button: Button,
Receipt: Receipt,
List: List,
ChatAction: ChatAction,
Pause: Pause,
// Deprecated methods
text: text,
attachment: attachment,
image: image,
audio: audio,
video: video,
file: file,
generic: generic,
button: button,
receipt: receipt
};