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

32 lines
791 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(msg.chat.id, 'upload_document')
local file = download_to_file(url)
if not file then
utilities.send_reply(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(msg.chat.id, file, source, msg.message_id)
end
return gifeye