|
|
@ -45,8 +45,8 @@ class BotConfig(Config): |
|
|
|
command parsing. |
|
|
|
commands_prefix : str |
|
|
|
A string prefix that is required for a message to be considered for |
|
|
|
command parsing. |
|
|
|
commands_prefixes : list[string] |
|
|
|
command parsing. **DEPRECATED** |
|
|
|
command_prefixes : list[string] |
|
|
|
A list of string prefixes that are required for a message to be considered |
|
|
|
for command parsing. |
|
|
|
commands_prefix_getter : Optional[function] |
|
|
@ -80,6 +80,8 @@ class BotConfig(Config): |
|
|
|
http_port : int |
|
|
|
The port for the HTTP Flask server (if enabled). |
|
|
|
""" |
|
|
|
deprecated = {'commands_prefix': 'command_prefixes'} |
|
|
|
|
|
|
|
levels = {} |
|
|
|
plugins = [] |
|
|
|
plugin_config = {} |
|
|
@ -93,8 +95,8 @@ class BotConfig(Config): |
|
|
|
'role': True, |
|
|
|
'user': True, |
|
|
|
} |
|
|
|
commands_prefix = '' |
|
|
|
commands_prefixes = [] |
|
|
|
commands_prefix = '' # now deprecated |
|
|
|
command_prefixes = [] |
|
|
|
commands_prefix_getter = None |
|
|
|
commands_allow_edit = True |
|
|
|
commands_level_getter = None |
|
|
@ -283,7 +285,7 @@ class Bot(LoggingClass): |
|
|
|
else: |
|
|
|
self.command_matches_re = None |
|
|
|
|
|
|
|
def get_commands_for_message(self, require_mention, mention_rules, msg_prefix, msg, prefixes=None): |
|
|
|
def get_commands_for_message(self, require_mention, mention_rules, prefixes, msg): |
|
|
|
""" |
|
|
|
Generator of all commands that a given message object triggers, based on |
|
|
|
the bots plugins and configuration. |
|
|
@ -295,12 +297,10 @@ class Bot(LoggingClass): |
|
|
|
mention_rules : dict(str, bool) |
|
|
|
Whether `user`, `everyone`, and `role` mentions are allowed. Defaults to: |
|
|
|
`{'user': True, 'everyone': False, 'role': False}` |
|
|
|
msg_prefix : str |
|
|
|
The prefix to check the message starts with. |
|
|
|
prefixes : list[string] |
|
|
|
A list of prefixes to check the message starts with. |
|
|
|
msg : :class:`disco.types.message.Message` |
|
|
|
The message object to parse and find matching commands for. |
|
|
|
prefixes : list[string] |
|
|
|
A list of prefixes to check the message starts with (combines with `prefix`) |
|
|
|
|
|
|
|
Yields |
|
|
|
------- |
|
|
@ -309,7 +309,6 @@ class Bot(LoggingClass): |
|
|
|
""" |
|
|
|
# somebody better figure out what this yields... |
|
|
|
|
|
|
|
prefixes = (prefixes or []) + [msg_prefix] # don't break the tests and keep compatibility |
|
|
|
content = msg.content |
|
|
|
|
|
|
|
if require_mention: |
|
|
@ -346,18 +345,18 @@ class Bot(LoggingClass): |
|
|
|
content = content.replace('<@{}>'.format(role), '', 1) |
|
|
|
|
|
|
|
content = content.lstrip() |
|
|
|
else: |
|
|
|
# Scan through the prefixes to find the first one that matches. |
|
|
|
# This may lead to unexpected results, but said unexpectedness |
|
|
|
# should be easy to avoid. An example of the unexpected results |
|
|
|
# that may occur would be if one prefix was `!` and one was `!a`. |
|
|
|
if not any([content.startswith(prefix) for prefix in prefixes]): |
|
|
|
return [] |
|
|
|
else: |
|
|
|
for prefix in prefixes: |
|
|
|
if prefix and content.startswith(prefix): |
|
|
|
content = content[len(prefix):] |
|
|
|
break |
|
|
|
|
|
|
|
# Scan through the prefixes to find the first one that matches. |
|
|
|
# This may lead to unexpected results, but said unexpectedness |
|
|
|
# should be easy to avoid. An example of the unexpected results |
|
|
|
# that may occur would be if one prefix was `!` and one was `!a`. |
|
|
|
if any([content.startswith(prefix) for prefix in prefixes]) and not require_mention: |
|
|
|
for prefix in prefixes: |
|
|
|
if prefix and content.startswith(prefix): |
|
|
|
content = content[len(prefix):] |
|
|
|
break |
|
|
|
elif not require_mention: |
|
|
|
return [] |
|
|
|
|
|
|
|
if not self.command_matches_re or not self.command_matches_re.match(content): |
|
|
|
return [] |
|
|
@ -411,17 +410,14 @@ class Bot(LoggingClass): |
|
|
|
bool |
|
|
|
Whether any commands where successfully triggered by the message. |
|
|
|
""" |
|
|
|
if not self.config.commands_require_mention and self.config.commands_prefix_getter: |
|
|
|
custom_message_prefixes = self.config.commands_prefix_getter(msg) |
|
|
|
else: |
|
|
|
custom_message_prefixes = [] |
|
|
|
custom_message_prefixes = (self.config.commands_prefix_getter(msg) |
|
|
|
if self.config.commands_prefix_getter else []) |
|
|
|
|
|
|
|
commands = list(self.get_commands_for_message( |
|
|
|
self.config.commands_require_mention, |
|
|
|
self.config.commands_mention_rules, |
|
|
|
self.config.commands_prefix, |
|
|
|
custom_message_prefixes or self.config.command_prefixes, |
|
|
|
msg, |
|
|
|
self.config.commands_prefixes + custom_message_prefixes, |
|
|
|
)) |
|
|
|
|
|
|
|
if not len(commands): |
|
|
|