-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
272 lines (238 loc) · 7.78 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
'use strict';
// Imports dependencies and set up http server
const
express = require('express'),
bodyParser = require('body-parser'),
app = express().use(bodyParser.json()); // creates express http server
var request = require('request');
// Sets server port and logs message on success
console.log("Puerto env: "+process.env.PORT);
app.listen(process.env.PORT || 5000, function(){
console.log('webhook is listening:: '+app.get('port'))
});
// Server index page
app.get("/", function (req, res) {
res.send("Aqui estamos Soficita!!");
});
// Adds support for GET requests to our webhook
app.get('/webhook', (req, res) => {
// Your verify token. Should be a random string.
let VERIFY_TOKEN = process.env.FB_VERIFY_TOKEN;
let ACCESS_TOKEN = process.env.FB_ACCESS_TOKEN;
// Parse the query params
let mode = req.query['hub.mode'];
let token = req.query['hub.verify_token'];
let challenge = req.query['hub.challenge'];
// Checks if a token and mode is in the query string of the request
if (mode && token) {
// Checks the mode and token sent is correct
if (mode === 'subscribe' && token === VERIFY_TOKEN) {
// Responds with the challenge token from the request
res.send(challenge);
console.log('WEBHOOK_VERIFIED');
res.status(200).send(challenge);
} else {
// Responds with '403 Forbidden' if verify tokens do not match
res.sendStatus(403);
}
res.send("No entry! Pruebita :)");
}
});
// Creates the endpoint for our webhook
app.post('/webhook', (req, res) => {
let body = req.body;
console.log('received bot webhook');
// Checks this is an event from a page subscription
if (body.object === 'page') {
// Iterates over each entry - there may be multiple if batched
body.entry.forEach(function(entry) {
var pageID = entry.id;
var timeOfEvent = entry.time;
// Gets the message. entry.messaging is an array, but
// will only ever contain one message, so we get index 0
// Iterate over each messaging event
entry.messaging.forEach(function(event) {
if (event.message) {
console.log("Solo envió mensaje de texto");
//receivedMessage(event);
} else if (event.game_play) {
receivedGameplay(event);
} else {
console.log("Webhook received unknown event: ", event);
}
});
//let webhook_event = entry.messaging[0];
//console.log(webhook_event);
});
// Returns a '200 OK' response to all requests
res.status(200).send('EVENT_RECEIVED');
} else {
// Returns a '404 Not Found' if event is not from a page subscription
res.sendStatus(404);
}
});
//
// Handle messages sent by player directly to the game bot here
//
function receivedMessage(event) {
if (!event.message.is_echo) {
var message = event.message;
var senderId = event.sender.id;
console.log("Received message from senderId: " + senderId);
console.log("Message is: " + JSON.stringify(message));
// You may get a text or attachment but not both
if (message.text) {
var formattedMsg = message.text.toLowerCase().trim();
// If we receive a text message, check to see if it matches any special
// keywords and send back the corresponding movie detail.
// Otherwise, search for new movie.
switch (formattedMsg) {
case "hla!":
case "hola!":
case "hi!":
case "hi":
case "hello":
case "hola":
sendMessageText(senderId, "Hola! Gracias por saludarnos");
break;
default:
sendMessageText(senderId, "Hola! Ahora estamos algo ocupados! Cuéntanos tu duda o consulta. A penas podamos, te responderemos! Que tengas un estupendo día!");
}
} else if (message.attachments) {
sendMessage(senderId, {text: "Sorry. No entiendo lo que quieres decir :("});
}
}
}
//
// Handle game_play (when player closes game) events here.
//
function receivedGameplay(event) {
console.log("Soficita Webhook received gameplay event: ", event);
// Page-scoped ID of the bot user
var senderId = event.sender.id;
// FBInstant player ID
var playerId = event.game_play.player_id;
// FBInstant context ID
var contextId = event.game_play.context_id;
console.log("contextId: "+contextId);
// Check for payload
if (event.game_play.payload) {
//
// The variable payload here contains data set by
// FBInstant.setSessionData()
//
var payload = JSON.parse(event.game_play.payload);
console.log("Payload: "+JSON.stringify(payload));
// In this example, the bot is just "echoing" the message received
// immediately. In your game, you'll want to delay the bot messages
// to remind the user to play 1, 3, 7 days after game play, for example.
console.log("Vamos a enviar un mensaje por que el jugador acaba de salir del juego");
sendMessage(senderId, null, "Quieres jugar de nuevo?", "Jugar!", payload);
}else{
console.log("No hay payload");
sendMessageAux(senderId, null, "Quieres jugar de nuevo?", "Jugar!");
}
}
// sends message to user
function sendMessageText(recipientId, message) {
request({
url: "https://graph.facebook.com/v2.6/me/messages",
qs: {access_token: process.env.PAGE_ACCESS_TOKEN},
method: "POST",
json: {
recipient: {id: recipientId},
message: message,
}
}, function(error, response, body) {
if (error) {
console.log("Error sending message: " + response.error);
}
});
}
//
// Send bot message
//
// player (string) : Page-scoped ID of the message recipient
// context (string): FBInstant context ID. Opens the bot message in a specific context
// message (string): Message text
// cta (string): Button text
// payload (object): Custom data that will be sent to game session
//
function sendMessage(player, context, message, cta, payload) {
var button = {
type: "game_play",
title: cta
};
if (context) {
button.context = context;
}
if (payload) {
button.payload = JSON.stringify(payload);
}
var messageData = {
recipient: {
id: player
},
message: {
attachment: {
type: "template",
payload: {
template_type: "generic",
elements: [
{
title: message,
buttons: [button]
}
]
}
}
}
};
callSendAPI(messageData);
}
function sendMessageAux(player, context, message, cta) {
var button = {
type: "game_play",
title: cta
};
if (context) {
button.context = context;
}
var messageData = {
recipient: {
id: player
},
message: {
attachment: {
type: "template",
payload: {
template_type: "generic",
elements: [
{
title: message,
buttons: [button]
}
]
}
}
}
};
callSendAPI(messageData);
}
function callSendAPI(messageData) {
console.log("A enviar mensaje para que vuelva a jugar!");
var graphApiUrl = 'https://graph.facebook.com/me/messages?access_token='+process.env.FB_ACCESS_TOKEN;
request({
url: graphApiUrl,
method: "POST",
json: true,
body: messageData
}, function (error, response, body){
if (!error) {
console.log('Mensaje enviado!');
} else {
console.error("No se puedo enviar el mensaje:" + error);
}
console.error('Sofi send api returned', 'error', error, 'status code', response.statusCode, 'body', body);
});
}