60570e90f3
added example plugin with documentation added liberbot-compliant flood control see Liberbot Support for details on getting compliant added Kickass Torrent plugin various bugfixes all files seem to have been marked changed due to a shift in platform I will do a clean clone and testing to ensure there is no issue.
58 lines
1.4 KiB
Lua
Executable File
58 lines
1.4 KiB
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.doc = [[
|
|
/giphy [query]
|
|
Returns a random or search-resulted GIF from giphy.com. Results are limited to PG-13 by default; use '/gifnsfw' to get potentially NSFW results.
|
|
Want GIFs sent directly to chat? Try @ImageBot.
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^/giphy',
|
|
'^/gifnsfw'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
local search_url = 'http://api.giphy.com/v1/gifs/search?limit=10&api_key=' .. config.giphy_api_key
|
|
local random_url = 'http://tv.giphy.com/v1/gifs/random?api_key=' .. config.giphy_api_key
|
|
local result_url = ''
|
|
|
|
if string.match(msg.text, '^/giphynsfw') then
|
|
search_url = search_url .. '&rating=r&q='
|
|
random_url = random_url .. '&rating=r'
|
|
else
|
|
search_url = search_url .. '&rating=pg-13&q='
|
|
random_url = random_url .. '&rating=pg-13'
|
|
end
|
|
|
|
local input = get_input(msg.text)
|
|
|
|
if not input then
|
|
|
|
local jstr, res = HTTP.request(random_url)
|
|
if res ~= 200 then
|
|
return send_msg(msg, config.locale.errors.connection)
|
|
end
|
|
local jdat = JSON.decode(jstr)
|
|
result_url = jdat.data.image_url
|
|
|
|
else
|
|
|
|
local jstr, res = HTTP.request(search_url .. input)
|
|
if res ~= 200 then
|
|
return send_msg(msg, config.locale.errors.connection)
|
|
end
|
|
local jdat = JSON.decode(jstr)
|
|
if #jdat.data == 0 then
|
|
return send_msg(msg, config.locale.errors.results)
|
|
end
|
|
result_url = jdat.data[math.random(#jdat.data)].images.original.url
|
|
|
|
end
|
|
|
|
send_message(msg.chat.id, result_url, false, msg.message_id)
|
|
|
|
end
|
|
|
|
return PLUGIN
|