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/pornhub.lua

48 lines
1.2 KiB
Lua
Raw Normal View History

function run(msg, matches)
-- local g = require "./plugins/google"
-- local query = "site:pornhub.com+viewkey+" .. matches[1]
-- local new_matches = {query}
-- return g.run(msg, new_matches)
2015-04-20 18:52:25 +02:00
local results = findPornhub(matches[1])
return results-- build_result(results)
end
2015-04-20 18:52:25 +02:00
function findPornhub(query)
local api = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=site:pornhub.com+viewkey+" .. query:gsub(" ", "+")
-- Do the request
local res, code = https.request(api)
if code ~=200 then return nil end
local data = json:decode(res)
local results = data.responseData.results
math.randomseed( os.time() )
math.random(#results)
math.random(#results)
local index = math.random(#results)
local result = results[index].titleNoFormatting .. "\n".. results[index].unescapedUrl .."\n"
return result
end
function build_result(query)
local stringresults=""
for key,val in ipairs(results) do
stringresults=stringresults..val[1].."\n"..val[2].."\n\n"
end
return stringresults
end
return {
2015-04-20 18:52:25 +02:00
description = "Sendet ein PornHub Video",
2015-04-28 17:49:11 +02:00
usage = {"/pornhub [Suchwort]","/ph [Suchwort]"},
patterns = {"^/pornhub (.*)$","^/ph (.*)$"},
run = run
2015-05-22 17:01:33 +02:00
}
-- Modified by Akamaru [https://ponywave.de]