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/venue.lua
Andreas Bielawski fb9d3652f3 Upstream:
- self muss nicht mehr überall übergeben werden
- alle Plugins wurden angepasst

Eigene Updates:
- abort_inline_query() hinzugefügt
- Mehr Plugins zum Standard-Set hinzugefügt
- Eventuell noch etwas, was ich vergessen hab
2016-08-24 15:38:29 +02:00

28 lines
658 B
Lua

local venue = {}
venue.triggers = {
'/nil'
}
local apikey = cred_data.google_apikey
function venue:pre_process(msg)
if not msg.venue then return msg end -- Ignore
local lat = msg.venue.location.latitude
local lng = msg.venue.location.longitude
local url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng='..lat..','..lng..'&result_type=street_address&language=de&key='..apikey
local res, code = https.request(url)
if code ~= 200 then return msg end
local data = json.decode(res).results[1]
local city = data.formatted_address
utilities.send_reply(msg, city)
return msg
end
function venue:action(msg)
end
return venue