From 17f3fc71f06f4b27ee3831114dcca7b80384e334 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 12 May 2014 16:31:10 +0200 Subject: elchos is now a Reaktor submodule --- elchos/config.py | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 elchos/config.py (limited to 'elchos/config.py') diff --git a/elchos/config.py b/elchos/config.py new file mode 100644 index 0000000..eeeacd8 --- /dev/null +++ b/elchos/config.py @@ -0,0 +1,78 @@ +import socket +name = socket.gethostname() +cfg_file = "/krebs/config.sh" + +# TODO: shell config file cannot contain variables or anything fancy +ret ={} + +import shlex +## load config file, lex split every line, split at = +with open(cfg_file) as f: + for line in f: + k,v = shlex.split(line)[0].split("=",1) + ret[k] = v + +#irc_server = 'irc.freenode.net' +irc_server = ret["IRC_SERVER"] + +debug = False + +state_dir='/krebs/painload/Reaktor' +irc_alarm_timeout = 300 +irc_hammer_interval = 10 +irc_kill_timeout = 360 +irc_nickname = name +irc_restart_timeout = 5 +irc_port = 6667 +irc_channels = [ + '#elchOS' +] + +admin_file='admin.lst' +auth_file='auth.lst' + +def default_command(cmd): + return { + 'capname': cmd, + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', + 'argv': [ 'commands/' + cmd ] } + +def elch_command(cmd): + return { + 'capname': cmd, + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', + 'argv': [ 'elchos/commands/' + cmd ] } + +public_commands = [ + default_command('caps'), + default_command('hello'), + default_command('uptime'), + default_command('badcommand'), + default_command('rev'), + elch_command('search'), + elch_command('list_downloads'), + elch_command('io'), + elch_command('ips'), + elch_command('shares'), + elch_command('onion'), + default_command('nocommand'), + # command not found + { 'pattern': '^(?:' + name + '|\\*):.*', + 'argv': [ 'commands/respond','You are made of stupid!'] }, + # "highlight" + { 'pattern': '.*\\b' + name + '\\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'), + elch_command('update_search'), + elch_command('refresh_shares'), + elch_command('ftpget'), + elch_command('reboot') +] -- cgit v1.2.3