mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
|
"""
|
||
|
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):
|
||
|
"""<channel> <modes>
|
||
|
|
||
|
Oper-only, sets modes <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'}])
|
||
|
|