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.
120 lines
3.2 KiB
Lua
120 lines
3.2 KiB
Lua
-- Plugin for the Hearthstone database provided by hearthstonejson.com.
|
|
|
|
local hearthstone = {}
|
|
|
|
--local HTTPS = require('ssl.https')
|
|
local JSON = require('dkjson')
|
|
local utilities = require('otouto.utilities')
|
|
local HTTPS = require('ssl.https')
|
|
|
|
function hearthstone:init(config)
|
|
hearthstone.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('hearthstone', true):t('hs').table
|
|
hearthstone.command = 'hearthstone <query>'
|
|
|
|
if not self.database.hearthstone or os.time() > self.database.hearthstone.expiration then
|
|
|
|
print('Downloading Hearthstone database...')
|
|
|
|
local jstr, res = HTTPS.request('https://api.hearthstonejson.com/v1/latest/enUS/cards.json')
|
|
if not jstr or res ~= 200 then
|
|
print('Error connecting to hearthstonejson.com.')
|
|
print('hearthstone.lua will not be enabled.')
|
|
hearthstone.command = nil
|
|
hearthstone.triggers = nil
|
|
return
|
|
end
|
|
self.database.hearthstone = JSON.decode(jstr)
|
|
self.database.hearthstone.expiration = os.time() + 600000
|
|
|
|
print('Download complete! It will be stored for a week.')
|
|
|
|
end
|
|
|
|
hearthstone.doc = config.cmd_pat .. [[hearthstone <query>
|
|
Returns Hearthstone card info.
|
|
Alias: ]] .. config.cmd_pat .. 'hs'
|
|
end
|
|
|
|
local function format_card(card)
|
|
|
|
local ctype = card.type
|
|
if card.race then
|
|
ctype = card.race
|
|
end
|
|
if card.rarity then
|
|
ctype = card.rarity .. ' ' .. ctype
|
|
end
|
|
if card.playerClass then
|
|
ctype = ctype .. ' (' .. card.playerClass .. ')'
|
|
elseif card.faction then
|
|
ctype = ctype .. ' (' .. card.faction .. ')'
|
|
end
|
|
|
|
local stats
|
|
if card.cost then
|
|
stats = card.cost .. 'c'
|
|
if card.attack then
|
|
stats = stats .. ' | ' .. card.attack .. 'a'
|
|
end
|
|
if card.health then
|
|
stats = stats .. ' | ' .. card.health .. 'h'
|
|
end
|
|
if card.durability then
|
|
stats = stats .. ' | ' .. card.durability .. 'd'
|
|
end
|
|
elseif card.health then
|
|
stats = card.health .. 'h'
|
|
end
|
|
|
|
-- unused?
|
|
local info
|
|
if card.text then
|
|
info = card.text:gsub('</?.->',''):gsub('%$','')
|
|
if card.flavor then
|
|
info = info .. '\n_' .. card.flavor .. '_'
|
|
end
|
|
elseif card.flavor then
|
|
info = card.flavor
|
|
else
|
|
info = nil
|
|
end
|
|
|
|
local s = '*' .. card.name .. '*\n' .. ctype
|
|
if stats then
|
|
s = s .. '\n' .. stats
|
|
end
|
|
if info then
|
|
s = s .. '\n' .. info
|
|
end
|
|
|
|
return s
|
|
|
|
end
|
|
|
|
function hearthstone:action(msg, config)
|
|
|
|
local input = utilities.input_from_msg(msg)
|
|
if not input then
|
|
utilities.send_reply(msg, hearthstone.doc, true)
|
|
return
|
|
end
|
|
|
|
local output = ''
|
|
for _,v in pairs(self.database.hearthstone) do
|
|
if type(v) == 'table' and string.lower(v.name):match(input) then
|
|
output = output .. format_card(v) .. '\n\n'
|
|
end
|
|
end
|
|
|
|
output = utilities.trim(output)
|
|
if output:len() == 0 then
|
|
utilities.send_reply(msg, config.errors.results)
|
|
return
|
|
end
|
|
|
|
utilities.send_message(msg.chat.id, output, true, msg.message_id, true)
|
|
|
|
end
|
|
|
|
return hearthstone
|