-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.js
38 lines (30 loc) · 933 Bytes
/
handler.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
'use strict';
/* eslint-disable no-param-reassign */
const line = require('@line/bot-sdk');
// create LINE SDK config from env variables
const config = {
channelAccessToken: process.env.CHANNEL_ACCESS_TOKEN,
channelSecret: process.env.CHANNEL_SECRET,
};
const client = new line.Client(config);
module.exports.hello = function (context, req) {
Promise
.all(req.body.events.map(handleEvent))
.then((result) => context.res.json(result))
.then(() => context.done())
.catch((err) => {
console.error(err);
res.status(500).end();
});
};
// event handler
function handleEvent(event) {
if (event.type !== 'message' || event.message.type !== 'text') {
// ignore non-text-message event
return Promise.resolve(null);
}
// create a echoing text message
const echo = { type: 'text', text: event.message.text };
// use reply API
return client.replyMessage(event.replyToken, echo);
}