forked from xVir/apiai-python-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
executable file
·172 lines (138 loc) · 4.78 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
#!/usr/bin/env python
import urllib
import json
import os
from flask import Flask
from flask import request
from flask import make_response
# Flask app should start in global layout
app = Flask(__name__)
@app.route('/webhook', methods=['POST'])
def webhook():
# return "Hello World"
req = request.get_json(silent=True, force=True)
print("Request:")
print(json.dumps(req, indent=4))
res = processRequest(req)
res = json.dumps(res, indent=4)
# print(res)
r = make_response(res)
r.headers['Content-Type'] = 'application/json'
return r
def processRequest(req):
# if req.get("result").get("action") != "yahooWeatherForecast":
if req["result"]["action"] != "yahooWeatherForecast":
return {}
baseurl = "https://query.yahooapis.com/v1/public/yql?"
print("Yahoo BaseURL:" + baseurl)
yql_query = makeYqlQuery(req)
print("Yahoo Query:" + yql_query)
if yql_query is None:
return {}
print("Before url encoding")
print("Encoding some dumb thing: " + urllib.urlencode("test"))
yql_url = baseurl + urllib.urlencode({'q': yql_query}) + "&format=json"
print("After url encoding")
print(yql_url)
result = urllib.urlopen(yql_url).read()
print("yql result: ")
print(result)
data = json.loads(result)
res = makeWebhookResult(data)
return res
def makeYqlQuery(req):
result = req["result"]
parameters = result["parameters"]
city = parameters["geo-city"]
print("In makeYqlQuery: City: " + city)
if city is None:
return None
return "select * from weather.forecast where woeid in (select woeid from geo.places(1) where text='" + city + "')"
def makeWebhookResult(data):
query = data['query']
if query is None:
return {}
result = query['results']
if result is None:
return {}
channel = result['channel']
if channel is None:
return {}
item = channel['item']
location = channel['location']
units = channel['units']
if (location is None) or (item is None) or (units is None):
return {}
condition = item['condition']
if condition is None:
return {}
# print(json.dumps(item, indent=4))
speech = "Today in " + location['city'] + ": " + condition['text'] + \
", the temperature is " + condition['temp'] + " " + units['temperature']
print("Response:")
print(speech)
slack_message = {
"text": speech,
"attachments": [
{
"title": channel.get('title'),
"title_link": channel.get('link'),
"color": "#36a64f",
"fields": [
{
"title": "Condition",
"value": "Temp " + condition.get('temp') +
" " + units.get('temperature'),
"short": "false"
},
{
"title": "Wind",
"value": "Speed: " + channel.get('wind').get('speed') +
", direction: " + channel.get('wind').get('direction'),
"short": "true"
},
{
"title": "Atmosphere",
"value": "Humidity " + channel.get('atmosphere').get('humidity') +
" pressure " + channel.get('atmosphere').get('pressure'),
"short": "true"
}
],
"thumb_url": "http://l.yimg.com/a/i/us/we/52/" + condition.get('code') + ".gif"
}
]
}
facebook_message = {
"attachment": {
"type": "template",
"payload": {
"template_type": "generic",
"elements": [
{
"title": channel.get('title'),
"image_url": "http://l.yimg.com/a/i/us/we/52/" + condition.get('code') + ".gif",
"subtitle": speech,
"buttons": [
{
"type": "web_url",
"url": channel.get('link'),
"title": "View Details"
}
]
}
]
}
}
}
print(json.dumps(slack_message))
return {
"speech": speech,
"displayText": speech,
"data": {"slack": slack_message, "facebook": facebook_message},
# "contextOut": [],
"source": "apiai-weather-webhook-sample"
}
if __name__ == '__main__':
port = int(os.getenv('PORT', 5000))
print("Starting app on port %d" % port)
app.run(debug=False, port=port, host='0.0.0.0')