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/otouto/plugins/calc.lua

29 lines
887 B
Lua
Raw Normal View History

local calc = {}
local URL = require('socket.url')
local HTTPS = require('ssl.https')
2016-06-07 06:31:34 +02:00
local utilities = require('otouto.utilities')
calc.command = 'calc <expression>'
function calc:init(config)
2016-08-14 04:46:18 +02:00
calc.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('calc', true).table
calc.doc = config.cmd_pat .. [[calc <expression>
Returns solutions to mathematical expressions and conversions between common units. Results provided by mathjs.org.]]
end
2015-07-03 00:15:52 +02:00
2016-05-27 02:26:30 +02:00
function calc:action(msg, config)
2016-08-14 04:46:18 +02:00
local input = utilities.input_from_msg(msg)
if not input then
utilities.send_reply(msg, calc.doc, true)
2016-08-14 04:46:18 +02:00
return
end
2015-07-03 00:15:52 +02:00
2016-08-14 04:46:18 +02:00
local url = 'https://api.mathjs.org/v1/?expr=' .. URL.escape(input)
local output = HTTPS.request(url)
output = output and '`'..output..'`' or config.errors.connection
utilities.send_reply(msg, output, true)
end
2015-07-03 00:15:52 +02:00
return calc