-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
107 lines (94 loc) · 3.12 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
"use strict";
var express = require("express");
var bodyParser = require("body-parser");
var request = require("request");
var secret = require("./secret.json");
var app = express();
app.set('port', (process.env.PORT || 5000));
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());
var token = secret.app_token;
var password = secret.app_secret;
//Routes
app.get('/', function (req, res) {
res.send("I am a chatbot");
});
//Facebook
app.get('/webhook/', function (req, res) {
if (req.query['hub.verify_token'] === password) {
return res.send(req.query['hub.challenge']);
} else {
res.send("Wrong token");
}
});
app.post('/webhook/', function (req, res) {
let messaging_events = req.body.entry[0].messaging
for (let i = 0; i < messaging_events.length; i++) {
let event = messaging_events[i]
let sender = event.sender.id
if (event.message && event.message.text) {
let text = event.message.text;
decideMessage(sender, text);
}
}
res.sendStatus(200);
});
function decideMessage(sender, text1) {
let text = text1.toLowerCase();
if (text.includes('download')) {
console.log("Download button sent");
sendButtonMessage(sender);
} else if (text.includes('problem') || text.includes('bad')) {
console.log("bad sent");
sendText(sender,"Hi i am a bot, We are sorry for your bad expirience. A member of our team will respond soon.");
} else {
console.log("Default case sent");
sendText(sender,"Hi i am a bot, A member from our team will get back to you shortly");
}
}
function sendButtonMessage(sender) {
let messageData = {
"attachment": {
"type": "template",
"payload": {
"template_type": "button",
"text": "Download our app from here",
"buttons": [
{
"type": "web_url",
"url": "https://play.google.com/store/apps/details?id=com.zcorp.game.othello&hl=en",
"title": "Othello",
"webview_height_ratio": "full",
"messenger_extensions": true,
},
]
}
}
};
sendRequest(sender,messageData);
}
function sendText(sender, text) {
let messageData = {text: text};
sendRequest(sender, messageData);
}
function sendRequest(sender, messageData) {
request({
url: "https://graph.facebook.com/v2.6/me/messages",
qs: {access_token: token},
method: "POST",
json: {
recipient: {id: sender},
message: messageData,
}
}, function (error, response, body) {
if (error) {
console.log("sending error: "+ JSON.stringify(error));
} else if (response.body.error) {
console.log("response body error: "+JSON.stringify(response.body.error));
console.log("body: "+ JSON.stringify(body));
}
});
}
app.listen(app.get('port'), function (req, res) {
console.log("Server listening on port 5000");
});