This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/otouto/plugins/weather.lua
topkecleon 4e0d717adc gMaps.lua -> location.lua
Also moved some stuff from where it shouldn't be.
2016-10-04 13:30:22 -04:00

60 lines
1.7 KiB
Lua

local weather = {}
local HTTP = require('socket.http')
HTTP.TIMEOUT = 2
local JSON = require('dkjson')
local utilities = require('otouto.utilities')
function weather:init(config)
assert(config.owm_api_key,
'weather.lua requires an OpenWeatherMap API key from http://openweathermap.org/API.'
)
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.]]
end
weather.command = 'weather <location>'
function weather:action(msg, config)
local input = utilities.input_from_msg(msg)
if not input then
utilities.send_reply(msg, weather.doc, 'html')
return
end
local lat, lon = utilities.get_coords(input)
if lat == nil then
utilities.send_reply(msg, config.errors.connection)
return
elseif lat == false then
utilities.send_reply(msg, config.errors.results)
return
end
local url = 'http://api.openweathermap.org/data/2.5/weather?APPID=' .. config.owm_api_key .. '&lat=' .. lat .. '&lon=' .. lon
local jstr, res = HTTP.request(url)
if res ~= 200 then
utilities.send_reply(msg, config.errors.connection)
return
end
local jdat = JSON.decode(jstr)
if jdat.cod ~= 200 then
utilities.send_reply(msg, 'Error: City not found.')
return
end
local celsius = string.format('%.2f', jdat.main.temp - 273.15)
local fahrenheit = string.format('%.2f', celsius * (9/5) + 32)
local output = '`' .. celsius .. '°C | ' .. fahrenheit .. '°F, ' .. jdat.weather[1].description .. '.`'
utilities.send_reply(msg, output, true)
end
return weather