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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
from os.path import abspath, expanduser
import re
debug = False
name = 'crabmanner'
#workdir = expanduser('~') + '/state'
workdir = '/home/reaktor/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=workdir+'/admin.lst'
auth_file=workdir+'/auth.lst'
config_filename = abspath(__file__)
# me is used, so name cannot kill our patterns below
me = '\\b' + re.escape(name) + '\\b'
me_or_us = '(?:' + me + '|\\*)'
def default_command(cap, cmd=None, env=None):
if not env: env = {}
if cmd == None: cmd=cap
return {
'capname': cap,
'pattern': '^' + me_or_us + ':\\s*' + cap + '\\s*(?:\\s+(?P<args>.*))?$',
'argv': [ 'commands/' + cmd ],
'env': env
}
def simple_command(cap, cmd=None, env={}):
if cmd == None: cmd=cap
return {
'capname': cap,
'pattern': '^' + cap + '\\s*(?:\\s+(?P<args>.*))?$',
'argv' : [ 'commands/' + cmd ],
'env': env
}
public_commands = [
default_command('caps', env={
'config_filename': config_filename
}),
default_command('hello'),
default_command('badcommand'),
default_command('rev'),
default_command('uptime'),
default_command('nocommand'),
default_command('tell', cmd='tell-on_privmsg', env={
'state_file': workdir + '/tell.txt'
}),
default_command('nag',env={
'hosts_repo': 'https://github.com/krebscode/hosts',
'services_repo': 'gitolite@localhost:services'
}),
simple_command('identify', env={
'config_filename': config_filename
}),
# command not found
{ 'pattern': '^' + me_or_us + ':.*',
'argv': [ 'commands/respond','You are made of stupid!'] },
# "highlight"
{ 'pattern': '.*' + me + '.*',
'argv': [ 'commands/say', 'I\'m famous' ] },
# identify via direct connect
]
commands = [
default_command('reload'),
]
on_join = [
{
'capname': 'tell',
'argv': [ 'commands/tell-on_join' ],
'env': { 'state_file': workdir + '/tell.txt' }
}
]
on_ping = [
{
'capname': 'nag',
'argv': [ 'commands/nag' ],
'env': {
'hosts_repo': 'https://github.com/krebscode/hosts',
'services_repo': 'gitolite@localhost:services'
},
'targets': irc_channels
}
]
|