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

40 lines
884 B
Lua
Raw Normal View History

local gMaps = {}
local bindings = require('bindings')
local utilities = require('utilities')
gMaps.command = 'location <query>'
gMaps.doc = [[```
/location <query>
Returns a location from Google Maps.
Alias: /loc
```]]
2015-07-03 00:15:52 +02:00
function gMaps:init()
gMaps.triggers = utilities.triggers(self.info.username):t('location', true):t('loc', true).table
end
2015-07-03 00:15:52 +02:00
function gMaps:action(msg)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text)
2015-07-03 00:15:52 +02:00
if not input then
if msg.reply_to_message and msg.reply_to_message.text then
input = msg.reply_to_message.text
else
bindings.sendMessage(self, msg.chat.id, gMaps.doc, true, msg.message_id, true)
return
end
2015-07-03 00:15:52 +02:00
end
local coords = utilities.get_coords(self, input)
if type(coords) == 'string' then
bindings.sendReply(self, msg, coords)
return
2015-07-03 00:15:52 +02:00
end
bindings.sendLocation(self, msg.chat.id, coords.lat, coords.lon, msg.message_id)
2015-07-03 00:15:52 +02:00
end
return gMaps