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

33 lines
817 B
Lua

do
local function get_aka_img(img)
local url = 'http://img.akamaru.de/'..img..'.html'
local res,code = http.request(url)
if code ~= 200 then return "Fehler beim Abrufen von img.akamaru.de" end
local url = string.match(res, "id=\"codedirect\" value%=\"(.-)\" onclick")
return url
end
local function run(msg, matches)
local receiver = get_receiver(msg)
local img = matches[1]
local url = get_aka_img(img)
if string.ends(url, ".gif") then
send_document_from_url(receiver, url)
else
send_photo_from_url(receiver, url)
end
end
return {
description = "Mirrored Bild bei Link auf Preview-Seite von img.akamaru.de",
usage = "Preview-Link von img.akamaru.de",
patterns = {
"https?://img.akamaru.de/(.*).html"
},
run = run
}
--by Akamaru [https://ponywave.de]
end