aboutsummaryrefslogtreecommitdiffstats
path: root/elchos/config.py
blob: eeeacd8376038fd5cdbf295955ad7667ad0ea578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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<args>.*))?$',
    'argv': [ 'commands/' + cmd ] }

def elch_command(cmd):
  return {
    'capname': cmd,
    'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P<args>.*))?$',
    '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<args>.*))?$',
    'argv' : [ 'commands/identify' ]}

]

commands = [
  default_command('reload'),
  elch_command('update_search'),
  elch_command('refresh_shares'),
  elch_command('ftpget'),
  elch_command('reboot')
]