c484023791
+ Games + GDrive + Gfycat + Googl + GPS + Hackernews + Hello + Instagram + IP_info + GMaps so angepasst, dass es wie Location funktioniert - Bugfixes, Pattern-Fixes, etc.
48 lines
1.3 KiB
Lua
48 lines
1.3 KiB
Lua
local googl = {}
|
|
|
|
local https = require('ssl.https')
|
|
local json = require('dkjson')
|
|
local utilities = require('otouto.utilities')
|
|
|
|
function googl:init(config)
|
|
if not cred_data.google_apikey then
|
|
print('Missing config value: google_apikey.')
|
|
print('googl.lua will not be enabled.')
|
|
return
|
|
end
|
|
|
|
googl.triggers = {
|
|
"goo.gl/([A-Za-z0-9-_-/-/]+)"
|
|
}
|
|
end
|
|
|
|
local BASE_URL = 'https://www.googleapis.com/urlshortener/v1'
|
|
|
|
local makeOurDate = function(dateString)
|
|
local pattern = "(%d+)%-(%d+)%-(%d+)"
|
|
local year, month, day = dateString:match(pattern)
|
|
return day..'.'..month..'.'..year
|
|
end
|
|
|
|
function googl:send_googl_info (shorturl)
|
|
local apikey = cred_data.google_apikey
|
|
local url = BASE_URL..'/url?key='..apikey..'&shortUrl=http://goo.gl/'..shorturl..'&projection=FULL&fields=longUrl,created,analytics(allTime(shortUrlClicks))'
|
|
local res,code = https.request(url)
|
|
if code ~= 200 then return "HTTP-FEHLER" end
|
|
local data = json.decode(res)
|
|
|
|
local longUrl = data.longUrl
|
|
local shortUrlClicks = data.analytics.allTime.shortUrlClicks
|
|
local created = makeOurDate(data.created)
|
|
local text = longUrl..'\n'..shortUrlClicks..' mal geklickt (erstellt am '..created..')'
|
|
|
|
return text
|
|
end
|
|
|
|
function googl:action(msg, config, matches)
|
|
local shorturl = matches[1]
|
|
utilities.send_reply(self, msg, googl:send_googl_info(shorturl))
|
|
end
|
|
|
|
return googl
|