acc7046d64
Added optional target for kick/ban logs. Added flag 7 to use default log per group. This way, a realm can have a public kick/ban log but governors are able to opt out. Added flag 8, antilink. Kicks for Telegram join links which do not refer to groups within the realm. Added flag 9, modrights, to give moderators access to changing the group photo, title, link, and motd (config option is deprecated. RIP). /unban will reset the target's autokick counter. Added configuration for default flag settings. Revision to bindings.lua. BASE_URL has been moved to bindings. There is no real reason for it to remain in instance. Token is passed to bindings.init at load. All plugins have been updated accordingly.
76 lines
2.9 KiB
Lua
76 lines
2.9 KiB
Lua
local HTTPS = require('ssl.https')
|
|
local JSON = require('dkjson')
|
|
local utilities = require('otouto.utilities')
|
|
local bindings = require('otouto.bindings')
|
|
|
|
local hackernews = {}
|
|
|
|
hackernews.command = 'hackernews'
|
|
|
|
local function get_hackernews_results()
|
|
local results = {}
|
|
local jstr, code = HTTPS.request(hackernews.topstories_url)
|
|
if code ~= 200 then return end
|
|
local data = JSON.decode(jstr)
|
|
for i = 1, 8 do
|
|
local ijstr, icode = HTTPS.request(hackernews.res_url:format(data[i]))
|
|
if icode ~= 200 then return end
|
|
local idata = JSON.decode(ijstr)
|
|
local result
|
|
if idata.url then
|
|
result = string.format(
|
|
'\n• <code>[</code><a href="%s">%s</a><code>]</code> <a href="%s">%s</a>',
|
|
utilities.html_escape(hackernews.art_url:format(idata.id)),
|
|
idata.id,
|
|
utilities.html_escape(idata.url),
|
|
utilities.html_escape(idata.title)
|
|
)
|
|
else
|
|
result = string.format(
|
|
'\n• <code>[</code><a href="%s">%s</a><code>]</code> %s',
|
|
utilities.html_escape(hackernews.art_url:format(idata.id)),
|
|
idata.id,
|
|
utilities.html_escape(idata.title)
|
|
)
|
|
end
|
|
table.insert(results, result)
|
|
end
|
|
return results
|
|
end
|
|
|
|
function hackernews:init(config)
|
|
hackernews.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('hackernews', true):t('hn', true).table
|
|
hackernews.doc = [[Returns four (if group) or eight (if private message) top stories from Hacker News.
|
|
Alias: ]] .. config.cmd_pat .. 'hn'
|
|
hackernews.topstories_url = 'https://hacker-news.firebaseio.com/v0/topstories.json'
|
|
hackernews.res_url = 'https://hacker-news.firebaseio.com/v0/item/%s.json'
|
|
hackernews.art_url = 'https://news.ycombinator.com/item?id=%s'
|
|
hackernews.last_update = 0
|
|
if config.hackernews_onstart == true then
|
|
hackernews.results = get_hackernews_results()
|
|
if hackernews.results then hackernews.last_update = os.time() / 60 end
|
|
end
|
|
end
|
|
|
|
function hackernews:action(msg, config)
|
|
local now = os.time() / 60
|
|
if not hackernews.results or hackernews.last_update + config.hackernews_interval < now then
|
|
bindings.sendChatAction{ chat_id = msg.chat.id, action = 'typing' }
|
|
hackernews.results = get_hackernews_results()
|
|
if not hackernews.results then
|
|
utilities.send_reply(msg, config.errors.connection)
|
|
return
|
|
end
|
|
hackernews.last_update = now
|
|
end
|
|
-- Four results in a group, eight in private.
|
|
local res_count = msg.chat.id == msg.from.id and 8 or 4
|
|
local output = '<b>Top Stories from Hacker News:</b>'
|
|
for i = 1, res_count do
|
|
output = output .. hackernews.results[i]
|
|
end
|
|
utilities.send_message(msg.chat.id, output, true, nil, 'html')
|
|
end
|
|
|
|
return hackernews
|