This repository was archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.py
49 lines (42 loc) · 1.99 KB
/
api.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 requests
from flask import Flask, jsonify, url_for, redirect, request
from flask_pymongo import PyMongo
from flask_restful import Api, Resource
from chatbot import chat_response
app = Flask(__name__)
app.config['MONGO_HOST'] = 'mongo'
app.config['MONGO_PORT'] = 27017
app.config["MONGO_DBNAME"] = "gary_db"
app.config['DEBUG'] = True
app.config['TEMPLATES_AUTO_RELOAD'] = True
mongo = PyMongo(app, config_prefix='MONGO')
class GaryBotResponse(Resource):
@staticmethod
def get(user_id=None, channel=None, command=None):
if user_id and channel and command:
rep = chat_response(command, user_id)
print rep
if rep and 'exec' in rep:
cmd = mongo.db.config.find_one({"name": rep.split(' ', 1)[1]})
if cmd and cmd['name'] and cmd['type'] == "api":
try:
r = requests.get(cmd['url']).json()
if r and cmd and 'success' in cmd:
return {"response": {"message": cmd['success']}}
else:
return {"response": {"message": r['response']}}
except ValueError:
print "nlp: can't decode json from home api, might be down"
return {"response": {"message": "Hum, connection error with your home installation"}}
else:
return {"response": {"message": "Error between intent conf and config collection."}}
elif rep:
return {"response": {"message": rep}}
else:
return {"response": {"message": "Please repeat, I don't understand ? :robot_face:"}}
else:
return {"response": {"message": "I need user_id, channel and messages to response"}}
api = Api(app)
api.add_resource(GaryBotResponse, "/api/message/<string:user_id>/<string:channel>/<string:command>/", endpoint="message")
if __name__ == "__main__":
app.run(debug=True, host='0.0.0.0')