X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/83ed3882eee520410007378f4bffe10d2fd51bd7..e227969cbc199db053faf836c8c911e1a75241d3:/modlib.py diff --git a/modlib.py b/modlib.py index 60634eb..9f59573 100644 --- a/modlib.py +++ b/modlib.py @@ -20,6 +20,7 @@ class modlib(object): STAFF = 50 AUTHED = 0 ANYONE = -1 + IGNORED = -2 # (channel) access levels COWNER = 5 @@ -28,6 +29,7 @@ class modlib(object): VOICE = 2 KNOWN = 1 PUBLIC = 0 #anyone (use glevel to control auth-needed) + BANNED = -1 # messages WRONGARGS = "Wrong number of arguments." @@ -39,9 +41,16 @@ class modlib(object): self.helps = [] self.parent = None - self.name = (name.split(".", 1))[1] + self.name = (name.split("."))[-1] def modstart(self, parent): + #modstart can return a few things... + # None: unspecified success + # False: unspecified error + # modlib.error (or anything else False-y): specified error + # True: unspecified success + # non-empty string (or anything else True-y): specified success + #"specified" values will be printed. unspecified values will result in "OK" or "failed" self.parent = parent for cmd, func in self.hooks.iteritems(): self.parent.hook(cmd, func) @@ -59,12 +68,12 @@ class modlib(object): return True def modstop(self, parent): for cmd, func in self.hooks.iteritems(): - self.parent.unhook(cmd, func) - self.parent.unhook("%s.%s" % (self.name, cmd), func) + parent.unhook(cmd, func) + parent.unhook("%s.%s" % (self.name, cmd), func) for num, func in self.numhooks.iteritems(): - self.parent.unhooknum(num, func) + parent.unhooknum(num, func) for chan, func in self.chanhooks.iteritems(): - self.parent.unhookchan(chan, func) + parent.unhookchan(chan, func) for func, args, kwargs in self.helps: try: @@ -102,6 +111,7 @@ class modlib(object): func.reqglevel = glevel func.reqclevel = clevel func.cmd = cmd + func.module = func.__module__.split('.')[1] for c in cmd: self.hooks[c] = func