-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle_messages.js
518 lines (453 loc) · 12.9 KB
/
handle_messages.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
const request = require("request");
const fetch = (...args) =>
import("node-fetch").then(({ default: fetch }) => fetch(...args));
const admin = require("firebase-admin");
const ADMIN_ID = process.env.ADMIN_ID;
admin.initializeApp({
credential: admin.credential.cert(
JSON.parse(process.env.FIREBASE_CREDENTIAL)
),
});
const db = admin.firestore();
const pair_doc = db.collection("pair").doc("pair_doc");
const wait_doc = db.collection("wait").doc("wait_doc");
const name_doc = db.collection("name").doc("name_doc");
const PAGE_ACCESS_TOKEN = process.env.PAGE_ACCESS_TOKEN;
let cached_pairs = {};
let cached_names = {};
let full_maintainance = false;
let maintainance_message = "";
async function get_cache(sender_psid) {
if (!cached_pairs.hasOwnProperty(sender_psid)) {
let pairDoc = (await pair_doc.get()).data();
cached_pairs = pairDoc;
if (!cached_pairs.hasOwnProperty(sender_psid)) {
cached_pairs[sender_psid] = "x";
pair_doc.update(sender_psid, "x");
}
}
return cached_pairs[sender_psid];
}
async function update_cache_name(sender_psid) {
if (cached_names.hasOwnProperty(sender_psid)) return;
let nameDoc = (await name_doc.get()).data();
cached_names = nameDoc;
if (!cached_names.hasOwnProperty(sender_psid)) {
cached_names[sender_psid] = (
await fetch(
"https://graph.facebook.com/v14.0/" +
sender_psid +
"?fields=name&access_token=" +
PAGE_ACCESS_TOKEN
).then((d) => d.json())
).name;
name_doc.update(sender_psid, cached_names[sender_psid]);
}
}
async function forceReloadCache() {
cached_pairs = (await pair_doc.get()).data();
}
async function match(id1, id2) {
cached_pairs[id2] = id1;
cached_pairs[id1] = id2;
await Promise.all([
wait_doc.update({
wait_list: admin.firestore.FieldValue.arrayRemove(id1, id2),
}),
pair_doc.update({
[id2]: id1,
[id1]: id2,
}),
]);
callSendAPI(id1, {
text: 'Đã kết nối! Nhắn "kết thúc" để kết thúc cuộc trò chuyện.',
});
callSendAPI(id2, {
text: 'Đã kết nối! Nhắn "kết thúc" để kết thúc cuộc trò chuyện.',
});
}
async function handleStart(sender_psid, message = null) {
update_cache_name(sender_psid);
let partner_id = await get_cache(sender_psid);
if (partner_id[0] !== "x") {
if (message === null)
callSendAPI(sender_psid, {
text: "Bạn đang trong một cuộc trò chuyện. Vui lòng kết thúc cuộc trò chuyện này trước khi bắt đầu cuộc trò chuyện khác.",
quick_replies: [
{
content_type: "text",
title: "Kết thúc",
payload: "Kết thúc",
},
],
});
else handleChat(sender_psid, message);
return;
}
callSendAPI(sender_psid, {
text: 'Đang tìm kiếm :Đ Nhắn "dừng" để dừng tìm kiếm.',
});
let waiting_list = (await wait_doc.get()).data().wait_list;
if (waiting_list.includes(sender_psid)) return;
if (waiting_list.length > 0) {
for (const user of waiting_list) {
let check = await get_cache(user);
if (
check[0] != "x" ||
check.includes(sender_psid) ||
partner_id.includes(user)
)
continue;
match(sender_psid, user);
return;
}
}
wait_doc.update({
wait_list: admin.firestore.FieldValue.arrayUnion(sender_psid),
});
}
async function handleEnd(sender_psid) {
let partner_id = await get_cache(sender_psid);
if (partner_id[0] === "x") {
callSendAPI(sender_psid, {
text: "Bạn hiện không ở trong một cuộc trò chuyện.",
quick_replies: [
{
content_type: "text",
title: "Bắt đầu",
payload: "Bắt đầu",
},
],
});
return;
}
cached_pairs[partner_id] = "x" + sender_psid;
cached_pairs[sender_psid] = "x" + partner_id;
pair_doc.update({
[sender_psid]: "x" + partner_id,
[partner_id]: "x" + sender_psid,
});
callSendAPI(sender_psid, {
attachment: {
type: "template",
payload: {
template_type: "button",
text: "Đã kết thúc cuộc trò chuyện!",
buttons: [
{
type: "postback",
title: "Bắt đầu",
payload: "Bắt đầu"
},
{
type: "web_url",
url: "https://forms.gle/Zu7wWPM9Vw5GuPw58",
title: "Báo xấu"
}
]
}
}
});
callSendAPI(partner_id, {
attachment: {
type: "template",
payload: {
template_type: "button",
text: "Đối phương đã kết thúc cuộc trò chuyện!",
buttons: [
{
type: "postback",
title: "Bắt đầu",
payload: "Bắt đầu"
},
{
type: "web_url",
url: "https://forms.gle/Zu7wWPM9Vw5GuPw58",
title: "Báo xấu"
}
]
}
}
});
}
async function handleStopSearch(sender_psid, message = null) {
let partner_id = await get_cache(sender_psid);
if (partner_id[0] !== "x") {
if (message !== null) handleChat(sender_psid, message);
return;
}
wait_doc
.update({
wait_list: admin.firestore.FieldValue.arrayRemove(sender_psid),
})
.then(() => {
callSendAPI(sender_psid, {
text: "Đã dừng tìm kiếm.",
quick_replies: [
{
content_type: "text",
title: "Bắt đầu",
payload: "Bắt đầu",
},
],
});
});
}
async function getMessageContent(mid, action = "Reacted 🎈 to") {
let message = await fetch(
"https://graph.facebook.com/v8.0/" +
mid +
"?fields=message&access_token=" +
PAGE_ACCESS_TOKEN
).then((d) => d.json());
message = message.message;
if (message !== "") {
return (
action + message.replaceAll(/> .*?\n/g, "").replaceAll(/^|\n/g, "\n> ")
);
}
let attachments = await fetch(
"https://graph.facebook.com/v8.0/" +
mid +
"/attachments?access_token=" +
PAGE_ACCESS_TOKEN
).then((d) => d.json());
attachments = attachments.data;
if (!attachments) {
if (action === "") return `> Replied to a message`;
else return `${action} a message`;
}
let type = attachments[0] ? attachments[0].mime_type : "";
if (type.includes("image")) {
if (action === "") return `> Replied to an image`;
else return `${action} an image`;
} else if (type.includes("audio")) {
if (action === "") return `> Replied to an audio`;
else return `${action} an audio`;
} else if (type.includes("video")) {
if (action === "") return `> Replied to a video`;
else return `${action} a video`;
} else {
if (action === "") return `> Replied to an attachment`;
else return `${action} an attachment`;
}
}
async function handleChat(sender_psid, message) {
let partner_id = await get_cache(sender_psid);
if (partner_id[0] === "x") {
callSendAPI(sender_psid, {
text: 'Bạn hiện không ở trong một cuộc trò chuyện. Nhắn "bắt đầu" để bắt đầu trò chuyện.',
quick_replies: [
{
content_type: "text",
title: "Bắt đầu",
payload: "Bắt đầu",
},
{
content_type: "text",
title: "Trợ giúp",
payload: "Trợ giúp",
},
],
});
return;
}
let response = {};
let silent = false;
if (message.text) {
response.text = message.text;
if (response.text.includes("/silent")) silent = true;
}
if (message.reply_to) {
response.text =
(await getMessageContent(message.reply_to.mid, "")) +
"\n" +
(response.text??"");
}
callSendAPI(partner_id, response, silent);
if (message.attachments) {
for (const attachment of message.attachments) {
callSendAPI(partner_id, {
attachment: {
type: attachment.type,
payload: {
url: attachment.payload.url,
},
},
});
}
}
}
async function handleRead(sender_psid) {
if (full_maintainance) return;
let partner_id = await get_cache(sender_psid);
if (partner_id[0] === "x") return;
callReadAPI(partner_id);
}
async function handleReact(sender_psid, reaction) {
if (full_maintainance) return;
let partner_id = await get_cache(sender_psid);
if (partner_id[0] === "x") return;
let content = await getMessageContent(
reaction.mid,
reaction.emoji ? `Reacted ${reaction.emoji} to` : "Unreacted to"
);
callSendAPI(partner_id, { text: content }, true);
}
function handleHelp(sender_psid) {
callSendAPI(sender_psid, {
text: 'Nhắn "bắt đầu" để bắt đầu trò chuyện. Nhắn "kết thúc" để kết thúc cuộc trò chuyện. Trong lúc đang tìm kiếm, bạn có thể nhắn "dừng" để dừng tìm kiếm.',
quick_replies: [
{
content_type: "text",
title: "Bắt đầu",
payload: "Bắt đầu",
},
],
});
}
function handleMaintainance(sender_psid) {
callSendAPI(sender_psid, {
text: maintainance_message,
});
}
async function announcement(text) {
let tokens = text.split("|");
let all = tokens[1] === "all";
let ids = [];
if (all) ids = Object.keys((await pair_doc.get()).data());
else {
for (let i = 1; i < tokens.length - 1; i++) {
ids.push(tokens[i]);
}
}
ids.forEach((id) => {
callSendAPI(
id,
{ text: `[THÔNG BÁO HỆ THỐNG]\n${tokens[tokens.length - 1]}` },
true
);
});
}
function maintain(text) {
let tokens = text.split("|");
full_maintainance = (tokens[1] === "true");
maintainance_message = tokens[2];
}
function handleMessage(sender_psid, received_message) {
if (full_maintainance) {
handleMaintainance(sender_psid);
return;
}
let text = null;
if (typeof received_message === "undefined") return;
if (received_message.text) text = received_message.text;
let cleanText = text ? text.trim().toLowerCase() : "";
if (cleanText == "bắt đầu") {
handleStart(sender_psid, received_message);
return;
} else if (cleanText == "kết thúc") {
handleEnd(sender_psid);
return;
} else if (cleanText == "trợ giúp") {
handleHelp(sender_psid);
return;
} else if (cleanText == "dừng") {
handleStopSearch(sender_psid, received_message);
return;
} else if (sender_psid == ADMIN_ID && cleanText == "force_reload") {
forceReloadCache();
return;
} else if (sender_psid == ADMIN_ID && cleanText.startsWith("announce|")) {
announcement(received_message.text);
return;
} else if (sender_psid == ADMIN_ID && cleanText.startsWith("maintain|")) {
maintain(received_message.text);
return;
}
handleChat(sender_psid, received_message);
}
function handlePostback(sender_psid, received_postback) {
if (full_maintainance) {
handleMaintainance(sender_psid);
return;
}
let response = {};
let payload = received_postback.payload;
if (payload === "Get Started") {
response.text =
'Chào mừng bạn đến với PTNK Chatible 2! Nhắn "bắt đầu" để bắt đầu trò chuyện.\n\nLưu ý: PTNK Chatible 2 được lập ra với mục đích kết nối học sinh trường PTNK - ĐHQG TP.HCM. Nếu bạn không là học sinh, cựu học sinh PTNK hoặc không có nhu cầu kết nối với HS/CHS PTNK, vui lòng cân nhắc sử dụng các trang trò chuyện ẩn danh khác.';
response.quick_replies = [
{
content_type: "text",
title: "Bắt đầu",
payload: "Bắt đầu",
},
{
content_type: "text",
title: "Trợ giúp",
payload: "Trợ giúp",
},
];
} else if (payload === "Bắt đầu") {
handleStart(sender_psid);
return;
} else if (payload === "Trợ giúp") {
handleHelp(sender_psid);
return;
} else if (payload === "Kết thúc") {
handleEnd(sender_psid);
return;
}
callSendAPI(sender_psid, response);
}
function callSendAPI(sender_psid, response, silent = false) {
let request_body = {
recipient: {
id: sender_psid,
},
message: response,
notification_type: silent ? "NO_PUSH" : "REGULAR",
};
request(
{
uri: "https://graph.facebook.com/v14.0/me/messages",
qs: { access_token: PAGE_ACCESS_TOKEN },
method: "POST",
json: request_body,
},
(err, res, body) => {
if (err) {
console.error("Unable to send message:" + err);
}
}
);
}
function callReadAPI(id) {
let request_body = {
recipient: {
id: id,
},
sender_action: "mark_seen",
};
request(
{
uri: "https://graph.facebook.com/v14.0/me/messages",
qs: { access_token: PAGE_ACCESS_TOKEN },
method: "POST",
json: request_body,
},
(err, res, body) => {
if (err) {
console.error("Unable to seen message:" + err);
}
}
);
}
module.exports = {
handleMessage,
handlePostback,
callSendAPI,
handleRead,
handleReact,
};