forked from xVir/apiai-python-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
executable file
·165 lines (135 loc) · 4.75 KB
/
app.py
File metadata and controls
executable file
·165 lines (135 loc) · 4.75 KB
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
#!/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():
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") != "owmWeatherForecast":
return {}
baseurl = "http://api.openweathermap.org/data/2.5/"
owm_query = makeOwmQuery(req)
if owm_query is None:
return {}
owm_url = baseurl + owm_query + "&APPID=f111102076d1eba55c555133233e0308"
print(owm_url)
result = urllib.urlopen(owm_url).read()
print("owm result: ")
print(result)
data = json.loads(result)
res = makeWebhookResult(data)
return res
def makeOwmQuery(req):
result = req.get("result")
parameters = result.get("parameters")
country = parameters.get("geo-country")
city = parameters.get("geo-city")
date = parameters.get("date")
if city is not None:
location = city
elif country is not None:
location = country
else:
return None
#TODO: forecast-->forecast?q={city name}
return "weather?q=" + location
def makeWebhookResult(data):
weather = data.get('weather')
if weather is None:
return {}
main = data.get('main')
if main is None:
return {}
temp_min = main.get('temp_min') - 273.15
temp_max = main.get('temp_max') - 273.15
temp = main.get('temp') - 273.15
description = weather[0].get('description')
location = data.get('name')
# print(json.dumps(item, indent=4))
speech = "Currently in " + location + ", it is " + str(temp) + " degree with " + description + ". " + "Today, you can expect the highest "+ str(temp_max) + " degree and the lowest " + str(temp_min) + " degree."
## "Tomorrow in Sg, you will see {}, and can expect the highest {} degree and lowest {} degree."
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')