]> jfr.im git - erebus.git/blobdiff - modules/control.py
control - added !INJECT
[erebus.git] / modules / control.py
index 4d9c6448043b3b596c451084bf7ef5042ad38322..884b82b8840d6cc5dac8f8f1a618760b39420e89 100644 (file)
@@ -28,8 +28,6 @@ from collections import deque
 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))
                bot.conn.send("QUIT :Restarting. %s" % (quitmsg))
        sys.exit(0)
        os._exit(0)
@@ -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("<nick> <message>", "inject a line as though it came from <nick>", "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:]))