2016-04-11 06:04:47 +02:00
|
|
|
local hackernews = {}
|
|
|
|
|
|
|
|
local HTTPS = require('ssl.https')
|
|
|
|
local JSON = require('cjson')
|
|
|
|
local bindings = require('bindings')
|
|
|
|
local utilities = require('utilities')
|
|
|
|
|
|
|
|
hackernews.command = 'hackernews'
|
|
|
|
hackernews.doc = [[```
|
2016-01-08 14:44:37 +01:00
|
|
|
Returns four (if group) or eight (if private message) top stories from Hacker News.
|
|
|
|
Alias: /hn
|
|
|
|
```]]
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-12 05:55:46 +02:00
|
|
|
function hackernews:init()
|
|
|
|
hackernews.triggers = utilities.triggers(self.info.username):t('hackernews', true):t('hn', true).table
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function hackernews:action(msg)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendChatAction(self, msg.chat.id, 'typing')
|
2015-12-14 20:48:17 +01:00
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
local jstr, res = HTTPS.request('https://hacker-news.firebaseio.com/v0/topstories.json')
|
|
|
|
if res ~= 200 then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
|
|
|
|
local res_count = 4
|
2015-07-03 00:15:52 +02:00
|
|
|
if msg.chat.id == msg.from.id then
|
2015-11-25 03:22:04 +01:00
|
|
|
res_count = 8
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-01-08 14:44:37 +01:00
|
|
|
local output = '*Hacker News:*\n'
|
2015-11-25 03:22:04 +01:00
|
|
|
for i = 1, res_count do
|
|
|
|
local res_url = 'https://hacker-news.firebaseio.com/v0/item/' .. jdat[i] .. '.json'
|
|
|
|
jstr, res = HTTPS.request(res_url)
|
|
|
|
if res ~= 200 then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
local res_jdat = JSON.decode(jstr)
|
2016-01-08 14:44:37 +01:00
|
|
|
local title = res_jdat.title:gsub('%[.+%]', ''):gsub('%(.+%)', ''):gsub('&', '&')
|
|
|
|
if title:len() > 48 then
|
|
|
|
title = title:sub(1, 45) .. '...'
|
|
|
|
end
|
|
|
|
local url = res_jdat.url
|
2016-03-22 11:16:26 +01:00
|
|
|
if not url then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
2016-03-22 11:16:26 +01:00
|
|
|
return
|
|
|
|
end
|
2016-01-08 14:44:37 +01:00
|
|
|
if url:find('%(') then
|
|
|
|
output = output .. '• ' .. title .. '\n' .. url:gsub('_', '\\_') .. '\n'
|
|
|
|
else
|
|
|
|
output = output .. '• [' .. title .. '](' .. url .. ')\n'
|
|
|
|
end
|
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendMessage(self, msg.chat.id, output, true, nil, true)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return hackernews
|