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/gMaps.lua

40 lines
983 B
Lua
Raw Normal View History

local gMaps = {}
2016-06-07 06:31:34 +02:00
local bindings = require('otouto.bindings')
local utilities = require('otouto.utilities')
gMaps.command = 'location <query>'
function gMaps:init(config)
2016-08-14 04:46:18 +02:00
gMaps.triggers = utilities.triggers(self.info.username, config.cmd_pat)
:t('location', true):t('loc', true).table
gMaps.doc = [[
2016-08-14 04:26:44 +02:00
/location <query>
Returns a location from Google Maps.
2016-08-14 04:26:44 +02:00
Alias: /loc
2016-08-14 04:46:18 +02:00
]]
gMaps.doc = gMaps.doc:gsub('/', config.cmd_pat)
end
2015-07-03 00:15:52 +02:00
2016-05-27 02:26:30 +02:00
function gMaps:action(msg, config)
2016-08-14 04:46:18 +02:00
local input = utilities.input_from_msg(msg)
if not input then
utilities.send_reply(self, msg, gMaps.doc, true)
return
end
2015-07-03 00:15:52 +02:00
2016-08-14 04:46:18 +02:00
local coords = utilities.get_coords(input, config)
if type(coords) == 'string' then
utilities.send_reply(self, msg, coords)
end
2015-07-03 00:15:52 +02:00
2016-08-14 04:46:18 +02:00
bindings.sendLocation(self, {
chat_id = msg.chat.id,
latitude = coords.lat,
longitude = coords.lon,
reply_to_message_id = msg.message_id
} )
2015-07-03 00:15:52 +02:00
end
return gMaps