generated from mochan-tk/Handson-LINE-Bot-Azure-GitHub-v4
-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.js
445 lines (421 loc) · 13.3 KB
/
index.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
'use strict';
const line = require('@line/bot-sdk');
const express = require('express');
const crypto = require("crypto");
const { BlobServiceClient } = require("@azure/storage-blob");
const { CosmosClient } = require("@azure/cosmos");
// Azure Storage
const blobServiceClient = BlobServiceClient.fromConnectionString(process.env.STORAGE_CONNECTION_STRING);
const containerClient = blobServiceClient.getContainerClient('files');
// Azure Cosmos DB
//https://docs.microsoft.com/en-us/azure/cosmos-db/sql/sql-api-nodejs-get-started
//https://docs.microsoft.com/en-us/azure/cosmos-db/sql/sql-api-nodejs-application
const cosmosDBConfig = {
endpoint: process.env.COSMOSDB_ACCOUNT,
key: process.env.COSMOSDB_KEY,
databaseId: process.env.COSMOSDB_DATABASENAME,
containerId: process.env.COSMOSDB_CONTAINERNAME
};
const { endpoint, key, databaseId, containerId } = cosmosDBConfig;
const cosmosDBClient = new CosmosClient({ endpoint, key });
const database = cosmosDBClient.database(databaseId);
const cosmosDBContainer = database.container(containerId);
// create LINE SDK config from env variables
const config = {
channelSecret: process.env.CHANNEL_SECRET,
};
// create LINE SDK client
const client = new line.messagingApi.MessagingApiClient({
channelAccessToken: process.env.CHANNEL_ACCESS_TOKEN
});
const blobClient = new line.messagingApi.MessagingApiBlobClient({
channelAccessToken: process.env.CHANNEL_ACCESS_TOKEN,
});
// create Express app
// about Express itself: https://expressjs.com/
const app = express();
// serve static and downloaded files
// app.use(`/${BASE_PUBLIC_DIR}`, express.static(BASE_PUBLIC_DIR));
// register a webhook handler with middleware
// about the middleware, please refer to doc
app.post('/callback', line.middleware(config), (req, res) => {
console.log('start');
Promise
.all(req.body.events.map(handleEvent))
.then((result) => res.json(result))
.catch((err) => {
console.error(err);
res.status(500).end();
});
});
// event handler
async function handleEvent(event) {
const userId = event.source.userId;
if (event.type !== 'message' && event.type !== 'postback') {
// ignore non-text-message event
return Promise.resolve(null);
} else if (event.type === 'postback') {
if (event.postback.data === 'sticker') {
//https://developers.line.biz/ja/reference/messaging-api/#sticker-message
//https://developers.line.biz/ja/docs/messaging-api/sticker-list/#sticker-definitions
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'sticker',
packageId: "11537",
stickerId: "52002735"
}]
});
}
} else if (event.message.type === 'text') {
if (event.message.text === 'flex') {
//https://developers.line.biz/ja/reference/messaging-api/#flex-message
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'flex',
altText: 'item list',
contents: flexMsg
}]
});
} else if (event.message.text === 'quick') {
//https://developers.line.biz/ja/reference/messaging-api/#quick-reply
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'text',
text: 'ステッカー欲しいですか❓YesかNoで答えてください, もしくは素敵な写真送って❗️',
"quickReply": {
"items": [
{
"type": "action",
"action": {
"type":"postback",
"label":"Yes",
"data": "sticker",
"displayText":"ステッカーください❗️"
}
},
{
"type": "action",
"action": {
"type":"message",
"label":"No",
"text":"不要。"
}
},
{
"type": "action",
"action": {
"type": "camera",
"label": "camera"
}
}
]
}
}]
});
}
// } else if (event.message.text === 'マスク検査') {
// const newItem = {
// id: userId,
// maskflag: "on",
// };
// const { resource: createdItem } = await cosmosDBContainer.items.upsert(newItem);
// return client.replyMessage({
// replyToken: event.replyToken,
// messages: [{
// type: 'text',
// text: 'マスク着用の検査を行います。カメラを起動し顔を撮影して送ってください。📷',
// "quickReply": {
// "items": [
// {
// "type": "action",
// "action": {
// "type": "camera",
// "label": "camera"
// }
// }
// ]
// }
// }]
// });
// }
} else if (event.message.type === 'image') {
//https://developers.line.biz/ja/reference/messaging-api/#image-message
const blobName = `${crypto.randomBytes(20).toString('hex')}.jpg`;
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
const stream = await blobClient.getMessageContent(event.message.id);
const data = await getStreamData(stream);
const res = blockBlobClient.uploadData(data);
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'image',
originalContentUrl: `https://${blobServiceClient.accountName}.blob.core.windows.net/files/${blobName}`,
previewImageUrl: `https://${blobServiceClient.accountName}.blob.core.windows.net/files/${blobName}`
}]
});
} else if (event.message.type === 'audio') {
//https://developers.line.biz/ja/reference/messaging-api/#audio-message
//durationはこれでとれそう? > https://www.npmjs.com/package/mp3-duration
const blobName = `${crypto.randomBytes(20).toString('hex')}.mp3`;
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
const stream = await blobClient.getMessageContent(event.message.id);
const data = await getStreamData(stream);
const res = blockBlobClient.uploadData(data);
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'audio',
originalContentUrl: `https://${blobServiceClient.accountName}.blob.core.windows.net/files/${blobName}`,
duration: 60000
}]
});
} else if (event.message.type === 'location') {
//https://developers.line.biz/ja/reference/messaging-api/#location-message
return client.replyMessage({
replyToken: event.replyToken,
messages: [{
type: 'location',
title: 'my location',
address: event.message.address,
latitude: event.message.latitude,
longitude: event.message.longitude
}]
});
}
// // Insert
// const newItem = {
// id: userId,
// category: "fun",
// name: "Cosmos DB",
// description: "Complete Cosmos DB Node.js Quickstart ⚡",
// isComplete: false
// };
// const { resource: createdItem } = await cosmosDBContainer.items.create(newItem);
// // Query
// const querySpec = {
// query: `SELECT * from c WHERE c.id="${userId}"`
// };
// const { resources: items } = await cosmosDBContainer.items
// .query(querySpec)
// .fetchAll();
// let description;
// items.forEach(item => {
// description = item.description;
// });
// // Update
// const changeItem = {
// id: userId,
// category: "fun",
// name: "Cosmos DB",
// description: "Complete Cosmos DB Node.js Quickstart ⚡",
// isComplete: true
// };
// const { resource: updatedItem } = await cosmosDBContainer
// .item(userId)
// .replace(changeItem);
// const echo = { type: 'text', text: description };
// create a echoing text message
const echo = { type: 'text', text: event.message.text };
// use reply API
return client.replyMessage({
replyToken: event.replyToken,
messages: [echo],
});
}
const getStreamData = async (stream) => {
return new Promise(resolve => {
let result = [];
stream.on("data", (chunk) => {
result.push(Buffer.from(chunk));
});
stream.on("end", () => {
resolve(Buffer.concat(result));
});
});
}
//https://developers.line.biz/flex-simulator/
const flexMsg = {
"type": "carousel",
"contents": [
{
"type": "bubble",
"hero": {
"type": "image",
"size": "full",
"aspectRatio": "20:13",
"aspectMode": "cover",
"url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/01_5_carousel.png"
},
"body": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "text",
"text": "Arm Chair, White",
"wrap": true,
"weight": "bold",
"size": "xl"
},
{
"type": "box",
"layout": "baseline",
"contents": [
{
"type": "text",
"text": "$49",
"wrap": true,
"weight": "bold",
"size": "xl",
"flex": 0
},
{
"type": "text",
"text": ".99",
"wrap": true,
"weight": "bold",
"size": "sm",
"flex": 0
}
]
}
]
},
"footer": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "button",
"style": "primary",
"action": {
"type": "uri",
"label": "Add to Cart",
"uri": "https://linecorp.com"
}
},
{
"type": "button",
"action": {
"type": "uri",
"label": "Add to wishlist",
"uri": "https://linecorp.com"
}
}
]
}
},
{
"type": "bubble",
"hero": {
"type": "image",
"size": "full",
"aspectRatio": "20:13",
"aspectMode": "cover",
"url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/01_6_carousel.png"
},
"body": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "text",
"text": "Metal Desk Lamp",
"wrap": true,
"weight": "bold",
"size": "xl"
},
{
"type": "box",
"layout": "baseline",
"flex": 1,
"contents": [
{
"type": "text",
"text": "$11",
"wrap": true,
"weight": "bold",
"size": "xl",
"flex": 0
},
{
"type": "text",
"text": ".99",
"wrap": true,
"weight": "bold",
"size": "sm",
"flex": 0
}
]
},
{
"type": "text",
"text": "Temporarily out of stock",
"wrap": true,
"size": "xxs",
"margin": "md",
"color": "#ff5551",
"flex": 0
}
]
},
"footer": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "button",
"flex": 2,
"style": "primary",
"color": "#aaaaaa",
"action": {
"type": "uri",
"label": "Add to Cart",
"uri": "https://linecorp.com"
}
},
{
"type": "button",
"action": {
"type": "uri",
"label": "Add to wish list",
"uri": "https://linecorp.com"
}
}
]
}
},
{
"type": "bubble",
"body": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "button",
"flex": 1,
"gravity": "center",
"action": {
"type": "uri",
"label": "See more",
"uri": "https://linecorp.com"
}
}
]
}
}
]
}
// listen on port
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`listening on ${port}`);
});