from os.path import expanduser import re debug = True name = 'crabmanner' workdir = expanduser('~') + '/state' irc_alarm_timeout = 300 irc_hammer_interval = 10 irc_kill_timeout = 360 irc_nickname = name irc_server = 'irc.freenode.org' irc_port = 6667 irc_restart_timeout = 5 irc_channels = [ '#krebs' ] admin_file='admin.lst' auth_file='auth.lst' # name_re is used, so name cannot kill our patterns below name_re = re.escape(name) def default_command(cmd): return { 'capname': cmd, 'pattern': '^(?:' + name_re + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', 'argv': [ 'commands/' + cmd ] } public_commands = [ default_command('caps'), default_command('hello'), default_command('badcommand'), default_command('rev'), default_command('uptime'), default_command('nocommand'), { 'capname': 'tell', 'pattern': '^' + name_re + ':\\s*' + 'tell' + '\\s*(?:\\s+(?P.*))?$', 'argv': [ 'commands/tell-on_privmsg' ], 'env': { 'state_file': workdir + '/tell.txt' } }, # command not found { 'pattern': '^(?:' + name_re + '|\\*):.*', 'argv': [ 'commands/respond','You are made of stupid!'] }, # "highlight" { 'pattern': '.*\\b' + name_re + '\\b.*', 'argv': [ 'commands/say', 'I\'m famous' ] }, # identify via direct connect { 'capname': 'identify', 'pattern': '^identify' + '\\s*(?:\\s+(?P.*))?$', 'argv' : [ 'commands/identify' ]} ] commands = [ default_command('reload') ] on_join = [ { 'capname': 'tell', 'argv': [ 'commands/tell-on_join' ], 'env': { 'state_file': workdir + '/tell.txt' } } ]