-
Notifications
You must be signed in to change notification settings - Fork 1
/
MessageBuilder.js
374 lines (347 loc) · 11.2 KB
/
MessageBuilder.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
/**
* @static
*/
class MessageBuilder {
// region getter constants
/**
* @return {StaMP.Events.UNKNOWN_MESSAGE}
* @static
*/
static get UNKNOWN_MESSAGE_EVENT() {
return 'stamp.messages.unknown';
}
// endregion
/**
* Builds a `fromSender` property `string`, that's meant to be attached to a `StaMP` message as the `from` property.
*
* @param {StaMP.Protocol.SenderClassification} senderClassification the classification of the sender of the `StaMP` message.
* @param {string} senderIdTag the identifying tag provided by the sender of the `StaMP` message.
* @param {string} originatingService the service that the original message originated from originally.
*
* @return {string}
*/
static buildFromSenderString(senderClassification, senderIdTag, originatingService = '') {
return `${senderClassification}:${senderIdTag}:${originatingService}`;
}
/**
* Splits a `fromSender` property `string`, that came from the `from` property of a `StaMP` message.
*
* @param {string} fromSenderString
*
* @return {Array<string>} an array of two to three elements.
* The first element will be the sender's classification, the second from tag, and the third the originating service.
*/
static splitFromSenderString(fromSenderString) {
return fromSenderString.split(':');
}
/**
* Processes an SSML text string; this includes removing all emotes, expanding ampersands, and finally expanding it.
* If 'false' is passed, nothing is done.
*
* @param {StaMP.Protocol.Messages.SSMLText} ssmlText
* @param {?string} text
*
* @return {StaMP.Protocol.Messages.SSMLText}
*/
static processSSMLText(ssmlText, text) {
return MessageBuilder.expandAmpersand(
MessageBuilder.removeEmotes(
MessageBuilder.expandSSMLText(ssmlText, text)
)
);
}
/**
* Expands an ssml text string, replacing '{text}' with the given text value. If 'false' is passed, then nothing is done
*
* @param {StaMP.Protocol.Messages.SSMLText} ssmlText
* @param {?string} text
*
* @return {StaMP.Protocol.Messages.SSMLText}
*/
static expandSSMLText(ssmlText, text) {
return typeof ssmlText === 'string' ? ssmlText.replace('{text}', text) : ssmlText;
}
/**
* Removes any emotes from ssmlText, as polly will try and speak them as words
*
* @param {StaMP.Protocol.Messages.SSMLText} ssmlText
*
* @return {StaMP.Protocol.Messages.SSMLText}
*/
static removeEmotes(ssmlText) {
if (typeof ssmlText === 'string') {
const eyes = [':', ';', '&'];
const faces = [
')',
']',
'}',
'(',
'[',
'{',
'P',
'p',
'<',
'>',
'|',
'/',
'\\',
'@',
'*'
];
const emotes = eyes.map(eye => faces.map(face => `${eye}${face}`))
.reduce((acc, result) => acc.concat(result), []);
return emotes.reduce((acc, emote) => acc.replace(` ${emote}`, ''), ssmlText).trim();
}
return ssmlText;
}
/**
* Replaces the character '&' with the word 'and'
*
* @param {StaMP.Protocol.Messages.SSMLText} ssmlText
*
* @return {StaMP.Protocol.Messages.SSMLText}
*/
static expandAmpersand(ssmlText) {
if (typeof ssmlText === 'string') {
return ssmlText.replace(/&/g, 'and');
}
return ssmlText;
}
/**
* Creates a new query-type message
*
* @param {string} originator The name of the whatever that this StandardisedMetaMessage originated from
* @param {StaMP.Protocol.Messages.StandardisedMetaMessageData} data
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedMetaMessage}
*/
static createMetaMessage(originator, data, from = 'server') {
return {
$StaMP: true,
from,
type: 'meta',
originator,
data
};
}
/**
* Creates a new query-type message
*
* @param {string} query
* @param {string} [text=query] the text that gets displayed for this message, in the case that the query is a payload or postback value
* @param {StaMP.Protocol.Messages.StandardisedQueryMessageData} [data={}]
* @param {string} [from='user']
*
* @return {StaMP.Protocol.Messages.StandardisedQueryMessage}
*/
static createQueryMessage(query, text = query, data = {}, from = 'user') {
return {
$StaMP: true,
from,
type: 'query',
query,
text,
data
};
}
/**
* Creates a new StaMP `event` message.
*
* @param {string} event
* @param {Object} [payload={}]
* @param {Object} [data={}]
* @param {string} [from='user']
*
* @return {StaMP.Protocol.EventMessage}
*/
static createEventMessage(event, payload = {}, data = {}, from = 'user') {
return {
$StaMP: true,
from,
type: 'event',
event,
payload,
data
};
}
/**
* Builds an {@link StaMP.Events.UNKNOWN_MESSAGE `UNKNOWN_MESSAGE`} event.
*
* If `unknownMessage` is *not* of type `string`, it'll be passed to `JSON.stringify`.
*
* @param {?Object} originalMessage the original message that is unknown by StaMP.
* @param {Object} [data={}] additional data to include about this event.
* @param {string} [from='server']
*
* @return {StaMP.Events.UnknownMessageEvent}
*/
static buildUnknownMessageEvent(originalMessage, data = {}, from = 'user') {
const payload = {
originalMessage: typeof originalMessage === 'string'
? originalMessage
: JSON.stringify(originalMessage)
};
return {
$StaMP: true,
from,
type: 'event',
event: MessageBuilder.UNKNOWN_MESSAGE_EVENT,
payload,
data
};
}
/**
* Creates a new typing-type message
*
* @param {StaMP.Protocol.Messages.TypingState} state
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedTypingMessage}
*/
static createTypingMessage(state, from = 'server') {
return {
$StaMP: true,
from,
type: 'typing',
state
};
}
/**
* Creates a new text-type message
*
* @param {string} text
* @param {StaMP.Protocol.Messages.SSMLText} [ssmlText='<p>{text}</p>'] ssml text for speaking. '{text}' can be used to represent the original text,
* being replaced with `ssml.replace('{text}', text)`. 'false' means no speech
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedTextMessage}
*/
static createTextMessage(text, ssmlText = '<p>{text}</p>', from = 'server') {
return {
$StaMP: true,
from,
type: 'text',
text,
ssmlText: MessageBuilder.processSSMLText(ssmlText, text)
};
}
/**
* Creates a new location-type message
*
* @param {string|number} lat
* @param {string|number} lng
* @param {?string} [mapUrl=null] Deprecated.
* @param {?string} [label=null] Deprecated.
* @param {string} [from='user']
*
* @return {StaMP.Protocol.Messages.StandardisedLocationMessage}
*/
static createLocationMessage(lat, lng, mapUrl = null, label = null, from = 'user') {
return {
$StaMP: true,
from,
type: 'location',
lat,
lng,
mapUrl,
label
};
}
/**
* Creates a new image-type message
*
* @param {string} url
* @param {StaMP.Protocol.Messages.SSMLText} [ssmlText='<p>{text}</p>'] ssml text for speaking. '{text}' can be used to represent the original text,
* being replaced with `ssml.replace('{text}', text)`. 'false' means no speech
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedImageMessage}
*/
static createImageMessage(url, ssmlText = false, from = 'server') {
return {
$StaMP: true,
from,
type: 'image',
url,
ssmlText: MessageBuilder.processSSMLText(ssmlText, null)
};
}
/**
* Creates a new quick-reply-type message
*
* @param {string} text
* @param {Array.<StaMP.Protocol.Messages.StandardisedQuickReply>} replies
* @param {StaMP.Protocol.Messages.SSMLText} [ssmlText='<p>{text}</p>'] ssml text for speaking. '{text}' can be used to represent the original text,
* being replaced with `ssml.replace('{text}', text)`. 'false' means no speech
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedQuickReplyMessage}
*/
static createQuickReplyMessage(text, replies, ssmlText = '<p>{text}</p>', from = 'server') {
return {
$StaMP: true,
from,
type: 'quick_reply',
text,
ssmlText: MessageBuilder.processSSMLText(ssmlText, text),
quickReplies: replies
};
}
/**
*
* @param {string} title
* @param {string} [payload=text]
* @param {?string} [imageUrl=null]
*
* @return {StaMP.Protocol.Messages.StandardisedQuickReply}
*/
static createQuickReply(title, payload = title, imageUrl = null) {
return { title, payload, imageUrl };
}
/**
* Creates a new card-type message
*
* @param {string} title
* @param {?string} [subtitle=null]
* @param {?string} [imageUrl=null]
* @param {Array.<StaMP.Protocol.Messages.StandardisedCardButton>} buttons
* @param {?string} [clickUrl=null]
* @param {string} [from='server']
*
* @return {StaMP.Protocol.Messages.StandardisedCardMessage}
*/
static createCardMessage(title, subtitle = null, imageUrl = null, buttons = [], clickUrl = null, from = 'server') {
const card = {
$StaMP: true,
from,
type: 'card',
title,
buttons
};
if (subtitle) {
card.subtitle = subtitle;
}
if (imageUrl) {
card.imageUrl = imageUrl;
}
if (clickUrl) {
card.clickUrl = clickUrl;
}
return card;
}
/**
*
* @param {string} text
* @param {string} value
* @return {StaMP.Protocol.Messages.StandardisedCardButton}
*/
static createCardButton(text, value) {
return {
type: 'postback',
text,
value,
};
}
}
module.exports = MessageBuilder;