summaryrefslogtreecommitdiffstats
path: root/Reaktor/titlebot/titlebot.py
diff options
context:
space:
mode:
Diffstat (limited to 'Reaktor/titlebot/titlebot.py')
-rw-r--r--Reaktor/titlebot/titlebot.py64
1 files changed, 64 insertions, 0 deletions
diff --git a/Reaktor/titlebot/titlebot.py b/Reaktor/titlebot/titlebot.py
new file mode 100644
index 00000000..d04789c3
--- /dev/null
+++ b/Reaktor/titlebot/titlebot.py
@@ -0,0 +1,64 @@
+from os import environ,mkdir
+
+debug = False
+
+# CAVEAT name should not contains regex magic
+name = 'bgt_titlebot'
+
+workdir = '/tmp/state'
+
+try:
+ mkdir(workdir)
+except: pass
+
+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 = [
+ '#binaergewitter'
+]
+
+admin_file=workdir+'/'+'admin.lst'
+try:
+ with open(admin_file,"x"): pass
+except: pass
+auth_file=workdir+'/'+'auth.lst'
+
+def default_command(cmd):
+ return {
+ 'capname': cmd,
+ 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P<args>.*))?$',
+ 'argv': [ 'commands/' + cmd ] }
+def dot_command(cmd):
+ return {
+ 'capname': cmd,
+ 'pattern': '\\.' + cmd + '\\s*(?:\\s+(?P<args>.*))?$',
+ 'argv': [ 'titlebot/commands/' + cmd ] }
+
+public_commands = [
+ default_command('caps'),
+ default_command('hello'),
+ default_command('badcommand'),
+ default_command('rev'),
+ default_command('uptime'),
+ default_command('nocommand'),
+ dot_command('list'),
+ dot_command('help'),
+ dot_command('up'),
+ dot_command('new'),
+ dot_command('undo'),
+ dot_command('down'),
+ # identify via direct connect
+ { 'capname': 'identify',
+ 'pattern': 'identify' + '\\s*(?:\\s+(?P<args>.*))?$',
+ 'argv' : [ 'commands/identify' ]}
+]
+commands = [
+ default_command('reload'),
+ dot_command('clear')
+]
+