X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fa93b93394adc45f4b3bd1694c960df127cfc4da..48479459ec7c92a0f1082eae8d8c067ee573c9ef:/modules/control.py diff --git a/modules/control.py b/modules/control.py index 4d9c644..a34f795 100644 --- a/modules/control.py +++ b/modules/control.py @@ -27,9 +27,7 @@ from collections import deque @lib.help(None, "stops the bot") def die(bot, user, chan, realtarget, *args): quitmsg = ' '.join(args) - for botitem in bot.parent.bots.itervalues(): - for chan in botitem.chans: - chan.fastmsg("Bot is restarting! %s" % (quitmsg)) + for botitem in bot.parent.bots.values(): bot.conn.send("QUIT :Restarting. %s" % (quitmsg)) sys.exit(0) os._exit(0) @@ -73,7 +71,7 @@ def modreload(bot, user, chan, realtarget, *args): @lib.argsEQ(0) def modlist(bot, user, chan, realtarget, *args): mods = ctlmod.modules - for modname, mod in mods.iteritems(): + for modname, mod in mods.items(): bot.msg(user, "- %s (%s) [%s]" % ((modname, mod.__file__, ', '.join(ctlmod.dependents[modname])))) bot.msg(user, "Done.") @@ -146,3 +144,19 @@ def qclear(bot, user, chan, realtarget, *args): bot.fastmsg(user, "Syntax: QCLEAR [regular|slow]") return #short-circuit bot.fastmsg(user, "Cleared that msgqueue.") + +@lib.hook(needchan=False, wantchan=True, glevel=lib.ADMIN) +@lib.help(" ", "inject a line as though it came from ", "note that this injects lines, not commands", "ex: INJECT DimeCadmium !WHOAMI") +def inject(bot, user, chan, realtarget, *args): + targetuser = bot.parent.user(args[0], create=False) + if targetuser is None: + bot.msg(user, "User is unknown.") + return + if targetuser.glevel > user.glevel: + bot.msg(user, "That user has a higher access level than you.") + return + + if chan is not None: + bot.parsemsg(bot.parent.user(args[0], create=False), str(chan), ' '.join(args[1:])) + else: + bot.parsemsg(bot.parent.user(args[0], create=False), str(bot), ' '.join(args[1:]))