-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.py
409 lines (316 loc) · 12.1 KB
/
app.py
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
import os
import sys
import json
import requests
from flask import Flask, request
app = Flask(__name__)
@app.route('/', methods=['GET'])
def verify():
# when the endpoint is registered as a webhook, it must echo back
# the 'hub.challenge' value it receives in the query arguments
if request.args.get("hub.mode") == "subscribe" and request.args.get("hub.challenge"):
if not request.args.get("hub.verify_token") == os.environ["VERIFY_TOKEN"]:
return "Verification token mismatch", 403
return request.args["hub.challenge"], 200
return "Hello world", 200
@app.route('/', methods=['POST'])
def webhook():
# endpoint for processing incoming messaging events
data = request.get_json()
log(data) # you may not want to log every incoming message in production, but it's good for testing
if data["object"] == "page": # make sure this is a page subscription
for entry in data["entry"]:
for messaging_event in entry["messaging"]:
if messaging_event.get("message"): # someone sent us a message
received_message(messaging_event)
elif messaging_event.get("delivery"): # delivery confirmation
pass
# received_delivery_confirmation(messaging_event)
elif messaging_event.get("optin"): # optin confirmation
pass
# received_authentication(messaging_event)
elif messaging_event.get("postback"): # user clicked/tapped "postback" button in earlier message
received_postback(messaging_event)
else: # uknown messaging_event
log("Webhook received unknown messaging_event: " + messaging_event)
return "ok", 200
def received_message(event):
sender_id = event["sender"]["id"] # the facebook ID of the person sending you the message
recipient_id = event["recipient"]["id"] # the recipient's ID, which should be your page's facebook ID
# could receive text or attachment but not both
if "text" in event["message"]:
message_text = event["message"]["text"]
# parse message_text and give appropriate response
if message_text == 'image':
send_image_message(sender_id)
elif message_text == 'file':
send_file_message(sender_id)
elif message_text == 'audio':
send_audio_message(sender_id)
elif message_text == 'video':
send_video_message(sender_id)
elif message_text == 'button':
send_button_message(sender_id)
elif message_text == 'generic':
send_generic_message(sender_id)
elif message_text == 'share':
send_share_message(sender_id)
else: # default case
send_text_message(sender_id, "Echo: " + message_text)
elif "attachments" in event["message"]:
message_attachments = event["message"]["attachments"]
send_text_message(sender_id, "Message with attachment received")
# Message event functions
def send_text_message(recipient_id, message_text):
# encode('utf-8') included to log emojis to heroku logs
log("sending message to {recipient}: {text}".format(recipient=recipient_id, text=message_text.encode('utf-8')))
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"text": message_text
}
})
call_send_api(message_data)
def send_generic_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [{
"title": "rift",
"subtitle": "Next-generation virtual reality",
"item_url": "https://www.oculus.com/en-us/rift/",
"image_url": "http://messengerdemo.parseapp.com/img/rift.png",
"buttons": [{
"type": "web_url",
"url": "https://www.oculus.com/en-us/rift/",
"title": "Open Web URL"
}, {
"type": "postback",
"title": "Call Postback",
"payload": "Payload for first bubble",
}],
}, {
"title": "touch",
"subtitle": "Your Hands, Now in VR",
"item_url": "https://www.oculus.com/en-us/touch/",
"image_url": "http://messengerdemo.parseapp.com/img/touch.png",
"buttons": [{
"type": "web_url",
"url": "https://www.oculus.com/en-us/touch/",
"title": "Open Web URL"
}, {
"type": "postback",
"title": "Call Postback",
"payload": "Payload for second bubble",
}]
}]
}
}
}
})
log("sending template with choices to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_image_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"image",
"payload":{
"url":"http://i.imgur.com/76rJlO9.jpg"
}
}
}
})
log("sending image to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_file_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"file",
"payload":{
"url":"http://ee.usc.edu/~redekopp/ee355/EE355_Syllabus.pdf"
}
}
}
})
log("sending file to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_audio_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"audio",
"payload":{
"url":"http://www.stephaniequinn.com/Music/Allegro%20from%20Duet%20in%20C%20Major.mp3"
}
}
}
})
log("sending audio to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_video_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"video",
"payload":{
"url":"http://techslides.com/demos/sample-videos/small.mp4"
}
}
}
})
log("sending video to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_button_message(recipient_id):
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"template",
"payload":{
"template_type":"button",
"text":"What do you want to do next?",
"buttons":[
{
"type":"web_url",
"url":"https://www.google.com",
"title":"Google"
},
{
"type":"postback",
"title":"Call Postback",
"payload":"Payload for send_button_message()"
}
]
}
}
}
})
log("sending button to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def send_share_message(recipient_id):
# Share button only works with Generic Template
message_data = json.dumps({
"recipient": {
"id": recipient_id
},
"message": {
"attachment": {
"type":"template",
"payload":{
"template_type":"generic",
"elements":[
{
"title":"Reddit link",
"subtitle":"Something funny or interesting",
"image_url":"https://pbs.twimg.com/profile_images/667516091330002944/wOaS8FKS.png",
"buttons":[
{
"type":"element_share"
}
]
}
]
}
}
}
})
log("sending share button to {recipient}: ".format(recipient=recipient_id))
call_send_api(message_data)
def received_postback(event):
sender_id = event["sender"]["id"] # the facebook ID of the person sending you the message
recipient_id = event["recipient"]["id"] # the recipient's ID, which should be your page's facebook ID
# The payload param is a developer-defined field which is set in a postback
# button for Structured Messages
payload = event["postback"]["payload"]
log("received postback from {recipient} with payload {payload}".format(recipient=recipient_id, payload=payload))
if payload == 'Get Started':
# Get Started button was pressed
send_text_message(sender_id, "Welcome to SoCal Echo Bot! Anything you type will be echoed back to you, except for some keywords.")
else:
# Notify sender that postback was successful
send_text_message(sender_id, "Postback called")
def call_send_api(message_data):
params = {
"access_token": os.environ["PAGE_ACCESS_TOKEN"]
}
headers = {
"Content-Type": "application/json"
}
r = requests.post("https://graph.facebook.com/v2.6/me/messages", params=params, headers=headers, data=message_data)
if r.status_code != 200:
log(r.status_code)
log(r.text)
def log(message): # simple wrapper for logging to stdout on heroku
print str(message)
sys.stdout.flush()
# @app.route('/', methods=['POST'])
# def set_greeting_text():
# # Sets greeting text on welcome screen
# message_data = json.dumps({
# "setting_type":"greeting",
# "greeting":{
# "text":"Hi {{user_first_name}}, welcome to this bot."
# }
# })
# params = {
# "access_token": os.environ["PAGE_ACCESS_TOKEN"]
# }
# headers = {
# "Content-Type": "application/json"
# }
# r = requests.post("https://graph.facebook.com/v2.6/me/thread_settings", params=params, headers=headers, data=message_data)
# if r.status_code != 200:
# log("setting greeting text")
# log(r.status_code)
# log(r.text)
# return "ok", 200
# @app.route('/', methods=['POST'])
# def set_get_started_button():
# # Sets get started button on welcome screen
# message_data = json.dumps({
# "setting_type":"call_to_actions",
# "thread_state":"new_thread",
# "call_to_actions":[
# {
# "payload":"Get Started"
# }
# ]
# })
# params = {
# "access_token": os.environ["PAGE_ACCESS_TOKEN"]
# }
# headers = {
# "Content-Type": "application/json"
# }
# r = requests.post("https://graph.facebook.com/v2.6/me/thread_settings", params=params, headers=headers, data=message_data)
# if r.status_code != 200:
# log("setting get started button")
# log(r.status_code)
# log(r.text)
# return "ok", 200
if __name__ == '__main__':
app.run(debug=True)