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-2/plugins/hackernews.lua

38 lines
757 B
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.typing = true -- usually takes a few seconds to load
2015-07-03 00:15:52 +02:00
PLUGIN.doc = [[
2015-07-08 09:38:04 +02:00
/hackernews
2015-07-03 00:15:52 +02:00
Returns some top stories from Hacker News. Four in a group or eight in a private message.
]]
PLUGIN.triggers = {
2015-07-08 09:38:04 +02:00
'^/hackernews',
'^/hn$'
2015-07-03 00:15:52 +02:00
}
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