2016-04-11 06:04:47 +02:00
|
|
|
local gMaps = {}
|
|
|
|
|
2016-06-19 19:25:24 +02:00
|
|
|
local URL = require('socket.url')
|
2016-06-07 06:31:34 +02:00
|
|
|
local utilities = require('otouto.utilities')
|
2016-04-11 06:04:47 +02:00
|
|
|
|
2016-06-19 19:25:24 +02:00
|
|
|
gMaps.command = 'loc <Ort>'
|
2016-05-27 05:28:44 +02:00
|
|
|
|
|
|
|
function gMaps:init(config)
|
2016-06-21 18:34:33 +02:00
|
|
|
gMaps.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('loc', true).table
|
2016-06-19 19:25:24 +02:00
|
|
|
gMaps.doc = [[*
|
|
|
|
]]..config.cmd_pat..[[loc* _<Ort>_: Sendet Ort via Google Maps]]
|
2016-04-11 06:04:47 +02:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-06-19 19:25:24 +02:00
|
|
|
function gMaps:get_staticmap(area, lat, lon)
|
|
|
|
local base_api = "https://maps.googleapis.com/maps/api"
|
|
|
|
local url = base_api .. "/staticmap?size=600x300&zoom=12¢er="..URL.escape(area).."&markers=color:red"..URL.escape("|"..area)
|
|
|
|
|
|
|
|
local file = download_to_file(url)
|
|
|
|
return file
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-06-19 19:25:24 +02:00
|
|
|
function gMaps:action(msg, config)
|
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
|
2015-07-15 08:15:23 +02:00
|
|
|
else
|
2016-05-29 19:08:39 +02:00
|
|
|
utilities.send_message(self, msg.chat.id, gMaps.doc, true, msg.message_id, true)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-15 08:15:23 +02:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2016-06-19 19:25:24 +02:00
|
|
|
utilities.send_typing(self, msg.chat.id, 'find_location')
|
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-06-19 19:25:24 +02:00
|
|
|
utilities.send_location(self, msg.chat.id, coords.lat, coords.lon, msg.message_id)
|
|
|
|
utilities.send_photo(self, msg.chat.id, gMaps:get_staticmap(input, coords.lat, coords.lon), nil, msg.message_id)
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return gMaps
|