2016-04-11 06:04:47 +02:00
|
|
|
local control = {}
|
2015-12-13 15:25:49 +01:00
|
|
|
|
2016-06-07 06:31:34 +02:00
|
|
|
local bot = require('otouto.bot')
|
|
|
|
local utilities = require('otouto.utilities')
|
2015-12-13 15:25:49 +01:00
|
|
|
|
2016-05-27 05:28:44 +02:00
|
|
|
local cmd_pat -- Prevents the command from being uncallable.
|
|
|
|
|
|
|
|
function control:init(config)
|
|
|
|
cmd_pat = config.cmd_pat
|
|
|
|
control.triggers = utilities.triggers(self.info.username, cmd_pat,
|
|
|
|
{'^'..cmd_pat..'script'}):t('reload', true):t('halt').table
|
2016-04-11 06:04:47 +02:00
|
|
|
end
|
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
function control:action(msg, config)
|
2016-04-11 06:04:47 +02:00
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
if msg.from.id ~= config.admin then
|
2015-12-13 15:25:49 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-04-18 05:28:55 +02:00
|
|
|
if msg.date < os.time() - 1 then return end
|
2016-02-22 21:53:17 +01:00
|
|
|
|
2016-05-27 05:28:44 +02:00
|
|
|
if msg.text_lower:match('^'..cmd_pat..'reload') then
|
2016-04-29 06:36:35 +02:00
|
|
|
for pac, _ in pairs(package.loaded) do
|
2016-06-07 09:02:05 +02:00
|
|
|
if pac:match('^otouto%.plugins%.') then
|
2016-04-29 06:36:35 +02:00
|
|
|
package.loaded[pac] = nil
|
|
|
|
end
|
|
|
|
end
|
2016-05-27 02:26:30 +02:00
|
|
|
package.loaded['bindings'] = nil
|
|
|
|
package.loaded['utilities'] = nil
|
|
|
|
package.loaded['config'] = nil
|
2016-05-27 05:28:44 +02:00
|
|
|
if msg.text_lower:match('%+config') then for k, v in pairs(require('config')) do
|
2016-05-27 02:26:30 +02:00
|
|
|
config[k] = v
|
2016-05-27 05:28:44 +02:00
|
|
|
end end
|
2016-05-27 02:26:30 +02:00
|
|
|
bot.init(self, config)
|
2016-05-29 19:08:39 +02:00
|
|
|
utilities.send_reply(self, msg, 'Bot reloaded!')
|
2016-05-27 05:28:44 +02:00
|
|
|
elseif msg.text_lower:match('^'..cmd_pat..'halt') then
|
2016-04-11 06:04:47 +02:00
|
|
|
self.is_started = false
|
2016-05-29 19:08:39 +02:00
|
|
|
utilities.send_reply(self, msg, 'Stopping bot!')
|
2016-05-27 05:28:44 +02:00
|
|
|
elseif msg.text_lower:match('^'..cmd_pat..'script') then
|
|
|
|
local input = msg.text_lower:match('^'..cmd_pat..'script\n(.+)')
|
2016-05-21 02:47:13 +02:00
|
|
|
if not input then
|
2016-05-27 05:28:44 +02:00
|
|
|
utilities.send_reply(self, msg, 'usage: ```\n'..cmd_pat..'script\n'..cmd_pat..'command <arg>\n...\n```', true)
|
2016-05-21 02:47:13 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
input = input .. '\n'
|
|
|
|
for command in input:gmatch('(.-)\n') do
|
|
|
|
command = utilities.trim(command)
|
|
|
|
msg.text = command
|
|
|
|
bot.on_msg_receive(self, msg)
|
|
|
|
end
|
2015-12-13 15:25:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return control
|
2015-12-13 15:25:49 +01:00
|
|
|
|