56 lines
1.1 KiB
Lua
56 lines
1.1 KiB
Lua
local PLUGIN = {}
|
|
|
|
PLUGIN.doc = [[
|
|
!btc <currency> [amount]
|
|
Gives bitcoin prices for the given currency, and optionally conversion of an amount to and from that currency.
|
|
BitcoinAverage Price Index https://bitcoinaverage.com/
|
|
]]
|
|
|
|
PLUGIN.triggers = {
|
|
'^!btc'
|
|
}
|
|
|
|
function PLUGIN.action(msg)
|
|
|
|
local url = nil
|
|
local arg1 = 'USD'
|
|
local arg2 = 1
|
|
|
|
local jstr, res = HTTPS.request('https://api.bitcoinaverage.com/ticker/global/')
|
|
|
|
if res ~= 200 then
|
|
return send_msg(msg, 'Connection error.')
|
|
end
|
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
if string.len(msg.text) > 6 then
|
|
arg1 = string.upper(string.sub(msg.text, 6, 8))
|
|
end
|
|
if string.len(msg.text) > 9 then
|
|
arg2 = tonumber(string.sub(msg.text, 10))
|
|
end
|
|
|
|
for k,v in pairs(jdat) do
|
|
if k == arg1 then
|
|
url = v .. '/'
|
|
break
|
|
end
|
|
end
|
|
|
|
if url then
|
|
jstr, b = HTTPS.request(url)
|
|
else
|
|
return send_msg(msg, 'Error: Currency not found.')
|
|
end
|
|
|
|
jdat = JSON.decode(jstr)
|
|
local m = arg2 .. ' BTC = ' .. jdat['24h_avg']*arg2 ..' '.. arg1 .. '\n'
|
|
m = m .. arg2 ..' '.. arg1 .. ' = ' .. string.format("%.8f", arg2/jdat['24h_avg']) .. ' BTC'
|
|
|
|
send_msg(msg, m)
|
|
|
|
end
|
|
|
|
return PLUGIN
|