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

46 lines
946 B
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.doc = [[
2015-07-08 09:38:04 +02:00
/loc <location>
2015-07-03 00:15:52 +02:00
Sends location data for query, taken from Google Maps. Works for countries, cities, landmarks, etc.
]]
PLUGIN.triggers = {
2015-07-08 09:38:04 +02:00
'^/loc'
2015-07-03 00:15:52 +02:00
}
function PLUGIN.action(msg)
local input = get_input(msg.text)
if not input then
if msg.reply_to_message then
msg = msg.reply_to_message
input = msg.text
else
return send_msg(msg, PLUGIN.doc)
end
2015-07-03 00:15:52 +02:00
end
local url = 'http://maps.googleapis.com/maps/api/geocode/json?address=' .. URL.escape(input)
local jstr, res = HTTP.request(url)
if res ~= 200 then
return send_msg(msg, config.locale.errors.connection)
2015-07-03 00:15:52 +02:00
end
local jdat = JSON.decode(jstr)
if jdat.status ~= 'OK' then
local message = config.locale.errors.results
2015-07-03 00:15:52 +02:00
return send_msg(msg, message)
end
local lat = jdat.results[1].geometry.location.lat
local lng = jdat.results[1].geometry.location.lng
send_location(msg.chat.id, lat, lng, msg.message_id)
end
return PLUGIN