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/hearthstone.lua

131 lines
2.8 KiB
Lua
Raw Normal View History

2015-11-29 10:45:00 +01:00
-- Plugin for the Hearthstone database provided by hearthstonejson.com.
if not database.hearthstone or os.time() > database.hearthstone.expiration then
2015-11-29 10:45:00 +01:00
print('Downloading Hearthstone database...')
-- This stuff doesn't play well with lua-sec. Disable it for now; hack in curl.
--local jstr, res = HTTPS.request('https://api.hearthstonejson.com/v1/latest/enUS/cards.json')
--if res ~= 200 then
--print('Error connecting to hearthstonejson.com.')
--print('hearthstone.lua will not be enabled.')
--return
--end
--local jdat = JSON.decode(jstr)
2015-11-29 10:45:00 +01:00
local s = io.popen('curl -s https://api.hearthstonejson.com/v1/latest/enUS/cards.json'):read('*all')
local d = JSON.decode(s)
if not d then
2015-11-29 10:45:00 +01:00
print('Error connecting to hearthstonejson.com.')
print('hearthstone.lua will not be enabled.')
return
2015-11-29 10:45:00 +01:00
end
database.hearthstone = d
database.hearthstone.expiration = os.time() + 600000
2015-11-29 10:45:00 +01:00
print('Download complete! It will be stored for a week.')
2015-11-29 10:45:00 +01:00
end
local command = 'hearthstone <query>'
local doc = [[```
/hearthstone <query>
Returns Hearthstone card info.
2016-03-26 11:12:01 +01:00
Alias: /hs
```]]
2015-11-29 10:45:00 +01:00
local triggers = {
'^/hearthstone[@'..bot.username..']*',
'^/hs[@'..bot.username..']*$',
'^/hs[@'..bot.username..']* '
2015-11-29 10:45:00 +01:00
}
local format_card = function(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
local info = ''
if card.text then
info = card.text:gsub('</?.->',''):gsub('%$','')
if card.flavor then
info = info .. '\n_' .. card.flavor .. '_'
2015-11-29 10:45:00 +01:00
end
elseif card.flavor then
info = card.flavor
else
info = nil
end
local s = '*' .. card.name .. '*\n' .. ctype
2015-11-29 10:45:00 +01:00
if stats then
s = s .. '\n' .. stats
end
if info then
s = s .. '\n' .. info
end
return s
end
local action = function(msg)
local input = msg.text_lower:input()
if not input then
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
2015-11-29 10:45:00 +01:00
return
end
local output = ''
for k,v in pairs(database.hearthstone) do
2016-02-22 04:09:02 +01:00
if type(v) == 'table' and string.lower(v.name):match(input) then
2015-11-29 10:45:00 +01:00
output = output .. format_card(v) .. '\n\n'
end
end
output = output:trim()
if output:len() == 0 then
sendReply(msg, config.errors.results)
return
end
sendMessage(msg.chat.id, output, true, msg.message_id, true)
2015-11-29 10:45:00 +01:00
end
return {
action = action,
triggers = triggers,
doc = doc,
command = command
2015-11-29 10:45:00 +01:00
}