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/9gag.lua

36 lines
826 B
Lua
Raw Permalink Normal View History

do
2014-11-04 16:09:08 +01:00
2015-04-05 16:26:30 +02:00
local function get_9GAG()
local url = "http://api-9gag.herokuapp.com/"
local b,c = http.request(url)
if c ~= 200 then return nil end
local gag = json:decode(b)
2015-04-05 16:26:30 +02:00
-- random max json table size
2015-11-12 17:42:03 +01:00
local i = math.random(#gag) local link_image = gag[i].src
local title = gag[i].title
if link_image:sub(0,2) == '//' then
link_image = msg.text:sub(3,-1)
end
return link_image, title
2014-11-04 16:09:08 +01:00
end
2015-04-05 16:26:30 +02:00
local function run(msg, matches)
2014-11-04 16:09:08 +01:00
local receiver = get_receiver(msg)
2015-04-05 16:26:30 +02:00
local url, title = get_9GAG()
2015-11-12 17:42:03 +01:00
local cb_extra = {
receiver=receiver,
url=url
}
send_msg(receiver, title, send_photo_from_url_callback, cb_extra)
2014-11-04 16:09:08 +01:00
end
return {
2015-11-12 17:42:03 +01:00
description = "Sendet ein zufälliges Bild von 9GAG",
usage = "#9gag: Sendet ein zufälliges Bild von 9GAG.",
2015-11-12 17:42:03 +01:00
patterns = {
2016-07-07 21:34:32 +02:00
"^#9[Gg][Aa][Gg]$"
2015-11-12 17:42:03 +01:00
},
run = run
2014-11-04 16:09:08 +01:00
}
end