X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/574ce1924dcf88335748617d6d4a1bf2da52533f..0956623592806f24abdcdf0c937e1dbdc31a38ac:/modules/control.py diff --git a/modules/control.py b/modules/control.py index c03b8f3..699696c 100644 --- a/modules/control.py +++ b/modules/control.py @@ -17,8 +17,9 @@ modstart = lib.modstart modstop = lib.modstop # module code -import sys +import sys, os import ctlmod +from collections import deque @lib.hook(needchan=False, glevel=lib.MANAGER) @@ -65,24 +66,58 @@ def modlist(bot, user, chan, realtarget, *args): bot.msg(user, "- %s %r" % (mod.__name__, mod)) bot.msg(user, "Done.") -@lib.hook(cmd='whoami', needchan=False) -def whoami(bot, user, chan, realtarget, *args): +def _whois(user, chan, showglevel=True, showclevel=True): if not user.isauthed(): - bot.msg(user, "You are not authed.") - return + return "not authed." fillers = {'auth': user.auth} - fmt = "You are %(auth)s" + fmt = "%(auth)s" - if user.glevel >= 1: - fillers['glevel'] = user.glevel - fmt += " (global access: %(glevel)s)" + if showglevel and user.glevel >= 1: + fillers['glevel'] = user.glevel + fmt += " (global access: %(glevel)s)" + elif user.glevel >= 1: + fmt += " (staff)" else: fmt += " (not staff)" - if chan is not None and chan.levelof(user.auth) >= 1: - fillers['clevel'] = chan.levelof(user.auth) - fmt += " (channel access: %(clevel)s)" + if showclevel and chan is not None: + if chan.levelof(user.auth) >= 1: + fillers['clevel'] = chan.levelof(user.auth) + fmt += " (channel access: %(clevel)s)" + else: + fmt += " (not a channel user)" + return fmt % fillers + +@lib.hook(needchan=False) +@lib.argsEQ(1) +def whois(bot, user, chan, realtarget, *args): + target = bot.parent.user(args[0], create=False) + if target is None: + bot.msg(user, "I don't know %s." % (args[0])) + else: + bot.msg(user, "%s is %s" % (args[0], _whois(target, chan, (user.glevel >= 1), (chan is not None and chan.levelof(user.auth) >= 1)))) + +@lib.hook(needchan=False) +def whoami(bot, user, chan, realtarget, *args): + bot.msg(user, "You are %s" % (_whois(user, chan))) + +@lib.hook(needchan=False, glevel=1) +def qstat(bot, user, chan, realtarget, *args): + bot.fastmsg(user, "Regular: %d -- Slow: %d" % (len(bot.msgqueue), len(bot.slowmsgqueue))) + +@lib.hook(needchan=False, glevel=lib.ADMIN) +def qclear(bot, user, chan, realtarget, *args): + if len(args) == 0: + bot.msgqueue = deque() + bot.slowmsgqueue = deque() + bot.fastmsg(user, "Cleared both msgqueues.") else: - fmt += " (not a channel user)" - bot.msg(user, fmt % fillers) + if args[0] == 'regular': + bot.msgqueue = deque() + elif args[0] == 'slow': + bot.slowmsgqueue = deque() + else: + bot.fastmsg(user, "Syntax: QCLEAR [regular|slow]") + return #short-circuit + bot.fastmsg(user, "Cleared that msgqueue.")