2016-04-11 06:04:47 +02:00
|
|
|
local weather = {}
|
|
|
|
|
|
|
|
local HTTP = require('socket.http')
|
|
|
|
local JSON = require('cjson')
|
|
|
|
local bindings = require('bindings')
|
|
|
|
local utilities = require('utilities')
|
|
|
|
|
|
|
|
function weather:init()
|
|
|
|
if not self.config.owm_api_key then
|
|
|
|
print('Missing config value: owm_api_key.')
|
|
|
|
print('weather.lua will not be enabled.')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
weather.triggers = utilities.triggers(self.info.username):t('weather', true).table
|
2015-11-25 03:22:04 +01:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
weather.command = 'weather <location>'
|
|
|
|
weather.doc = [[```
|
2016-01-08 14:44:37 +01:00
|
|
|
/weather <location>
|
|
|
|
Returns the current weather conditions for a given location.
|
|
|
|
```]]
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function weather:action(msg)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
local input = utilities.input(msg.text)
|
2015-07-03 00:15:52 +02:00
|
|
|
if not input then
|
2015-11-25 03:22:04 +01:00
|
|
|
if msg.reply_to_message and msg.reply_to_message.text then
|
|
|
|
input = msg.reply_to_message.text
|
|
|
|
else
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendMessage(self, msg.chat.id, weather.doc, true, msg.message_id, true)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local coords = utilities.get_coords(self, input)
|
2015-11-25 03:22:04 +01:00
|
|
|
if type(coords) == 'string' then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, coords)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local url = 'http://api.openweathermap.org/data/2.5/weather?APPID=' .. self.config.owm_api_key .. '&lat=' .. coords.lat .. '&lon=' .. coords.lon
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
|
|
local jstr, res = HTTP.request(url)
|
|
|
|
if res ~= 200 then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2015-11-25 03:22:04 +01:00
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
local jdat = JSON.decode(jstr)
|
2016-02-14 09:47:02 +01:00
|
|
|
if jdat.cod ~= 200 then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, 'Error: City not found.')
|
2016-02-14 09:47:02 +01:00
|
|
|
return
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
local celsius = string.format('%.2f', jdat.main.temp - 273.15)
|
|
|
|
local fahrenheit = string.format('%.2f', celsius * (9/5) + 32)
|
|
|
|
local message = celsius .. '°C | ' .. fahrenheit .. '°F, ' .. jdat.weather[1].description .. '.'
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, message)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return weather
|