""" opercmds.py: Provides a subset of network management commands. """ import sys import os # Add the base PyLink folder to path, so we can import utils and log. sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import utils from log import log @utils.add_cmd def mode(irc, source, args): """ Oper-only, sets modes on the target channel.""" # Check that the caller is either opered or logged in as admin. utils.checkAuthenticated(irc, source) try: target, modes = args[0], args[1:] except IndexError: irc.reply('Error: Not enough arguments. Needs 2: target, modes to set.') return if target not in irc.channels: irc.reply("Error: Unknown channel '%s'." % target) return elif not modes: # No modes were given before parsing (i.e. mode list was blank). irc.reply("Error: No valid modes were given.") return parsedmodes = utils.parseModes(irc, target, modes) if not parsedmodes: # Modes were given but they failed to parse into anything meaningful. # For example, "mode #somechan +o" would be erroneous because +o # requires an argument! irc.reply("Error: No valid modes were given.") return irc.proto.modeClient(irc.pseudoclient.uid, target, parsedmodes) # Call the appropriate hooks for plugin like relay. irc.callHooks([irc.pseudoclient.uid, 'OPERCMDS_MODEOVERRIDE', {'target': target, 'modes': parsedmodes, 'parse_as': 'MODE'}])