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/location.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

44 lines
1.0 KiB
Lua

local gMaps = {}
local bindings = require('otouto.bindings')
local utilities = require('otouto.utilities')
gMaps.command = 'location <query>'
function gMaps:init(config)
gMaps.triggers = utilities.triggers(self.info.username, config.cmd_pat)
:t('location', true):t('loc', true).table
gMaps.doc = [[
/location <query>
Returns a location from Google Maps.
Alias: /loc
]]
gMaps.doc = gMaps.doc:gsub('/', config.cmd_pat)
end
function gMaps:action(msg, config)
local input = utilities.input_from_msg(msg)
if not input then
utilities.send_reply(msg, gMaps.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
bindings.sendLocation{
chat_id = msg.chat.id,
latitude = lat,
longitude = lon,
reply_to_message_id = msg.message_id
}
end
return gMaps