2015-11-29 10:45:00 +01:00
|
|
|
-- Plugin for the Hearthstone database provided by hearthstonejson.com.
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local hearthstone = {}
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local HTTPS = require('ssl.https')
|
|
|
|
local JSON = require('cjson')
|
|
|
|
local bindings = require('bindings')
|
|
|
|
local utilities = require('utilities')
|
2016-02-21 20:28:40 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function hearthstone:init()
|
|
|
|
if not self.database.hearthstone or os.time() > self.database.hearthstone.expiration then
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
print('Downloading Hearthstone database...')
|
|
|
|
|
|
|
|
self.database.hearthstone = {
|
|
|
|
expiration = os.time() + 600000
|
|
|
|
}
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local jstr, res = HTTPS.request('http://hearthstonejson.com/json/AllSets.json')
|
|
|
|
if res ~= 200 then
|
|
|
|
print('Error connecting to hearthstonejson.com.')
|
|
|
|
print('hearthstone.lua will not be enabled.')
|
|
|
|
return
|
2015-11-29 10:45:00 +01:00
|
|
|
end
|
2016-04-11 06:04:47 +02:00
|
|
|
local jdat = JSON.decode(jstr)
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
for _,v in pairs(jdat) do
|
|
|
|
for _,val in pairs(v) do
|
|
|
|
table.insert(self.database.hearthstone, val)
|
|
|
|
end
|
|
|
|
end
|
2016-02-21 20:28:40 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
print('Download complete! It will be stored for a week.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
hearthstone.triggers = utilities.triggers(self.info.username):t('hearthstone', true):t('hs').table
|
2015-11-29 10:45:00 +01:00
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
hearthstone.command = 'hearthstone <query>'
|
|
|
|
hearthstone.doc = [[```
|
2016-01-08 14:44:37 +01:00
|
|
|
/hearthstone <query>
|
|
|
|
Returns Hearthstone card info.
|
2016-03-26 11:12:01 +01:00
|
|
|
Alias: /hs
|
2016-01-08 14:44:37 +01:00
|
|
|
```]]
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local function format_card(card)
|
2015-11-29 10:45:00 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
-- unused?
|
2015-11-29 10:45:00 +01:00
|
|
|
local info = ''
|
|
|
|
if card.text then
|
|
|
|
info = card.text:gsub('</?.->',''):gsub('%$','')
|
|
|
|
if card.flavor then
|
2016-01-08 14:44:37 +01:00
|
|
|
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
|
|
|
|
|
2016-01-08 14:44:37 +01:00
|
|
|
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
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function hearthstone:action(msg)
|
2015-11-29 10:45:00 +01:00
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
local input = utilities.input(msg.text_lower)
|
2015-11-29 10:45:00 +01:00
|
|
|
if not input then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendMessage(self, msg.chat.id, hearthstone.doc, true, msg.message_id, true)
|
2015-11-29 10:45:00 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local output = ''
|
2016-04-11 06:04:47 +02:00
|
|
|
for _,v in pairs(self.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
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.results)
|
2015-11-29 10:45:00 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendMessage(self, msg.chat.id, output, true, msg.message_id, true)
|
2015-11-29 10:45:00 +01:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return hearthstone
|