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.
38 lines
757 B
Lua
Executable File
38 lines
757 B
Lua
Executable File
local PLUGIN = {}
|
|
|
|
PLUGIN.typing = true -- usually takes a few seconds to load
|
|
|
|
PLUGIN.doc = [[
|
|
/hackernews
|
|
Returns some top stories from Hacker News. Four in a group or eight in a private message.
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^/hackernews',
|
|
'^/hn$'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
local message = ''
|
|
local jstr = HTTPS.request('https://hacker-news.firebaseio.com/v0/topstories.json')
|
|
local stories = JSON.decode(jstr)
|
|
|
|
local limit = 4
|
|
if msg.chat.id == msg.from.id then
|
|
limit = 8
|
|
end
|
|
|
|
for i = 1, limit do
|
|
url = 'https://hacker-news.firebaseio.com/v0/item/'..stories[i]..'.json'
|
|
jstr = HTTPS.request(url)
|
|
jdat = JSON.decode(jstr)
|
|
message = message .. jdat.title .. '\n' .. jdat.url .. '\n'
|
|
end
|
|
|
|
send_msg(msg, message)
|
|
|
|
end
|
|
|
|
return PLUGIN
|