From f48968d7c849419bdaed49093c23f2a2cc774577 Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 18 Dec 2013 16:58:51 +0100 Subject: Reaktor: listen to own name --- config.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'config.py') diff --git a/config.py b/config.py index 92d97af..1b285e4 100644 --- a/config.py +++ b/config.py @@ -12,13 +12,19 @@ irc_channels = [ '#krebs' ] +def default_command(cmd): + return { + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*$', + 'argv': [ 'commands/' + cmd ] } + irc_commands = [ - { 'pattern': '^(?:asybot|\\*):\\s*caps\\s*$', 'argv': [ 'commands/caps' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*hello\\s*$', 'argv': [ 'commands/hello' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*reload\\s*$', 'argv': [ 'commands/reload' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*badcommand\\s*$', 'argv': [ 'commands/badcommand' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*rev\\s*$', 'argv': [ 'commands/rev' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*uptime\\s*$', 'argv': [ 'commands/uptime' ] }, - { 'pattern': '^(?:asybot|\\*):\\s*nocommand\\s*$', 'argv': [ 'commands/nocommand' ] }, - { 'pattern': '^.*\\basybot(?:\\b[^:].*)?$', 'argv': [ 'commands/say', 'I\'m famous' ] } + default_command('caps'), + default_command('hello'), + default_command('reload'), + default_command('badcommand'), + default_command('rev'), + default_command('uptime'), + default_command('nocommand'), + { 'pattern': '^.*\\b' + name + '(?:\\b[^:].*)?$', + 'argv': [ 'commands/say', 'I\'m famous' ] } ] -- cgit v1.2.3