Browse Source

b1nzy code review

pull/160/head
Andrei Zbikowski 5 years ago
committed by A5rocks
parent
commit
7bd72b2d92
  1. 36
      disco/bot/bot.py
  2. 10
      disco/util/config.py
  3. 4
      docs/bot_tutorial/first_steps.md

36
disco/bot/bot.py

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

10
disco/util/config.py

@ -10,6 +10,16 @@ class Config(object):
k: getattr(self, k) for k in dir(self.__class__) k: getattr(self, k) for k in dir(self.__class__)
}) })
# issue `DeprecationWarning`s
if hasattr(self.__class__, 'deprecated') and obj:
for deprecated_key, replacement in self.__class__.deprecated.items():
if deprecated_key in obj.keys():
warning_text = '"{0}" is deprecated.'.format(deprecated_key)
warning_text += ('\nReplace "{0}" with "{1}".'.format(deprecated_key, replacement)
if replacement else '')
raise DeprecationWarning(warning_text)
if obj: if obj:
self.__dict__.update(obj) self.__dict__.update(obj)

4
docs/bot_tutorial/first_steps.md

@ -35,10 +35,10 @@ Now let's setup the configuration file. To start off with we'll paste the follow
``` ```
{% hint style='tip' %} {% hint style='tip' %}
If you want to use a prefix, you add this into the `"bot"` dictionary: If you want to use a prefix (or even multiple), you add something this into the `"bot"` dictionary:
```json ```json
"requires_mentions": false, "requires_mentions": false,
"commands_prefix": "!" "command_prefixes": ["!", "?"]
``` ```
{% endhint %} {% endhint %}

Loading…
Cancel
Save