forked from swapagarwal/JARVIS-on-Messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jarvis.py
49 lines (42 loc) · 1.62 KB
/
jarvis.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
import config
from flask import Flask, request
import json
import os
import requests
import modules
ACCESS_TOKEN = os.environ.get('ACCESS_TOKEN', config.ACCESS_TOKEN)
VERIFY_TOKEN = os.environ.get('VERIFY_TOKEN', config.VERIFY_TOKEN)
app = Flask(__name__)
@app.route('/')
def about():
return 'Just A Rather Very Intelligent System, now on Messenger!'
@app.route('/process/')
def process():
return json.dumps(modules.process_query(request.args.get('q')))
@app.route('/search/')
def search():
return json.dumps(modules.search(request.args.get('q')))
@app.route('/webhook/', methods=['GET', 'POST'])
def webhook():
if request.method == 'POST':
data = request.get_json(force=True)
messaging_events = data['entry'][0]['messaging']
for event in messaging_events:
sender = event['sender']['id']
if 'message' in event and 'text' in event['message']:
text = event['message']['text']
payload = {
'recipient': {
'id': sender
},
'message': modules.search(text)
}
r = requests.post('https://graph.facebook.com/v2.6/me/messages', params={'access_token': ACCESS_TOKEN}, json=payload)
return '' # 200 OK
elif request.method == 'GET': # Verification
if request.args.get('hub.verify_token') == VERIFY_TOKEN:
return request.args.get('hub.challenge')
else:
return 'Error, wrong validation token'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 5000)), debug=True)