-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
176 lines (143 loc) · 4.53 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
'use strict'
const express = require('express')
const bodyParser = require('body-parser')
const request = require('request')
const app = express()
const tokenF = process.env.FB_VERIFY_TOKEN
const access = process.env.FB_ACCESS_TOKEN
app.set('port', (process.env.PORT || 5000))
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())
app.get('/', function(req, res) {
res.send("Hola amigos :v soy un chatbot")
})
//let token = "EAALZAWNaM1jIBAHpmhydvUNMGE3ZAsv9jZBhlXGZBDqOPEPdZACWZANxW6tniJd4MOiGROOUwnVzIGXDJ4elnf5ndeZAM0gPEzUlr3zWhlWg9T8JbZBa71kV3pe3MKBQ4ncF61cOXa4dAjyri5gdvmDDLXdMfHKwpXjB8zZA4OY18AgZDZD"
//Facebook
app.get('/webhook/', function (req, res) {
if (req.query['hub.verify_token'] === tokenF) {
res.send(req.query['hub.challenge'])
res.send("Rigth token")
}
res.send("Wrong token")
})
app.post('/webhook', (req, res) => {
// Parse the request body from the POST
let body = req.body;
// Check the webhook event is from a Page subscription
if (body.object === 'page') {
// Iterate over each entry - there may be multiple if batched
body.entry.forEach(function(entry) {
// Gets the body of the webhook event
let webhook_event = entry.messaging[0];
console.log(webhook_event);
// Get the sender PSID
let sender_psid = webhook_event.sender.id;
console.log('Sender PSID: ' + sender_psid);
// Check if the event is a message or postback and
// pass the event to the appropriate handler function
if (webhook_event.message) {
handleMessage(sender_psid, webhook_event.message);
} else if (webhook_event.postback) {
handlePostback(sender_psid, webhook_event.postback);
}
});
// Return a '200 OK' response to all events
res.status(200).send('EVENT_RECEIVED');
} else {
// Return a '404 Not Found' if event is not from a page subscription
res.sendStatus(404);
}
});
function handleMessage(sender_psid, received_message) {
let response;
// Checks if the message contains text
if (received_message.text) {
// Create the payload for a basic text message, which
// will be added to the body of our request to the Send API
response = {
"text": `Tu enviaste este mensaje: "${received_message.text}". ahora envia una imagen!`
}
} else if (received_message.attachments) {
// Get the URL of the message attachment
let attachment_url = received_message.attachments[0].payload.url;
response = {
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [{
"title": "Esta es la imagen que mandaste?",
"subtitle": "Toca el boton para responder.",
"image_url": attachment_url,
"buttons": [
{
"type": "postback",
"title": "Si!",
"payload": "yes",
},
{
"type": "postback",
"title": "No!",
"payload": "no",
},
{
"type": "postback",
"title": "Puede ser!",
"payload": "ojala",
}
],
}]
}
}
}
}
// Send the response message
callSendAPI(sender_psid, response);
}
function callSendAPI(sender_psid, response) {
// Construct the message body
let request_body = {
"recipient": {
"id": sender_psid
},
"message": response
}
}
function callSendAPI(sender_psid, response) {
// Construct the message body
let request_body = {
"recipient": {
"id": sender_psid
},
"message": response
}
// Send the HTTP request to the Messenger Platform
request({
"uri": "https://graph.facebook.com/v2.6/me/messages",
"qs": { "access_token": access },
"method": "POST",
"json": request_body
}, (err, res, body) => {
if (!err) {
console.log('message sent!')
} else {
console.error("Unable to send message:" + err);
}
});
}
function handlePostback(sender_psid, received_postback) {
let response;
// Get the payload for the postback
let payload = received_postback.payload;
// Set the response based on the postback payload
if (payload === 'yes') {
response = { "text": "Gracias todo correcto!" }
} else if (payload === 'no') {
response = { "text": "Oops, intente con otra imagen ;)." }
}
// Send the message to acknowledge the postback
callSendAPI(sender_psid, response);
}
app.listen(app.get('port'), function() {
console.log(app.get('port'));
})