X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fa93b93394adc45f4b3bd1694c960df127cfc4da..193806d55ffc8ca4497a79a03a644f60fa5163ac:/modules/control.py diff --git a/modules/control.py b/modules/control.py index 4d9c644..884b82b 100644 --- a/modules/control.py +++ b/modules/control.py @@ -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(" ", "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:]))