2019-05-25 20:40:06 +00:00
|
|
|
#--depends-on config
|
|
|
|
#--depends-on permissions
|
|
|
|
|
2019-06-28 22:16:05 +00:00
|
|
|
import re, string, traceback, typing
|
2018-10-03 12:22:37 +00:00
|
|
|
from src import EventManager, ModuleManager, utils
|
2019-02-09 17:49:01 +00:00
|
|
|
from . import outs
|
2016-03-30 18:31:23 +00:00
|
|
|
|
2018-10-02 20:40:34 +00:00
|
|
|
COMMAND_METHOD = "command-method"
|
|
|
|
COMMAND_METHODS = ["PRIVMSG", "NOTICE"]
|
|
|
|
|
2019-09-30 09:15:12 +00:00
|
|
|
REGEX_ARG_NUMBER = re.compile(r"\$(?:(\d+)(-?)|(-))")
|
2017-10-27 12:15:33 +00:00
|
|
|
|
2019-06-07 14:30:53 +00:00
|
|
|
MESSAGE_TAGS_CAP = utils.irc.Capability("message-tags",
|
|
|
|
"draft/message-tags-0.2")
|
2019-05-15 07:45:59 +00:00
|
|
|
MSGID_TAG = utils.irc.MessageTag("msgid", "draft/msgid")
|
2019-05-14 12:02:45 +00:00
|
|
|
|
2019-05-23 15:05:41 +00:00
|
|
|
NON_ALPHANUMERIC = [char for char in string.printable if not char.isalnum()]
|
2019-05-23 15:03:49 +00:00
|
|
|
|
2019-07-11 12:31:35 +00:00
|
|
|
class BadContextException(Exception):
|
|
|
|
def __init__(self, required_context):
|
|
|
|
self.required_context = required_context
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
2019-09-04 13:27:10 +00:00
|
|
|
SETTING_COMMANDMETHOD = utils.OptionsSetting(COMMAND_METHODS, COMMAND_METHOD,
|
|
|
|
"Set the method used to respond to commands")
|
2019-06-28 22:16:05 +00:00
|
|
|
|
|
|
|
@utils.export("channelset", utils.Setting("command-prefix",
|
|
|
|
"Set the command prefix used in this channel", example="!"))
|
|
|
|
@utils.export("serverset", utils.Setting("command-prefix",
|
|
|
|
"Set the command prefix used on this server", example="!"))
|
2019-09-04 13:27:10 +00:00
|
|
|
@utils.export("serverset", SETTING_COMMANDMETHOD)
|
|
|
|
@utils.export("channelset", SETTING_COMMANDMETHOD)
|
|
|
|
@utils.export("botset", SETTING_COMMANDMETHOD)
|
2019-06-28 22:16:05 +00:00
|
|
|
@utils.export("channelset", utils.BoolSetting("hide-prefix",
|
|
|
|
"Disable/enable hiding prefix in command reponses"))
|
|
|
|
@utils.export("channelset", utils.BoolSetting("commands",
|
|
|
|
"Disable/enable responding to commands in-channel"))
|
|
|
|
@utils.export("channelset", utils.BoolSetting("prefixed-commands",
|
|
|
|
"Disable/enable responding to prefixed commands in-channel"))
|
2018-09-27 11:08:07 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
2019-06-26 09:59:03 +00:00
|
|
|
@utils.hook("new.user")
|
|
|
|
@utils.hook("new.channel")
|
2016-03-29 11:56:58 +00:00
|
|
|
def new(self, event):
|
|
|
|
if "user" in event:
|
|
|
|
target = event["user"]
|
|
|
|
else:
|
|
|
|
target = event["channel"]
|
|
|
|
target.last_stdout = None
|
|
|
|
target.last_stderr = None
|
|
|
|
|
|
|
|
def has_command(self, command):
|
2018-08-31 11:55:52 +00:00
|
|
|
return command.lower() in self.events.on("received").on(
|
2016-03-29 11:56:58 +00:00
|
|
|
"command").get_children()
|
2019-01-30 11:23:17 +00:00
|
|
|
def get_hooks(self, command):
|
2018-09-19 12:25:12 +00:00
|
|
|
return self.events.on("received.command").on(command
|
2019-01-30 11:23:17 +00:00
|
|
|
).get_hooks()
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2016-03-30 11:49:46 +00:00
|
|
|
def is_highlight(self, server, s):
|
2018-09-18 23:44:04 +00:00
|
|
|
if s and s[-1] in [":", ","]:
|
2019-06-28 22:33:14 +00:00
|
|
|
return server.is_own_nickname(s[:-1])
|
2016-03-30 11:49:46 +00:00
|
|
|
|
2018-12-22 01:00:38 +00:00
|
|
|
def _get_aliases(self, server):
|
|
|
|
return server.get_setting("command-aliases", {})
|
|
|
|
def _set_aliases(self, server, aliases):
|
|
|
|
server.set_setting("command-aliases", aliases)
|
|
|
|
|
2019-04-14 20:54:02 +00:00
|
|
|
def _alias_arg_replace(self, s, args_split):
|
|
|
|
for match in REGEX_ARG_NUMBER.finditer(s):
|
2019-09-30 09:15:12 +00:00
|
|
|
if match.group(1):
|
|
|
|
index = int(match.group(1))
|
|
|
|
continuous = match.group(2) == "-"
|
2019-09-30 15:33:21 +00:00
|
|
|
if index >= len(args_split):
|
|
|
|
raise IndexError("Unknown alias arg index")
|
2019-09-30 09:15:12 +00:00
|
|
|
else:
|
2019-09-30 15:33:21 +00:00
|
|
|
index = 0
|
2019-09-30 09:15:12 +00:00
|
|
|
continuous = True
|
2019-04-14 20:54:02 +00:00
|
|
|
|
|
|
|
if continuous:
|
2019-09-30 15:33:21 +00:00
|
|
|
replace = " ".join(args_split[index:])
|
2019-04-14 20:54:02 +00:00
|
|
|
else:
|
|
|
|
replace = args_split[index]
|
|
|
|
s = s.replace(match.group(0), replace)
|
|
|
|
return s.split(" ")
|
|
|
|
|
2019-01-23 20:35:28 +00:00
|
|
|
def _command_method(self, target, server):
|
|
|
|
return target.get_setting(COMMAND_METHOD,
|
2019-07-04 13:06:40 +00:00
|
|
|
server.get_setting(COMMAND_METHOD,
|
2019-09-04 13:27:10 +00:00
|
|
|
self.bot.get_setting(COMMAND_METHOD, "PRIVMSG")))
|
2019-01-23 20:35:28 +00:00
|
|
|
|
2019-05-20 05:39:58 +00:00
|
|
|
def _find_command_hook(self, server, command, is_channel, args_split):
|
2018-12-22 01:00:38 +00:00
|
|
|
if not self.has_command(command):
|
2019-05-18 17:35:47 +00:00
|
|
|
aliases = self._get_aliases(server)
|
2018-12-22 01:00:38 +00:00
|
|
|
if command.lower() in aliases:
|
2018-12-22 01:01:25 +00:00
|
|
|
command, _, new_args = aliases[command.lower()].partition(" ")
|
2019-04-14 20:54:02 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
args_split = self._alias_arg_replace(new_args, args_split)
|
|
|
|
except IndexError:
|
2019-09-12 20:53:35 +00:00
|
|
|
return None, None, None
|
2018-12-22 01:00:38 +00:00
|
|
|
|
2019-05-18 17:35:47 +00:00
|
|
|
hook = None
|
2019-07-11 12:31:35 +00:00
|
|
|
channel_skip = False
|
|
|
|
private_skip = False
|
2016-03-29 15:22:22 +00:00
|
|
|
if self.has_command(command):
|
2019-01-30 11:23:17 +00:00
|
|
|
for potential_hook in self.get_hooks(command):
|
2019-01-30 11:26:54 +00:00
|
|
|
alias_of = self._get_alias_of(potential_hook)
|
2019-01-30 11:20:14 +00:00
|
|
|
if alias_of:
|
|
|
|
if self.has_command(alias_of):
|
2019-01-30 11:26:54 +00:00
|
|
|
potential_hook = self.get_hooks(alias_of)[0]
|
2019-01-30 11:20:14 +00:00
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
"'%s' is an alias of unknown command '%s'"
|
|
|
|
% (command.lower(), alias_of.lower()))
|
|
|
|
|
2019-06-26 09:59:52 +00:00
|
|
|
if not is_channel and potential_hook.get_kwarg("channel_only",
|
|
|
|
False):
|
2019-07-11 12:31:35 +00:00
|
|
|
channel_skip = True
|
2019-01-30 11:20:14 +00:00
|
|
|
continue
|
2019-06-26 09:59:52 +00:00
|
|
|
if is_channel and potential_hook.get_kwarg("private_only",
|
|
|
|
False):
|
2019-07-11 12:31:35 +00:00
|
|
|
private_skip = True
|
2019-01-30 11:20:14 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
hook = potential_hook
|
2019-01-30 19:15:11 +00:00
|
|
|
break
|
2016-03-29 15:22:22 +00:00
|
|
|
|
2019-07-11 12:31:35 +00:00
|
|
|
if not hook and (private_skip or channel_skip):
|
|
|
|
raise BadContextException("channel" if channel_skip else "private")
|
|
|
|
|
2019-09-12 20:53:35 +00:00
|
|
|
return hook, command, args_split
|
2016-03-29 15:22:22 +00:00
|
|
|
|
2019-06-14 11:01:55 +00:00
|
|
|
def _check(self, context, kwargs, requests=[]):
|
2019-06-14 10:42:12 +00:00
|
|
|
event_hook = self.events.on(context).on("command")
|
|
|
|
|
2019-06-14 11:01:55 +00:00
|
|
|
returns = []
|
|
|
|
if requests:
|
|
|
|
for request, request_args in requests:
|
2019-06-26 10:04:41 +00:00
|
|
|
returns.append(event_hook.on(request).call_for_result_unsafe(
|
2019-06-14 11:01:55 +00:00
|
|
|
**kwargs, request_args=request_args))
|
|
|
|
else:
|
|
|
|
returns = event_hook.call_unsafe(**kwargs)
|
2019-06-14 10:42:12 +00:00
|
|
|
|
|
|
|
hard_fail = False
|
|
|
|
force_success = False
|
|
|
|
error = None
|
|
|
|
for returned in returns:
|
2019-09-26 11:14:55 +00:00
|
|
|
if returned:
|
|
|
|
type, message = returned
|
|
|
|
if type == utils.consts.PERMISSION_HARD_FAIL:
|
|
|
|
error = message
|
|
|
|
hard_fail = True
|
|
|
|
break
|
|
|
|
elif type == utils.consts.PERMISSION_FORCE_SUCCESS:
|
|
|
|
force_success = True
|
|
|
|
break
|
|
|
|
elif type == utils.consts.PERMISSION_ERROR:
|
2019-09-26 11:19:50 +00:00
|
|
|
error = message
|
2019-06-14 10:42:12 +00:00
|
|
|
|
2019-06-20 10:51:04 +00:00
|
|
|
if hard_fail:
|
2019-09-26 11:14:55 +00:00
|
|
|
return False, error
|
2019-06-20 10:51:04 +00:00
|
|
|
elif not force_success and error:
|
|
|
|
return False, error
|
|
|
|
else:
|
|
|
|
return True, None
|
2019-06-14 10:42:12 +00:00
|
|
|
|
2019-06-15 17:42:14 +00:00
|
|
|
|
|
|
|
def _check_assert(self, check_kwargs,
|
|
|
|
check: typing.Union[utils.Check, utils.MultiCheck]):
|
2019-06-20 10:51:04 +00:00
|
|
|
checks = check.to_multi() # both Check and MultiCheck has this func
|
2019-06-15 17:42:14 +00:00
|
|
|
is_success, message = self._check("check", check_kwargs,
|
|
|
|
checks.requests())
|
|
|
|
if not is_success:
|
|
|
|
raise utils.EventError(message)
|
2019-06-14 10:42:12 +00:00
|
|
|
|
2019-05-21 22:14:56 +00:00
|
|
|
def command(self, server, target, target_str, is_channel, user, command,
|
|
|
|
args_split, tags, hook, **kwargs):
|
2019-06-07 14:30:53 +00:00
|
|
|
message_tags = server.has_capability(MESSAGE_TAGS_CAP)
|
2019-06-26 09:59:52 +00:00
|
|
|
expect_output = hook.get_kwarg("expect_output", True)
|
2019-06-07 14:30:53 +00:00
|
|
|
|
2019-05-18 17:35:47 +00:00
|
|
|
module_name = self._get_prefix(hook) or ""
|
|
|
|
if not module_name and hasattr(hook.function, "__self__"):
|
|
|
|
module_name = hook.function.__self__._name
|
2019-01-30 19:35:43 +00:00
|
|
|
|
2019-05-21 12:02:40 +00:00
|
|
|
send_tags = {}
|
2019-06-07 14:30:53 +00:00
|
|
|
if message_tags:
|
|
|
|
msgid = MSGID_TAG.get_value(tags)
|
|
|
|
if msgid:
|
|
|
|
send_tags["+draft/reply"] = msgid
|
|
|
|
|
2019-06-07 14:57:15 +00:00
|
|
|
if expect_output:
|
|
|
|
server.send(utils.irc.protocol.tagmsg(target_str,
|
|
|
|
{"+draft/typing": "active"}), immediate=True)
|
2019-05-21 11:56:05 +00:00
|
|
|
|
2019-05-21 22:09:32 +00:00
|
|
|
stdout = outs.StdOut(server, module_name, target, target_str, send_tags)
|
|
|
|
stderr = outs.StdErr(server, module_name, target, target_str, send_tags)
|
2019-05-18 17:35:47 +00:00
|
|
|
command_method = self._command_method(target, server)
|
2019-01-30 19:35:43 +00:00
|
|
|
|
2019-06-07 14:30:53 +00:00
|
|
|
ret = False
|
2019-07-07 10:29:22 +00:00
|
|
|
has_out = False
|
2019-06-07 14:30:53 +00:00
|
|
|
|
2019-06-26 09:59:52 +00:00
|
|
|
if hook.get_kwarg("remove_empty", True):
|
2019-05-18 17:35:47 +00:00
|
|
|
args_split = list(filter(None, args_split))
|
|
|
|
|
2019-09-26 10:56:14 +00:00
|
|
|
event_kwargs = {"hook": hook, "user": user, "server": server,
|
|
|
|
"target": target, "is_channel": is_channel, "tags": tags,
|
|
|
|
"args_split": args_split, "command": command,
|
|
|
|
"args": " ".join(args_split), "stdout": stdout,
|
|
|
|
"stderr": stderr}
|
|
|
|
event_kwargs.update(kwargs)
|
|
|
|
|
|
|
|
check_assert = lambda check: self._check_assert(event_kwargs, check)
|
|
|
|
event_kwargs["check_assert"] = check_assert
|
|
|
|
|
|
|
|
check_success, check_message = self._check("preprocess", event_kwargs)
|
|
|
|
if not check_success:
|
|
|
|
if check_message:
|
|
|
|
stderr.write(check_message).send(command_method)
|
|
|
|
return True
|
|
|
|
|
|
|
|
new_event = self.events.on(hook.event_name).make_event(**event_kwargs)
|
|
|
|
|
|
|
|
self.log.trace("calling command '%s': %s", [command, new_event.kwargs])
|
|
|
|
|
|
|
|
try:
|
|
|
|
hook.call(new_event)
|
|
|
|
except utils.EventError as e:
|
|
|
|
stderr.write(str(e)).send(command_method)
|
|
|
|
return True
|
|
|
|
|
|
|
|
if not hook.get_kwarg("skip_out", False):
|
|
|
|
has_out = stdout.has_text() or stderr.has_text()
|
|
|
|
if has_out:
|
|
|
|
command_method = self._command_method(target, server)
|
|
|
|
stdout.send(command_method)
|
|
|
|
stderr.send(command_method)
|
|
|
|
target.last_stdout = stdout
|
|
|
|
target.last_stderr = stderr
|
|
|
|
ret = new_event.eaten
|
2019-06-07 14:30:53 +00:00
|
|
|
|
2019-07-07 10:29:22 +00:00
|
|
|
if expect_output and message_tags and not has_out:
|
2019-06-07 14:30:53 +00:00
|
|
|
server.send(utils.irc.protocol.tagmsg(target_str,
|
|
|
|
{"+draft/typing": "done"}), immediate=True)
|
2016-03-29 15:22:22 +00:00
|
|
|
|
2019-06-07 15:21:11 +00:00
|
|
|
return ret
|
|
|
|
|
2019-09-26 10:56:14 +00:00
|
|
|
@utils.hook("preprocess.command")
|
|
|
|
def _check_min_args(self, event):
|
|
|
|
min_args = event["hook"].get_kwarg("min_args")
|
|
|
|
if min_args and len(event["args_split"]) < min_args:
|
|
|
|
usage = self._get_usage(event["hook"], event["command"],
|
|
|
|
event["command_prefix"])
|
2019-09-26 11:14:55 +00:00
|
|
|
error = None
|
2019-09-26 10:56:14 +00:00
|
|
|
if usage:
|
2019-09-26 11:14:55 +00:00
|
|
|
error = "Not enough arguments, usage: %s" % usage
|
2019-09-26 10:56:14 +00:00
|
|
|
else:
|
2019-09-26 11:14:55 +00:00
|
|
|
error = "Not enough arguments (minimum: %d)" % min_args
|
|
|
|
return utils.consts.PERMISSION_HARD_FAIL, error
|
2019-09-26 10:56:14 +00:00
|
|
|
|
2019-01-29 08:32:22 +00:00
|
|
|
def _command_prefix(self, server, channel):
|
|
|
|
return channel.get_setting("command-prefix",
|
|
|
|
server.get_setting("command-prefix", "!"))
|
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("received.message.channel", priority=EventManager.PRIORITY_LOW)
|
2016-03-29 11:56:58 +00:00
|
|
|
def channel_message(self, event):
|
2018-11-12 22:55:40 +00:00
|
|
|
commands_enabled = event["channel"].get_setting("commands", True)
|
|
|
|
if not commands_enabled:
|
|
|
|
return
|
|
|
|
|
2019-01-29 08:32:22 +00:00
|
|
|
command_prefix = self._command_prefix(event["server"], event["channel"])
|
2019-05-18 17:35:47 +00:00
|
|
|
command = None
|
|
|
|
args_split = None
|
2016-03-29 11:56:58 +00:00
|
|
|
if event["message_split"][0].startswith(command_prefix):
|
2019-06-16 17:40:25 +00:00
|
|
|
if not event["channel"].get_setting("prefixed-commands",True):
|
2018-11-12 22:59:21 +00:00
|
|
|
return
|
2016-03-29 11:56:58 +00:00
|
|
|
command = event["message_split"][0].replace(
|
|
|
|
command_prefix, "", 1).lower()
|
2019-05-18 17:35:47 +00:00
|
|
|
args_split = event["message_split"][1:]
|
2016-03-30 11:49:46 +00:00
|
|
|
elif len(event["message_split"]) > 1 and self.is_highlight(
|
|
|
|
event["server"], event["message_split"][0]):
|
|
|
|
command = event["message_split"][1].lower()
|
2019-05-18 17:35:47 +00:00
|
|
|
args_split = event["message_split"][2:]
|
|
|
|
|
|
|
|
if command:
|
2019-06-16 17:40:25 +00:00
|
|
|
if event["action"]:
|
|
|
|
return
|
|
|
|
|
2019-07-11 12:31:35 +00:00
|
|
|
try:
|
2019-09-12 20:53:35 +00:00
|
|
|
hook, command, args_split = self._find_command_hook(
|
|
|
|
event["server"], command, True, args_split)
|
2019-07-11 12:31:35 +00:00
|
|
|
except BadContextException:
|
|
|
|
event["channel"].send_message(
|
|
|
|
"%s: That command is not valid in a channel" %
|
|
|
|
event["user"].nickname)
|
|
|
|
return
|
|
|
|
|
2019-05-18 17:35:47 +00:00
|
|
|
if hook:
|
2019-05-21 22:14:56 +00:00
|
|
|
self.command(event["server"], event["channel"],
|
|
|
|
event["target_str"], True, event["user"], command,
|
2019-05-23 10:44:52 +00:00
|
|
|
args_split, event["tags"], hook,
|
|
|
|
command_prefix=command_prefix)
|
2019-06-24 21:53:28 +00:00
|
|
|
else:
|
|
|
|
self.events.on("unknown.command").call(server=event["server"],
|
|
|
|
target=event["channel"], user=event["user"],
|
2019-06-24 21:54:34 +00:00
|
|
|
command=command, command_prefix=command_prefix,
|
|
|
|
is_channel=True)
|
2019-05-18 17:35:47 +00:00
|
|
|
else:
|
2019-06-16 17:40:25 +00:00
|
|
|
regex_hooks = self.events.on("command.regex").get_hooks()
|
|
|
|
for hook in regex_hooks:
|
|
|
|
if event["action"] and hook.get_kwarg("ignore_action", True):
|
|
|
|
continue
|
|
|
|
|
2019-05-18 17:35:47 +00:00
|
|
|
pattern = hook.get_kwarg("pattern", None)
|
|
|
|
if not pattern and hook.get_kwarg("pattern-url", None) == "1":
|
|
|
|
pattern = utils.http.REGEX_URL
|
|
|
|
|
|
|
|
if pattern:
|
2019-05-19 07:41:20 +00:00
|
|
|
match = re.search(pattern, event["message"])
|
2019-05-18 17:35:47 +00:00
|
|
|
if match:
|
|
|
|
command = hook.get_kwarg("command", "")
|
|
|
|
res = self.command(event["server"], event["channel"],
|
2019-05-21 22:14:56 +00:00
|
|
|
event["target_str"], True, event["user"], command,
|
|
|
|
"", event["tags"], hook, match=match,
|
2019-10-03 15:42:11 +00:00
|
|
|
message=event["message"], command_prefix="",
|
|
|
|
action=event["action"])
|
2019-05-18 17:35:47 +00:00
|
|
|
|
|
|
|
if res:
|
|
|
|
break
|
2016-03-29 15:22:22 +00:00
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("received.message.private", priority=EventManager.PRIORITY_LOW)
|
2016-03-29 11:56:58 +00:00
|
|
|
def private_message(self, event):
|
2019-05-06 22:26:13 +00:00
|
|
|
if event["message_split"] and not event["action"]:
|
2016-03-29 15:22:22 +00:00
|
|
|
command = event["message_split"][0].lower()
|
2019-05-23 15:10:31 +00:00
|
|
|
|
|
|
|
# this should help catch commands when people try to do prefixed
|
|
|
|
# commands ('!help' rather than 'help') in PM
|
2019-05-23 15:03:49 +00:00
|
|
|
command = command.lstrip("".join(NON_ALPHANUMERIC))
|
2019-05-23 15:10:31 +00:00
|
|
|
|
2019-05-20 05:39:58 +00:00
|
|
|
args_split = event["message_split"][1:]
|
|
|
|
|
2019-07-11 12:31:35 +00:00
|
|
|
try:
|
2019-09-12 20:53:35 +00:00
|
|
|
hook, command, args_split = self._find_command_hook(
|
|
|
|
event["server"], command, False, args_split)
|
2019-07-11 12:31:35 +00:00
|
|
|
except BadContextException:
|
|
|
|
event["user"].send_message(
|
|
|
|
"That command is not valid in a PM")
|
|
|
|
return
|
2019-05-20 05:39:58 +00:00
|
|
|
|
2019-05-18 17:35:47 +00:00
|
|
|
if hook:
|
2019-05-21 22:14:56 +00:00
|
|
|
self.command(event["server"], event["user"],
|
2019-05-22 13:26:22 +00:00
|
|
|
event["user"].nickname, False, event["user"], command,
|
2019-05-23 10:44:52 +00:00
|
|
|
args_split, event["tags"], hook, command_prefix="")
|
2019-06-24 21:53:28 +00:00
|
|
|
else:
|
|
|
|
self.events.on("unknown.command").call(server=event["server"],
|
|
|
|
target=event["user"], user=event["user"], command=command,
|
2019-06-24 21:54:34 +00:00
|
|
|
command_prefix="", is_channel=False)
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2019-01-29 08:32:22 +00:00
|
|
|
def _get_usage(self, hook, command, command_prefix=""):
|
2019-01-29 08:33:32 +00:00
|
|
|
command = "%s%s" % (command_prefix, command)
|
2019-07-28 11:35:04 +00:00
|
|
|
usages = hook.get_kwargs("usage")
|
2018-12-29 21:35:06 +00:00
|
|
|
|
|
|
|
if usages:
|
|
|
|
return " | ".join(
|
|
|
|
"%s %s" % (command, usage) for usage in usages)
|
2019-09-01 07:34:55 +00:00
|
|
|
return None
|
2018-10-28 11:50:56 +00:00
|
|
|
|
2018-10-04 10:04:24 +00:00
|
|
|
def _get_prefix(self, hook):
|
|
|
|
return hook.get_kwarg("prefix", None)
|
2018-10-10 09:42:41 +00:00
|
|
|
def _get_alias_of(self, hook):
|
|
|
|
return hook.get_kwarg("alias_of", None)
|
2018-09-26 17:26:10 +00:00
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("received.command.more", skip_out=True)
|
2016-03-29 11:56:58 +00:00
|
|
|
def more(self, event):
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2018-09-30 16:29:09 +00:00
|
|
|
:help: Show more output from the last command
|
2018-09-26 17:27:17 +00:00
|
|
|
"""
|
2016-03-29 15:22:22 +00:00
|
|
|
if event["target"].last_stdout and event["target"].last_stdout.has_text():
|
2019-01-25 07:11:45 +00:00
|
|
|
event["target"].last_stdout.send(
|
|
|
|
self._command_method(event["target"], event["server"]))
|
2016-03-29 11:56:58 +00:00
|
|
|
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("send.stdout")
|
2016-03-29 11:56:58 +00:00
|
|
|
def send_stdout(self, event):
|
2019-05-22 07:24:59 +00:00
|
|
|
target = event["target"]
|
2019-02-09 17:49:01 +00:00
|
|
|
stdout = outs.StdOut(event["server"], event["module_name"],
|
2019-05-22 07:24:59 +00:00
|
|
|
target, event.get("target_str", target.name), {})
|
2018-11-07 11:27:10 +00:00
|
|
|
|
|
|
|
if event.get("hide_prefix", False):
|
|
|
|
stdout.hide_prefix()
|
|
|
|
|
2019-01-23 21:39:05 +00:00
|
|
|
stdout.write(event["message"]).send(
|
|
|
|
self._command_method(event["target"], event["server"]))
|
2016-03-29 11:56:58 +00:00
|
|
|
if stdout.has_text():
|
|
|
|
event["target"].last_stdout = stdout
|
2018-10-03 12:22:37 +00:00
|
|
|
@utils.hook("send.stderr")
|
2016-03-29 11:56:58 +00:00
|
|
|
def send_stderr(self, event):
|
2019-05-22 07:24:59 +00:00
|
|
|
target = event["target"]
|
2019-02-09 17:49:01 +00:00
|
|
|
stderr = outs.StdErr(event["server"], event["module_name"],
|
2019-05-22 07:24:59 +00:00
|
|
|
target, event.get("target_str", target.name), {})
|
2018-11-07 11:27:10 +00:00
|
|
|
|
|
|
|
if event.get("hide_prefix", False):
|
|
|
|
stderr.hide_prefix()
|
|
|
|
|
2019-01-23 21:39:05 +00:00
|
|
|
stderr.write(event["message"]).send(
|
|
|
|
self._command_method(event["target"], event["server"]))
|
2016-03-29 11:56:58 +00:00
|
|
|
if stderr.has_text():
|
|
|
|
event["target"].last_stderr = stderr
|
2018-12-22 01:00:38 +00:00
|
|
|
|
|
|
|
@utils.hook("received.command.alias", min_args=2)
|
|
|
|
def add_alias(self, event):
|
|
|
|
"""
|
|
|
|
:help: Add a command alias
|
|
|
|
:usage: <alias> <command> <args...>
|
|
|
|
:permission: command-alias
|
|
|
|
"""
|
|
|
|
alias = event["args_split"][0].lower()
|
|
|
|
command = " ".join(event["args_split"][1:])
|
|
|
|
aliases = self._get_aliases(event["server"])
|
|
|
|
aliases[alias] = command
|
|
|
|
self._set_aliases(event["server"], aliases)
|
|
|
|
event["stdout"].write("Added '%s' alias" % alias)
|
2018-12-22 01:05:47 +00:00
|
|
|
|
|
|
|
@utils.hook("received.command.removealias", min_args=1)
|
|
|
|
def remove_alias(self, event):
|
|
|
|
"""
|
|
|
|
:help: Remove a command alias
|
|
|
|
:usage: <alias>
|
|
|
|
:permission: command-alias
|
|
|
|
"""
|
|
|
|
alias = event["args_split"][0].lower()
|
|
|
|
aliases = self._get_aliases(event["server"])
|
|
|
|
|
|
|
|
if not alias in aliases:
|
|
|
|
raise utils.EventError("No '%s' alias" % alias)
|
|
|
|
|
|
|
|
del aliases[alias]
|
2018-12-22 01:06:42 +00:00
|
|
|
self._set_aliases(event["server"], aliases)
|
2018-12-22 01:05:47 +00:00
|
|
|
event["stdout"].write("Removed '%s' alias" % alias)
|
2019-06-14 11:09:42 +00:00
|
|
|
|
|
|
|
@utils.hook("check.command.self")
|
|
|
|
def check_command_self(self, event):
|
|
|
|
if event["server"].irc_lower(event["request_args"][0]
|
|
|
|
) == event["user"].name:
|
2019-09-26 11:14:55 +00:00
|
|
|
return utils.consts.PERMISSION_FORCE_SUCCESS, None
|
2019-06-14 11:09:42 +00:00
|
|
|
else:
|
2019-09-26 11:14:55 +00:00
|
|
|
return (utils.consts.PERMISSION_ERROR,
|
|
|
|
"You do not have permission to do this")
|
2019-07-01 12:51:13 +00:00
|
|
|
|
|
|
|
@utils.hook("check.command.is-channel")
|
2019-07-01 18:20:36 +00:00
|
|
|
def check_command_is_channel(self, event):
|
2019-07-01 12:51:13 +00:00
|
|
|
if event["is_channel"]:
|
2019-09-26 11:14:55 +00:00
|
|
|
return utils.consts.PERMISSION_FORCE_SUCCESS, None
|
2019-07-01 12:51:13 +00:00
|
|
|
else:
|
2019-09-26 11:14:55 +00:00
|
|
|
return (utils.consts.PERMISSION_ERROR,
|
|
|
|
"This command can only be used in-channel")
|