X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/586997a7668236c42527b70e4da93edcf4fa4af4..e5a3970b9326b064c88b296b1fa5a9bed320b8b3:/modlib.py diff --git a/modlib.py b/modlib.py index 7e9a742..02b657e 100644 --- a/modlib.py +++ b/modlib.py @@ -10,7 +10,7 @@ class error(object): def __repr__(self): return '' % self.errormsg def __str__(self): - return self.errormsg + return str(self.errormsg) class modlib(object): # default (global) access levels @@ -34,6 +34,7 @@ class modlib(object): def __init__(self, name): self.hooks = {} self.numhooks = {} + self.chanhooks = {} self.parent = None self.name = name @@ -44,12 +45,16 @@ class modlib(object): self.parent.hook(cmd, func) for num, func in self.numhooks.iteritems(): self.parent.hooknum(num, func) + for chan, func in self.chanhooks.iteritems(): + self.parent.hookchan(chan, func) return True def modstop(self, parent): for cmd, func in self.hooks.iteritems(): self.parent.unhook(cmd, func) for num, func in self.numhooks.iteritems(): self.parent.unhooknum(num, func) + for chan, func in self.chanhooks.iteritems(): + self.parent.unhookchan(chan, func) return True def hooknum(self, num): @@ -60,6 +65,14 @@ class modlib(object): return func return realhook + def hookchan(self, chan, glevel=ANYONE, clevel=PUBLIC): + def realhook(func): + self.chanhooks[chan] = func + if self.parent is not None: + self.parent.hookchan(chan, func) + return func + return realhook + def hook(self, cmd, needchan=True, glevel=ANYONE, clevel=PUBLIC): def realhook(func): func.needchan = needchan