-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
114 lines (92 loc) · 4.02 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
# Python libraries that we need to import for our bot
import random
import re
from flask import Flask, request
from pymessenger.bot import Bot
from live_bot import LiveBot
import os
import sys
import json
from datetime import datetime
import psycopg2
app = Flask(__name__)
#ACCESS_TOKEN = 'ACCESS_TOKEN' different for each app#
ACCESS_TOKEN = os.environ['ACCESS_TOKEN']
#VERIFY_TOKEN = 'VERIFY_TOKEN' #
VERIFY_TOKEN = os.environ['VERIFY_TOKEN']
bot = Bot(ACCESS_TOKEN)
livebot = LiveBot()
# We will receive messages that Facebook sends our bot at this endpoint
@app.route("/", methods=['GET', 'POST'])
def receive_message():
if request.method == 'GET':
"""Before allowing people to message your bot, Facebook has implemented a verify token
that confirms all requests that your bot receives came from Facebook."""
token_sent = request.args.get("hub.verify_token")
return verify_fb_token(token_sent)
# if the request was not get, it must be POST and we can just proceed with sending a message back to user
else:
# get whatever message a user sent the bot
output = request.get_json()
log(output)
for event in output['entry']:
messaging = event['messaging']
for message in messaging:
if message.get('message'):
# Facebook Messenger ID for user so we know where to send response back to
recipient_id = message['sender']['id']
send_isTyping(recipient_id)
if message['message'].get('text'):
if message['message'].get('text') == "file test":
send_file(recipient_id)
else:
response_sent_text = livebot.chat(message['message'].get('text'))
send_message(recipient_id, response_sent_text)
# if user sends us a GIF, photo,video, or any other non-text item
if message['message'].get('attachments'):
response_sent_nontext = livebot.chat('something else')
send_message(recipient_id, response_sent_nontext)
return "Message Processed"
def verify_fb_token(token_sent):
# take token sent by facebook and verify it matches the verify token you sent
# if they match, allow the request, else return an error
if token_sent == VERIFY_TOKEN:
return request.args.get("hub.challenge")
return 'Invalid verification token'
# chooses a random message to send to the user
def get_message():
sample_responses = ["You are stunning!", "We're proud of you.",
"Keep on being you!", "We're greatful to know you :)"]
# return selected item to the user
return random.choice(sample_responses)
# uses PyMessenger to send response to user
def send_message(recipient_id, response):
# sends user the text message provided via input response parameter
bot.send_text_message(recipient_id, response)
return "success"
def send_file(recipient_id):
# sends user the text message provided via input response parameter
bot.send_file_url(recipient_id , "http://pdf.oac.cdlib.org/pdf/hoover/mboya.pdf")
return "success"
def send_isTyping(recipient_id):\
# sends user the text message provided via input response parameter
bot.send_action(recipient_id,'typing_on') #.send_text_message(recipient_id, response)
return "success"
def log(msg, *args, **kwargs): # simple wrapper for logging to stdout on heroku
try:
if type(msg) is dict:
msg = json.dumps(msg)
else:
msg = str(msg).format(*args, **kwargs)
print (u"{}: {}".format(datetime.now(), msg))
except UnicodeEncodeError:
pass # squash logging errors in case of non-ascii text
sys.stdout.flush()
def dbConnect():
pass
#DATABASE_URL = os.environ['DATABASE_URL']
#conn = psycopg2.connect(DATABASE_URL, sslmode='require')
def addUser(recipient_id):
pass
if __name__ == "__main__":
app.run()