Browse Source

Increase the weight of group matches over command argument matches (#33)

pull/38/head
Andrei Zbikowski 8 years ago
committed by GitHub
parent
commit
30fbb9cbe7
  1. 9
      disco/bot/bot.py
  2. 23
      tests/test_bot.py

9
disco/bot/bot.py

@ -303,10 +303,12 @@ class Bot(LoggingClass):
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
options = []
for command in self.commands: for command in self.commands:
match = command.compiled_regex.match(content) match = command.compiled_regex.match(content)
if match: if match:
yield (command, match) options.append((command, match))
return sorted(options, key=lambda obj: obj[0].group is None)
def get_level(self, actor): def get_level(self, actor):
level = CommandLevels.DEFAULT level = CommandLevels.DEFAULT
@ -359,14 +361,13 @@ class Bot(LoggingClass):
if not len(commands): if not len(commands):
return False return False
result = False
for command, match in commands: for command, match in commands:
if not self.check_command_permissions(command, msg): if not self.check_command_permissions(command, msg):
continue continue
if command.plugin.execute(CommandEvent(command, msg, match)): if command.plugin.execute(CommandEvent(command, msg, match)):
result = True return True
return result return False
def on_message_create(self, event): def on_message_create(self, event):
if event.message.author.id == self.client.state.me.id: if event.message.author.id == self.client.state.me.id:

23
tests/test_bot.py

@ -69,3 +69,26 @@ class TestBot(TestCase):
self.assertNotEqual(self.bot.command_matches_re.match('t b'), None) self.assertNotEqual(self.bot.command_matches_re.match('t b'), None)
self.assertEqual(self.bot.command_matches_re.match('testing b'), None) self.assertEqual(self.bot.command_matches_re.match('testing b'), None)
self.assertEqual(self.bot.command_matches_re.match('testlmao a'), None) self.assertEqual(self.bot.command_matches_re.match('testlmao a'), None)
def test_group_and_command(self):
plugin = Object()
plugin.bot = self.bot
self.bot._commands = [
Command(plugin, None, 'test'),
Command(plugin, None, 'a', group='test'),
Command(plugin, None, 'b', group='test'),
]
self.bot.recompute()
msg = Object()
msg.content = '!test a'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg))
self.assertEqual(commands[0][0], self.bot._commands[1])
self.assertEqual(commands[1][0], self.bot._commands[0])
msg.content = '!test'
commands = list(self.bot.get_commands_for_message(False, None, '!', msg))
self.assertEqual(commands[0][0], self.bot._commands[0])

Loading…
Cancel
Save