2016-04-11 06:04:47 +02:00
|
|
|
local control = {}
|
2015-12-13 15:25:49 +01:00
|
|
|
|
2016-07-17 13:22:27 +02:00
|
|
|
local bot = require('miku.bot')
|
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,
|
2016-07-17 13:22:27 +02:00
|
|
|
{'^'..cmd_pat..'script'}):t('restart', 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-09-08 01:35:10 +02:00
|
|
|
if not is_sudo(msg, config) then
|
2015-12-13 15:25:49 +01:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-07-17 13:22:27 +02:00
|
|
|
if msg.date < os.time() - 2 then return end
|
2016-02-22 21:53:17 +01:00
|
|
|
|
2016-07-17 13:22:27 +02:00
|
|
|
if msg.text_lower:match('^'..cmd_pat..'restart') then
|
2016-04-29 06:36:35 +02:00
|
|
|
for pac, _ in pairs(package.loaded) do
|
2016-07-17 13:22:27 +02:00
|
|
|
if pac:match('^miku%.plugins%.') then
|
2016-04-29 06:36:35 +02:00
|
|
|
package.loaded[pac] = nil
|
|
|
|
end
|
|
|
|
end
|
2016-07-17 13:22:27 +02:00
|
|
|
package.loaded['miku.bindings'] = nil
|
|
|
|
package.loaded['miku.utilities'] = nil
|
2016-05-27 02:26:30 +02:00
|
|
|
package.loaded['config'] = nil
|
2016-07-17 13:47:15 +02:00
|
|
|
if not msg.text_lower:match('%-config') then
|
|
|
|
for k, v in pairs(require('config')) do
|
|
|
|
config[k] = v
|
|
|
|
end
|
|
|
|
end
|
2016-08-24 15:38:29 +02:00
|
|
|
bot.init(config)
|
|
|
|
utilities.send_reply(msg, 'Bot neu gestartet!')
|
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-08-24 15:38:29 +02:00
|
|
|
utilities.send_reply(msg, 'Stoppe 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-08-24 15:38:29 +02:00
|
|
|
utilities.send_reply(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
|
2016-08-24 15:38:29 +02:00
|
|
|
bot.on_msg_receive(msg, config)
|
2016-05-21 02:47:13 +02:00
|
|
|
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
|
|
|
|