]> jfr.im git - erebus.git/blame_incremental - modlib.py
modlib - add IGNORED (g) and BANNED (c) levels.
[erebus.git] / modlib.py
... / ...
CommitLineData
1# Erebus IRC bot - Author: John Runyon
2# module helper functions, see modules/modtest.py for usage
3# This file is released into the public domain; see http://unlicense.org/
4
5class error(object):
6 def __init__(self, desc):
7 self.errormsg = desc
8 def __nonzero__(self):
9 return False #object will test to False
10 def __repr__(self):
11 return '<modlib.error %r>' % self.errormsg
12 def __str__(self):
13 return str(self.errormsg)
14
15class modlib(object):
16 # default (global) access levels
17 OWNER = 100
18 MANAGER = 99
19 ADMIN = 75
20 STAFF = 50
21 AUTHED = 0
22 ANYONE = -1
23 IGNORED = -2
24
25 # (channel) access levels
26 COWNER = 5
27 MASTER = 4
28 OP = 3
29 VOICE = 2
30 KNOWN = 1
31 PUBLIC = 0 #anyone (use glevel to control auth-needed)
32 BANNED = -1
33
34 # messages
35 WRONGARGS = "Wrong number of arguments."
36
37 def __init__(self, name):
38 self.hooks = {}
39 self.numhooks = {}
40 self.chanhooks = {}
41 self.helps = []
42 self.parent = None
43
44 self.name = (name.split("."))[-1]
45
46 def modstart(self, parent):
47 #modstart can return a few things...
48 # None: unspecified success
49 # False: unspecified error
50 # modlib.error (or anything else False-y): specified error
51 # True: unspecified success
52 # non-empty string (or anything else True-y): specified success
53 #"specified" values will be printed. unspecified values will result in "OK" or "failed"
54 self.parent = parent
55 for cmd, func in self.hooks.iteritems():
56 self.parent.hook(cmd, func)
57 self.parent.hook("%s.%s" % (self.name, cmd), func)
58 for num, func in self.numhooks.iteritems():
59 self.parent.hooknum(num, func)
60 for chan, func in self.chanhooks.iteritems():
61 self.parent.hookchan(chan, func)
62
63 for func, args, kwargs in self.helps:
64 try:
65 self.mod('help').reghelp(func, *args, **kwargs)
66 except:
67 pass
68 return True
69 def modstop(self, parent):
70 for cmd, func in self.hooks.iteritems():
71 parent.unhook(cmd, func)
72 parent.unhook("%s.%s" % (self.name, cmd), func)
73 for num, func in self.numhooks.iteritems():
74 parent.unhooknum(num, func)
75 for chan, func in self.chanhooks.iteritems():
76 parent.unhookchan(chan, func)
77
78 for func, args, kwargs in self.helps:
79 try:
80 self.mod('help').dereghelp(func, *args, **kwargs)
81 except:
82 pass
83 return True
84
85 def hooknum(self, num):
86 def realhook(func):
87 self.numhooks[str(num)] = func
88 if self.parent is not None:
89 self.parent.hooknum(str(num), func)
90 return func
91 return realhook
92
93 def hookchan(self, chan, glevel=ANYONE, clevel=PUBLIC):
94 def realhook(func):
95 self.chanhooks[chan] = func
96 if self.parent is not None:
97 self.parent.hookchan(chan, func)
98 return func
99 return realhook
100
101 def hook(self, cmd=None, needchan=True, glevel=ANYONE, clevel=PUBLIC):
102 _cmd = cmd #save this since it gets wiped out...
103 def realhook(func):
104 cmd = _cmd #...and restore it
105 if cmd is None:
106 cmd = func.__name__ # default to function name
107 if isinstance(cmd, basestring):
108 cmd = (cmd,)
109
110 func.needchan = needchan
111 func.reqglevel = glevel
112 func.reqclevel = clevel
113 func.cmd = cmd
114 func.module = func.__module__.split('.')[1]
115
116 for c in cmd:
117 self.hooks[c] = func
118 if self.parent is not None:
119 self.parent.hook(c, func)
120 self.parent.hook("%s.%s" % (self.name, c), func)
121 return func
122 return realhook
123
124 def mod(self, modname):
125 if self.parent is not None:
126 return self.parent.module(modname)
127 else:
128 return error('unknown parent')
129
130 def argsEQ(self, num):
131 def realhook(func):
132 def checkargs(bot, user, chan, realtarget, *args):
133 if len(args) == num:
134 return func(bot, user, chan, realtarget, *args)
135 else:
136 bot.msg(user, self.WRONGARGS)
137 checkargs.__name__ = func.__name__
138 checkargs.__module__ = func.__module__
139 return checkargs
140 return realhook
141
142 def argsGE(self, num):
143 def realhook(func):
144 def checkargs(bot, user, chan, realtarget, *args):
145 if len(args) >= num:
146 return func(bot, user, chan, realtarget, *args)
147 else:
148 bot.msg(user, self.WRONGARGS)
149 checkargs.__name__ = func.__name__
150 checkargs.__module__ = func.__module__
151 return checkargs
152 return realhook
153
154 def help(self, *args, **kwargs):
155 """help(syntax, shorthelp, longhelp?, more lines longhelp?, cmd=...?)
156 Example:
157 help("<user> <pass>", "login")
158 ^ Help will only be one line. Command name determined based on function name.
159 help("<user> <level>", "add a user", cmd=("adduser", "useradd"))
160 ^ Help will be listed under ADDUSER; USERADD will say "alias for adduser"
161 help(None, "do stuff", "This command is really complicated.")
162 ^ Command takes no args. Short description (in overall HELP listing) is "do stuff".
163 Long description (HELP <command>) will say "<command> - do stuff", newline, "This command is really complicated."
164 """
165 def realhook(func):
166 if self.parent is not None:
167 try:
168 self.mod('help').reghelp(func, *args, **kwargs)
169 except:
170 pass
171 self.helps.append((func,args,kwargs))
172 return func
173 return realhook