-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapEvents.ts.backup
474 lines (424 loc) · 13.6 KB
/
mapEvents.ts.backup
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
import {
Client,
MiddlewareConfig,
TextEventMessage,
ImageEventMessage,
VideoEventMessage,
AudioEventMessage,
LocationEventMessage,
StickerEventMessage,
ClientConfig
} from "@line/bot-sdk";
import { config, hostname, client as $dbclient } from "./util";
import { promises } from "fs";
export const handle = chaining();
const client = new Client(<ClientConfig>config);
const cache = {};
const replyText = (token: string, texts: string | any[]) => {
// token expire in 30s
texts = Array.isArray(texts) ? texts : [texts];
console.log(`sending ${texts}`);
return client.replyMessage(
token,
texts.map((text) => ({ type: 'text', text }))
);
};
function handleTextQ(message: TextEventMessage, replyToken: string, source: string) : Promise<any> | null {return Promise.resolve()}
function handleImage(message: ImageEventMessage, replyToken:string) : Promise<any> | null {return Promise.resolve()}
function handleVideo(message: VideoEventMessage, replyToken:string) : Promise<any> | null {return Promise.resolve()}
function handleAudio(message: AudioEventMessage, replyToken:string) : Promise<any> | null {return Promise.resolve()}
function handleLocation(message: LocationEventMessage, replyToken:string) : Promise<any> | null {return Promise.resolve()}
function handleSticker(message: StickerEventMessage, replyToken:string) : Promise<any> | null {return Promise.resolve()}
export function handleEvent(event: any) {
if ((event).replyToken && (event).replyToken.match(/^(.)\1*$/)) {
return console.log("Test hook recieved: " + JSON.stringify(event.message));
}
switch (event.type) {
case 'message':
const message = event.message;
switch(message.type) {
case 'text':
return handleText(message, event.replyToken, event.source);
case 'image':
return handleImage(message, event.replyToken);
case 'video':
return handleVideo(message, event.replyToken);
case 'audio':
return handleAudio(message, event.replyToken);
case 'location':
return handleLocation(message, event.replyToken);
case 'sticker':
return handleSticker(message, event.replyToken);
default:
throw new Error(`Unknown message: ${JSON.stringify(message)}`);
}
case 'follow':
return replyText(event.replyToken, 'Got followed event');
case 'unfollow':
return console.log(`Unfollowed this bot: ${JSON.stringify(event)}`);
case 'join':
return replyText(event.replyToken, `Joined ${event.source.type}`);
case 'leave':
return console.log(`Left: ${JSON.stringify(event)}`);
case 'postback':
let data = event.postback.data;
if (data === 'DATE' || data === 'TIME' || data === 'DATETIME') {
data += `(${JSON.stringify(event.postback.params)})`;
}
return replyText(event.replyToken, `Got postback: ${data}`);
case 'beacon':
return replyText(event.replyToken, `Got beacon: ${event.beacon.hwid}`);
default:
throw new Error(`Unknown event: ${JSON.stringify(event)}`);
}
}
function handleText(message:any, replyToken:any, source:any) {
const buttonsImageURL = `https://${hostname}/static/buttons/1040.jpg`;
// const buttonsImageURL = "https://i.imgur.com/3hrYrON.jpg"
console.log(buttonsImageURL);
switch (message.text) {
case 'profile':
if (source.userId) {
return client.getProfile(source.userId)
.then((profile) => replyText(
replyToken,
[
`Display name: ${profile.displayName}`,
`Status message: ${profile.statusMessage}`,
]
));
} else {
return replyText(replyToken, 'Bot can\'t use profile API without user ID');
}
case 'buttons':
return client.replyMessage(
replyToken,
{
type: 'template',
altText: 'Buttons alt text',
template: {
type: 'buttons',
thumbnailImageUrl: buttonsImageURL,
title: 'My button sample',
text: 'Hello, my button',
actions: [
{ label: 'Go to line.me', type: 'uri', uri: 'https://line.me' },
{ label: 'Say hello1', type: 'postback', data: 'hello こんにちは' },
{ label: '言 hello2', type: 'postback', data: 'hello こんにちは', text: 'hello こんにちは' },
{ label: 'Say message', type: 'message', text: 'Rice=米' },
],
},
}
);
case 'confirm':
return client.replyMessage(
replyToken,
{
type: 'template',
altText: 'Confirm alt text',
template: {
type: 'confirm',
text: 'Do it?',
actions: [
{ label: 'Yes', type: 'message', text: 'Yes!' },
{ label: 'No', type: 'message', text: 'No!' },
],
},
}
)
case 'carousel':
return client.replyMessage(
replyToken,
{
type: 'template',
altText: 'Carousel alt text',
template: {
type: 'carousel',
columns: [
{
thumbnailImageUrl: buttonsImageURL,
title: 'hoge',
text: 'fuga',
actions: [
{ label: 'Go to line.me', type: 'uri', uri: 'https://line.me' },
{ label: 'Say hello1', type: 'postback', data: 'hello こんにちは' },
],
},
{
thumbnailImageUrl: buttonsImageURL,
title: 'hoge',
text: 'fuga',
actions: [
{ label: '言 hello2', type: 'postback', data: 'hello こんにちは', text: 'hello こんにちは' },
{ label: 'Say message', type: 'message', text: 'Rice=米' },
],
},
],
},
}
);
case 'image carousel':
return client.replyMessage(
replyToken,
<any> {
type: 'template',
altText: 'Image carousel alt text',
template: {
type: 'image_carousel',
columns: [
{
imageUrl: buttonsImageURL,
action: { label: 'Go to LINE', type: 'uri', uri: 'https://line.me' },
},
{
imageUrl: buttonsImageURL,
action: { label: 'Say hello1', type: 'postback', data: 'hello こんにちは' },
},
{
imageUrl: buttonsImageURL,
action: { label: 'Say message', type: 'message', text: 'Rice=米' },
},
{
imageUrl: buttonsImageURL,
action: {
label: 'datetime',
type: 'datetimepicker',
data: 'DATETIME',
mode: 'datetime',
},
},
]
},
}
);
case 'datetime':
return client.replyMessage(
replyToken,
{
type: 'template',
altText: 'Datetime pickers alt text',
template: {
type: 'buttons',
text: 'Select date / time !',
actions: [
{ type: 'datetimepicker', label: 'date', data: 'DATE', mode: 'date' },
{ type: 'datetimepicker', label: 'time', data: 'TIME', mode: 'time' },
{ type: 'datetimepicker', label: 'datetime', data: 'DATETIME', mode: 'datetime' },
],
},
}
);
case 'imagemap':
return client.replyMessage(
replyToken,
{
type: 'imagemap',
baseUrl: `${__dirname}/static/rich`,
altText: 'Imagemap alt text',
baseSize: { width: 1040, height: 1040 },
actions: [
{ area: { x: 0, y: 0, width: 520, height: 520 }, type: 'uri', linkUri: 'https://store.line.me/family/manga/en' },
{ area: { x: 520, y: 0, width: 520, height: 520 }, type: 'uri', linkUri: 'https://store.line.me/family/music/en' },
{ area: { x: 0, y: 520, width: 520, height: 520 }, type: 'uri', linkUri: 'https://store.line.me/family/play/en' },
{ area: { x: 520, y: 520, width: 520, height: 520 }, type: 'message', text: 'URANAI!' },
],
video: {
originalContentUrl: `${__dirname}/static/imagemap/video.mp4`,
previewImageUrl: `${__dirname}/static/imagemap/preview.jpg`,
area: {
x: 280,
y: 385,
width: 480,
height: 270,
},
externalLink: {
linkUri: 'https://line.me',
label: 'LINE'
}
},
}
);
case 'bye':
switch (source.type) {
case 'user':
return replyText(replyToken, 'Bot can\'t leave from 1:1 chat');
case 'group':
return replyText(replyToken, 'Leaving group')
.then(() => client.leaveGroup(source.groupId));
case 'room':
return replyText(replyToken, 'Leaving room')
.then(() => client.leaveRoom(source.roomId));
}
default:
// console.log(`Echo message to ${replyToken}: ${message.text}`);
// return replyText(replyToken, message.text);
return null;
}
}
async function first(pc: Pc): Promise<Pc>{
console.log('pc 1');
let arr = [1];
pc.test = arr;
// pc['signal'] = {stop:true};
// pc.put(2, second);
return pc;
}
async function second(pc: Pc): Promise<Pc> {
if (!/.*/.test(pc.dto.type)) return pc;
console.log('pc 2');
pc.test.push(2);
return pc;
}
async function getUser(pc: Pc): Promise<Pc> {
console.log('pc 3');
let dbclient = await $dbclient();
let userId = pc.dto.source.userId;
let users = dbclient.db("sampledb").collection("user");
console.log("finding users");
let result = await users.find(userId).toArray().catch(()=>{throw "fail when finding user"});
if (result.length == 0) {
let userDoc = await client.getProfile(userId).catch(()=> {throw "error get data"});
let result = await users.insert(userDoc).catch(()=>{throw "error insert"});
} else {
console.log('user found', result);
}
dbclient.close();
return pc;
}
async function calc(pc: Pc): Promise<Pc> {
// if(!/.*/.test(pc.dto.type))
return pc;
}
async function mintaId(pc: Pc): Promise<Pc> {
let text = pc.getMsgText() || "";
if ((/^minta id$/).test(text)) {
let replyToken = pc.dto.replyToken;
pc.addReplyMessage(pc.dto.source.userId);
}
return pc;
}
async function testing(pc: Pc): Promise<Pc> {
let matchesText = pc.getMatchesText(/^tes \d+/);
if (matchesText.length > 0) {
let number = parseInt(matchesText[0].split(" ")[1]) || 1;
console.log(`number: ${number}`);
let replyToken = pc.dto.replyToken;
await new Promise((resolve) => {
setTimeout(function() {
replyText(replyToken, `replied for ${number}`)
.catch((err) => {
console.warn(err, "message not sent");
});
resolve();
}, number);
}
);
}
return pc;
}
const processes: Process[] = [
// first,
// second,
// getUser,
// calc,
// mintaId,
testing
]
let counter = 0;
export function chaining() : Function {
return async function run(dto: any) {
counter+=1;
let hrstart = process.hrtime();
console.log("counter: " + counter);
let pc: Pc = new Pc(dto);
if (pc.dto) {
for (const process of processes) {
pc.prepare(process);
pc = await process(pc)
.catch((err)=> {
console.warn(err);
let newstop = new Pc(dto);
newstop.signal.stop = true;
return newstop;
});
if (pc.signal.stop) break;
}
let hrend = process.hrtime(hrstart);
console.info('Execution time (hr): %ds %dms', hrend[0], hrend[1] / 1000000)
// TODO:
// validating message to sent
let simple_text_messages = pc.replyMessages.slice(0,4);
// console.log(simple_text_messages);
if (simple_text_messages.length > 0) {
replyText(pc.dto.replyToken, simple_text_messages)
.catch(i => {
console.warn("fail reply msg: " + pc.replyMessages);
// console.log(i);
return i;
});
}
}
return ;
}
}
interface Process{(dto:any) : Promise<any>;};
export class Pc {
signal: {
stop: boolean;
} = {stop: false}
dto: any;
processHistory: Process[] = [];
processes?: Process[];
now?: any;
test?: any;
foo?: any;
idx: number = 0;
replyMessages: any[] = [];
time?: number[];
prepare (pc: Process): void {
this.processes = processes;
this.now = {
idx: ++this.idx,
name: pc.name
}
this.processHistory.push(pc);
this.time = process.hrtime();
}
put (index: number, callback: Process): void {
processes.splice(index, 0, callback);
}
putNext (callback: Process): void {
this.put(this.idx, callback);
}
constructor(dto: any){
this.dto = dto;
}
addReplyMessage(message: any): void {
this.replyMessages.push(message)
}
getMsgText(): string | null {
console.log(this.dto.message.text);
let dto = this.dto;
let message = dto.message;
let text = message.text;
return text ? text : null;
}
getMsg(): string {
return this.dto.message;
}
getMatchesText(re: RegExp): string[] {
let text = this.getMsgText() || "";
return text.match(re) || [];
}
}
// export function switchHandle(load: any) {
// let message = load.message;
// switch (true) {
// case /.*/.test(message):
// first(load);
// break;
// case /.*/.test(message):
// second(load);
// break;
// }
// }