112 lines
3.8 KiB
Lua
112 lines
3.8 KiB
Lua
local cats = {}
|
|
|
|
cats.command = 'kitty [gif]'
|
|
|
|
function cats:init(config)
|
|
if not cred_data.cat_apikey then
|
|
print('Fehlender Key: cat_apikey.')
|
|
print('cats.lua wird aktiviert, aber mit einem Key gibt es mehr Features.')
|
|
end
|
|
|
|
cats.triggers = {
|
|
"^/[Kk][Ii][Tt][Tt][Yy]$",
|
|
"^/[Kk][Ii][Tt][Tt][Yy] (gif)$"
|
|
}
|
|
|
|
cats.inline_triggers = {
|
|
"^[Kk][Ii][Tt][Tt][Yy] (gif)$",
|
|
"^[Kk][Ii][Tt][Tt][Yy]$"
|
|
}
|
|
|
|
cats.doc = [[*
|
|
]]..config.cmd_pat..[[kitty*: Postet eine zufällige Katze
|
|
*]]..config.cmd_pat..[[kitty* _gif_: Postet eine zufällige, animierte Katze]]
|
|
end
|
|
|
|
local apikey = cred_data.cat_apikey or "" -- apply for one here: http://thecatapi.com/api-key-registration.html
|
|
local BASE_URL = 'http://thecatapi.com/api/images/get'
|
|
|
|
function cats:inline_callback(inline_query, config, matches)
|
|
if matches[1] == 'gif' then
|
|
img_type = 'gif'
|
|
id = 100
|
|
else
|
|
img_type = 'jpg'
|
|
id = 200
|
|
end
|
|
local url = 'https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20xml%20where%20url%3D%27http%3A%2F%2Fthecatapi.com%2Fapi%2Fimages%2Fget%3Fformat%3Dxml%26results_per_page%3D50%26type%3D'..img_type..'%26apikey%3D'..apikey..'%27&format=json' -- no way I'm using XML, plz die
|
|
local res, code = https.request(url)
|
|
if code ~= 200 then return end
|
|
local data = json.decode(res).query.results.response.data.images.image
|
|
if not data then return end
|
|
if not data[1] then return end
|
|
|
|
local results = '['
|
|
|
|
for n in pairs(data) do
|
|
if img_type == 'gif' then
|
|
results = results..'{"type":"gif","id":"'..id..'","gif_url":"'..data[n].url..'","thumb_url":"'..data[n].url..'"}'
|
|
id = id+1
|
|
else
|
|
results = results..'{"type":"photo","id":"'..id..'","photo_url":"'..data[n].url..'","thumb_url":"'..data[n].url..'"}'
|
|
id = id+1
|
|
end
|
|
if n < #data then
|
|
results = results..','
|
|
end
|
|
end
|
|
local results = results..']'
|
|
utilities.answer_inline_query(inline_query, results, 30)
|
|
end
|
|
|
|
function cats:get_cat(gif)
|
|
if gif then
|
|
local url = BASE_URL..'?type=gif&apikey='..apikey
|
|
file = download_to_file(url, 'miau.gif')
|
|
else
|
|
local url = BASE_URL..'?type=jpg,png&apikey='..apikey
|
|
file = download_to_file(url, 'miau.png')
|
|
end
|
|
return file
|
|
end
|
|
|
|
function cats:callback(callback, msg, self, config, input)
|
|
utilities.answer_callback_query(callback, 'Miau!')
|
|
utilities.send_typing(msg.chat.id, 'upload_photo')
|
|
if string.isempty(input) then
|
|
local file = cats:get_cat()
|
|
if not file then
|
|
utilities.answer_callback_query(callback, 'Beim Herunterladen ist ein Fehler aufgetreten :(', true)
|
|
return
|
|
end
|
|
utilities.send_photo(msg.chat.id, file, nil, msg.message_id, '{"inline_keyboard":[[{"text":"Nochmal!","callback_data":"cats:"}]]}')
|
|
else
|
|
local file = cats:get_cat(true)
|
|
if not file then
|
|
utilities.answer_callback_query(callback, 'Beim Herunterladen ist ein Fehler aufgetreten :(', true)
|
|
return
|
|
end
|
|
utilities.send_document(msg.chat.id, file, nil, msg.message_id, '{"inline_keyboard":[[{"text":"Nochmal!","callback_data":"cats:gif"}]]}')
|
|
end
|
|
end
|
|
|
|
function cats:action(msg, config, matches)
|
|
utilities.send_typing(msg.chat.id, 'upload_photo')
|
|
if matches[1] == 'gif' then
|
|
local file = cats:get_cat(true)
|
|
if not file then
|
|
utilities.send_reply(msg, config.errors.connection)
|
|
return
|
|
end
|
|
utilities.send_document(msg.chat.id, file, nil, msg.message_id, '{"inline_keyboard":[[{"text":"Nochmal!","callback_data":"cats:gif"}]]}')
|
|
else
|
|
local file = cats:get_cat()
|
|
if not file then
|
|
utilities.send_reply(msg, config.errors.connection)
|
|
return
|
|
end
|
|
utilities.send_photo(msg.chat.id, file, nil, msg.message_id, '{"inline_keyboard":[[{"text":"Nochmal!","callback_data":"cats:"}]]}')
|
|
end
|
|
end
|
|
|
|
return cats |