2016-04-11 06:04:47 +02:00
|
|
|
local weather = {}
|
|
|
|
|
|
|
|
local HTTP = require('socket.http')
|
2016-04-15 21:07:23 +02:00
|
|
|
local JSON = require('dkjson')
|
2016-04-11 06:04:47 +02:00
|
|
|
local utilities = require('utilities')
|
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
function weather:init(config)
|
|
|
|
if not config.owm_api_key then
|
2016-04-11 06:04:47 +02:00
|
|
|
print('Missing config value: owm_api_key.')
|
|
|
|
print('weather.lua will not be enabled.')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-05-27 05:28:44 +02:00
|
|
|
weather.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('weather', true).table
|
|
|
|
weather.doc = [[```
|
|
|
|
]]..config.cmd_pat..[[weather <location>
|
|
|
|
Returns the current weather conditions for a given location.
|
|
|
|
```]]
|
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>'
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
function weather:action(msg, config)
|
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-05-29 19:08:39 +02:00
|
|
|
utilities.send_message(self, msg.chat.id, weather.doc, true, msg.message_id, true)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-27 02:59:45 +02:00
|
|
|
local coords = utilities.get_coords(input, config)
|
2015-11-25 03:22:04 +01:00
|
|
|
if type(coords) == 'string' then
|
2016-05-29 19:08:39 +02:00
|
|
|
utilities.send_reply(self, msg, coords)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
local url = 'http://api.openweathermap.org/data/2.5/weather?APPID=' .. 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-05-27 02:26:30 +02:00
|
|
|
utilities.send_reply(self, msg, 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-05-29 19:08:39 +02:00
|
|
|
utilities.send_reply(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)
|
2016-04-28 20:27:22 +02:00
|
|
|
local output = '`' .. celsius .. '°C | ' .. fahrenheit .. '°F, ' .. jdat.weather[1].description .. '.`'
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-05-29 19:08:39 +02:00
|
|
|
utilities.send_reply(self, msg, output, true)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return weather
|