This repository has been archived by the owner on Dec 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmessenger.js
576 lines (520 loc) · 14.1 KB
/
messenger.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
"use strict";
const request = require("request");
const Bluebird = require("bluebird");
const config = require("../../config/config-loader").load();
const { emojify } = require("node-emoji");
const { ButtonsListMessage, ButtonsMessage, TextMessage } = require("../generics");
const { textMessageAdapter, buttonsListMessageAdapter, buttonsMessageAdapter } = require("./messenger_adapters");
const logger = require("../../providers/logging/logger");
/*
* Be sure to setup your config values before running this code. You can
* set them using environment variables or modifying the config file in /config.
*
*/
// Generate a page access token for your page from the App Dashboard
const PAGE_ACCESS_TOKEN = config.facebook.pageAccessToken;
// URL where the app is running (include protocol). Used to point to scripts and
// assets located at this address.
// const SERVER_URL = config.server.url;
function callFacebookAPI (requestObject) {
return new Bluebird((resolve) => {
request(requestObject, (error, response, body) => {
if (!error && response.statusCode === 200) {
const recipientId = body.recipient_id;
const messageId = body.message_id;
if (messageId) {
logger.debug("Successfully sent message %s to recipient %s", messageId, recipientId);
} else {
logger.debug("Successfully called FB API at: %s", requestObject.uri);
}
} else {
logger.error("Failed calling Send API", response.statusCode, response.statusMessage, body.error);
}
return resolve(body);
});
});
}
const getUserProfile = (userid) => callFacebookAPI({
uri: `https://graph.facebook.com/v2.6/${userid}`,
qs: { access_token: PAGE_ACCESS_TOKEN },
method: "GET"
});
/*
* Call the Send API. The message data goes in the body. If successful, we"ll
* get the message id in a response
*
*/
const sendMessageToAPI = (messageData) => callFacebookAPI({
uri: "https://graph.facebook.com/v2.6/me/messages",
qs: { access_token: PAGE_ACCESS_TOKEN },
method: "POST",
json: messageData
});
/*
* Authorization Event
*
* The value for "optin.ref" is defined in the entry point. For the "Send to
* Messenger" plugin, it is the "data-ref" field. Read more at
* https://developers.facebook.com/docs/messenger-platform/webhook-reference/authentication
*
*/
function receivedAuthentication (event) {
const senderID = event.sender.id;
const recipientID = event.recipient.id;
const timeOfAuth = event.timestamp;
// The "ref" field is set in the "Send to Messenger" plugin, in the "data-ref"
// The developer can set this to an arbitrary value to associate the
// authentication callback with the "Send to Messenger" click event. This is
// a way to do account linking when the user clicks the "Send to Messenger"
// plugin.
const passThroughParam = event.optin.ref;
logger.debug("Received authentication for user %d and page %d with pass through param '%s' at %d", senderID, recipientID, passThroughParam, timeOfAuth);
// When an authentication is received, we"ll send a message back to the sender
// to let them know it was successful.
sendTextMessage(senderID, "Authentication successful");
}
/*
* Delivery Confirmation Event
*
* This event is sent to confirm the delivery of a message. Read more about
* these fields at https://developers.facebook.com/docs/messenger-platform/webhook-reference/message-delivered
*
*/
function receivedDeliveryConfirmation (event) {
// var senderID = event.sender.id;
// var recipientID = event.recipient.id;
const delivery = event.delivery;
const messageIDs = delivery.mids;
const watermark = delivery.watermark;
// var sequenceNumber = delivery.seq;
if (messageIDs) {
messageIDs.forEach((messageID) => {
logger.debug("Received delivery confirmation for message ID: %s", messageID);
});
}
logger.debug("All message before %d were delivered.", watermark);
}
/*
* Postback Event
*
* This event is called when a postback is tapped on a Structured Message.
* https://developers.facebook.com/docs/messenger-platform/webhook-reference/postback-received
*
*/
function receivedPostback (event) {
const senderID = event.sender.id;
const recipientID = event.recipient.id;
const timeOfPostback = event.timestamp;
// The "payload" param is a developer-defined field which is set in a postback
// button for Structured Messages.
const payload = event.postback.payload;
logger.debug("Received postback for user %d and page %d with payload '%s' at %d", senderID, recipientID, payload, timeOfPostback);
// When a postback is called, we"ll send a message back to the sender to
// let them know it was successful
sendTextMessage(senderID, "Postback called");
}
/*
* Message Read Event
*
* This event is called when a previously-sent message has been read.
* https://developers.facebook.com/docs/messenger-platform/webhook-reference/message-read
*
*/
function receivedMessageRead (event) {
// var senderID = event.sender.id;
// var recipientID = event.recipient.id;
// All messages before watermark (a timestamp) or sequence have been seen.
const watermark = event.read.watermark;
const sequenceNumber = event.read.seq;
logger.debug("Received message read event for watermark %d and sequence number %d", watermark, sequenceNumber);
}
/*
* Account Link Event
*
* This event is called when the Link Account or UnLink Account action has been
* tapped.
* https://developers.facebook.com/docs/messenger-platform/webhook-reference/account-linking
*
*/
function receivedAccountLink (event) {
const senderID = event.sender.id;
// var recipientID = event.recipient.id;
const status = event.account_linking.status;
const authCode = event.account_linking.authorization_code;
logger.debug("Received account link event with for user %d with status %s and auth code %s ", senderID, status, authCode);
}
/*
* Send an image using the Send API.
*
*/
// function sendImageMessage (recipientId) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "image",
// payload: {
// url: `${SERVER_URL}/assets/rift.png`
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a Gif using the Send API.
*
*/
// function sendGifMessage (recipientId) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "image",
// payload: {
// url: `${SERVER_URL}/assets/instagram_logo.gif`
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send audio using the Send API.
*
*/
// function sendAudioMessage (recipientId) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "audio",
// payload: {
// url: `${SERVER_URL}/assets/sample.mp3`
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a video using the Send API.
*
*/
// function sendVideoMessage (recipientId) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "video",
// payload: {
// url: `${SERVER_URL}/assets/allofus480.mov`
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a file using the Send API.
*
*/
// function sendFileMessage (recipientId) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "file",
// payload: {
// url: `${SERVER_URL}/assets/test.txt`
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a text message using the Send API.
*
*/
function sendTextMessage (recipientId, messageText) {
if (!messageText) {
return Bluebird.resolve({});
}
const messageData = {
recipient: {
id: recipientId
},
message: {
text: messageText
}
};
return sendMessageToAPI(messageData);
}
/*
* Send a button message using the Send API.
*
*/
function sendButtonMessage (recipientId, buttonMessage) {
const messageData = {
recipient: {
id: recipientId
},
message: {
attachment: {
type: "template",
payload: buttonMessage
}
}
};
return sendMessageToAPI(messageData);
}
/*
* Send a Structured Message (Generic Message type) using the Send API.
*
*/
// function sendListMessage (recipientId, list) {
// const messageData = {
// recipient: {
// id: recipientId
// },
//
// message: {
// attachment: {
// type: "template",
// payload: list
// }
// }
// };
//
// return sendMessageToAPI(messageData);
// }
/*
* Send a Structured Message (Generic Message type) using the Send API.
*
*/
// function sendGenericMessage (recipientId, elements) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "template",
// payload: {
// template_type: "generic",
// elements
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a receipt message using the Send API.
*
*/
// function sendReceiptMessage (recipientId) {
// // Generate a random receipt ID as the API requires a unique ID
// const receiptId = `order${Math.floor(Math.random() * 1000)}`;
//
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "template",
// payload: {
// template_type: "receipt",
// recipient_name: "Peter Chang",
// order_number: receiptId,
// currency: "USD",
// payment_method: "Visa 1234",
// timestamp: "1428444852",
// elements: [
// {
// title: "Oculus Rift",
// subtitle: "Includes: headset, sensor, remote",
// quantity: 1,
// price: 599.00,
// currency: "USD",
// image_url: `${SERVER_URL}/assets/riftsq.png`
// },
// {
// title: "Samsung Gear VR",
// subtitle: "Frost White",
// quantity: 1,
// price: 99.99,
// currency: "USD",
// image_url: `${SERVER_URL}/assets/gearvrsq.png`
// }
// ],
// address: {
// street_1: "1 Hacker Way",
// street_2: "",
// city: "Menlo Park",
// postal_code: "94025",
// state: "CA",
// country: "US"
// },
// summary: {
// subtotal: 698.99,
// shipping_cost: 20.00,
// total_tax: 57.67,
// total_cost: 626.66
// },
// adjustments: [
// {
// name: "New Customer Discount",
// amount: -50
// },
// {
// name: "$100 Off Coupon",
// amount: -100
// }
// ]
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a message with Quick Reply buttons.
*
*/
function sendQuickReply (recipientId, message) {
const messageData = {
recipient: {
id: recipientId
},
message
};
return sendMessageToAPI(messageData);
}
/*
* Send a read receipt to indicate the message has been read
*
*/
// function sendReadReceipt (recipientId) {
// console.log("Sending a read receipt to mark message as seen");
//
// const messageData = {
// recipient: {
// id: recipientId
// },
// sender_action: "mark_seen"
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Turn typing indicator on
*
*/
// function sendTypingOn (recipientId) {
// console.log("Turning typing indicator on");
//
// const messageData = {
// recipient: {
// id: recipientId
// },
// sender_action: "typing_on"
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Turn typing indicator off
*
*/
// function sendTypingOff (recipientId) {
// console.log("Turning typing indicator off");
//
// const messageData = {
// recipient: {
// id: recipientId
// },
// sender_action: "typing_off"
// };
//
// sendMessageToAPI(messageData);
// }
/*
* Send a message with the account linking call-to-action
*/
// function sendAccountLinking (recipientId, url) {
// const messageData = {
// recipient: {
// id: recipientId
// },
// message: {
// attachment: {
// type: "template",
// payload: {
// template_type: "button",
// text: "",
// buttons: [
// {
// type: "account_link",
// url
// }
// ]
// }
// }
// }
// };
//
// sendMessageToAPI(messageData);
// }
function send (recipientId, message) {
const regx = /^([\S\s]{0,640})(?:\n|[.,]\s)([\S\s]*$)/g; // Regex for "smart" splitting (str.length limit is 640)
if (typeof message === "string") {
if (message.length > 640) {
let matchs = regx.exec(message);
return send(recipientId, matchs[1]).then(() => send(recipientId, matchs[2]));
}
return sendTextMessage(recipientId, emojify(message));
}
if (message instanceof TextMessage) {
if (message.text.length > 640) {
let matchs = regx.exec(message.text);
return send(recipientId, matchs[1]).then(() => send(recipientId, matchs[2]));
}
return sendTextMessage(recipientId, textMessageAdapter(message));
}
if (message instanceof ButtonsListMessage) {
return sendQuickReply(recipientId, buttonsListMessageAdapter(message));
}
if (message instanceof ButtonsMessage) {
return sendButtonMessage(recipientId, buttonsMessageAdapter(message));
}
return sendMessageToAPI(message);
}
module.exports = {
receivedAuthentication,
receivedDeliveryConfirmation,
receivedPostback,
receivedMessageRead,
receivedAccountLink,
send,
getUserProfile
};