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/miku/plugins/gifeye.lua
Andreas Bielawski 345e33dcb0 Portiere EINEN HAUFEN an Imageboard-Plugins, NSFW-Plugins, etc. Im Folgenden:
- boobs
- danbooru
- derpibooru(_nsfw)
- e621
- gifeye
- konachan(_nsfw)
- riko & yagyuu >> moe
- porndoge
- pornhub_gif
- pr0gramm
- random_pic(_nsfw)
- rule34
- sankakucomplex
- yandere
- z0r
2016-08-18 17:23:55 +02:00

32 lines
793 B
Lua

local gifeye = {}
function gifeye:init(config)
gifeye.triggers = {
"https?://gifeye.com/(%d+)$",
"^/gifeye (%d+)$",
"^/ge (%d+)$"
}
gifeye.doc = [[*
]]..config.cmd_pat..[[ge* _<ID>_: Sendet Bild von Gifeye (NSFW)]]
end
gifeye.command = 'ge <ID>'
function gifeye:action(msg, config, matches)
local url = 'http://i.gifeye.com/'..matches[1]..'.gif'
utilities.send_typing(self, msg.chat.id, 'upload_document')
local file = download_to_file(url)
if not file then
utilities.send_reply(self, msg, config.errors.results)
return
end
if string.starts(msg.text_lower, '/ge') or string.starts(msg.text_lower, '/gifeye') then
source = 'http://gifeye.com/'..matches[1]
else
source = nil
end
utilities.send_document(self, msg.chat.id, file, source)
end
return gifeye