2015-12-07 02:40:13 +01:00
|
|
|
"""
|
|
|
|
utils.py - PyLink utilities module.
|
|
|
|
|
|
|
|
This module contains various utility functions related to IRC and/or the PyLink
|
|
|
|
framework.
|
|
|
|
"""
|
|
|
|
|
2015-04-25 07:37:07 +02:00
|
|
|
import string
|
2015-06-17 05:46:01 +02:00
|
|
|
import re
|
2015-08-26 05:38:32 +02:00
|
|
|
import inspect
|
2015-11-23 05:14:47 +01:00
|
|
|
import importlib
|
|
|
|
import os
|
2015-04-25 07:37:07 +02:00
|
|
|
|
2015-07-05 22:44:48 +02:00
|
|
|
from log import log
|
2015-08-29 18:39:33 +02:00
|
|
|
import world
|
2015-12-07 02:13:47 +01:00
|
|
|
import conf
|
2015-05-31 21:20:09 +02:00
|
|
|
|
2015-08-26 05:38:32 +02:00
|
|
|
class NotAuthenticatedError(Exception):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Exception raised by checkAuthenticated() when a user fails authentication
|
|
|
|
requirements.
|
|
|
|
"""
|
2015-08-26 05:38:32 +02:00
|
|
|
pass
|
|
|
|
|
2015-06-19 19:43:42 +02:00
|
|
|
class TS6UIDGenerator():
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
TS6 UID Generator module, adapted from InspIRCd source:
|
2015-06-19 19:43:42 +02:00
|
|
|
https://github.com/inspircd/inspircd/blob/f449c6b296ab/src/server.cpp#L85-L156
|
|
|
|
"""
|
|
|
|
|
2015-06-23 01:51:42 +02:00
|
|
|
def __init__(self, sid):
|
2015-06-19 19:43:42 +02:00
|
|
|
# TS6 UIDs are 6 characters in length (9 including the SID).
|
2015-06-22 03:11:17 +02:00
|
|
|
# They wrap from ABCDEFGHIJKLMNOPQRSTUVWXYZ -> 0123456789 -> wrap around:
|
|
|
|
# (e.g. AAAAAA, AAAAAB ..., AAAAA8, AAAAA9, AAAABA)
|
2015-06-19 19:43:42 +02:00
|
|
|
self.allowedchars = string.ascii_uppercase + string.digits
|
2015-06-22 03:11:17 +02:00
|
|
|
self.uidchars = [self.allowedchars[0]]*6
|
2015-06-23 01:51:42 +02:00
|
|
|
self.sid = sid
|
2015-06-19 19:43:42 +02:00
|
|
|
|
|
|
|
def increment(self, pos=5):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Increments the SID generator to the next available SID.
|
|
|
|
"""
|
2015-06-19 19:43:42 +02:00
|
|
|
# If we're at the last character in the list of allowed ones, reset
|
|
|
|
# and increment the next level above.
|
|
|
|
if self.uidchars[pos] == self.allowedchars[-1]:
|
|
|
|
self.uidchars[pos] = self.allowedchars[0]
|
|
|
|
self.increment(pos-1)
|
|
|
|
else:
|
|
|
|
# Find what position in the allowed characters list we're currently
|
|
|
|
# on, and add one.
|
|
|
|
idx = self.allowedchars.find(self.uidchars[pos])
|
|
|
|
self.uidchars[pos] = self.allowedchars[idx+1]
|
|
|
|
|
2015-06-23 01:51:42 +02:00
|
|
|
def next_uid(self):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Returns the next unused TS6 UID for the server.
|
|
|
|
"""
|
2015-06-23 01:51:42 +02:00
|
|
|
uid = self.sid + ''.join(self.uidchars)
|
2015-06-19 19:43:42 +02:00
|
|
|
self.increment()
|
2015-06-22 03:11:17 +02:00
|
|
|
return uid
|
2015-05-31 08:00:39 +02:00
|
|
|
|
2015-07-12 04:56:26 +02:00
|
|
|
class TS6SIDGenerator():
|
2015-09-13 07:28:34 +02:00
|
|
|
"""
|
2015-07-12 04:56:26 +02:00
|
|
|
TS6 SID Generator. <query> is a 3 character string with any combination of
|
2015-09-13 07:28:34 +02:00
|
|
|
uppercase letters, digits, and #'s. it must contain at least one #,
|
2015-07-12 04:56:26 +02:00
|
|
|
which are used by the generator as a wildcard. On every next_sid() call,
|
|
|
|
the first available wildcard character (from the right) will be
|
|
|
|
incremented to generate the next SID.
|
|
|
|
|
|
|
|
When there are no more available SIDs left (SIDs are not reused, only
|
|
|
|
incremented), RuntimeError is raised.
|
|
|
|
|
|
|
|
Example queries:
|
|
|
|
"1#A" would give: 10A, 11A, 12A ... 19A, 1AA, 1BA ... 1ZA (36 total results)
|
|
|
|
"#BQ" would give: 0BQ, 1BQ, 2BQ ... 9BQ (10 total results)
|
|
|
|
"6##" would give: 600, 601, 602, ... 60Y, 60Z, 610, 611, ... 6ZZ (1296 total results)
|
|
|
|
"""
|
|
|
|
|
2015-09-21 03:32:43 +02:00
|
|
|
def __init__(self, irc):
|
|
|
|
self.irc = irc
|
|
|
|
try:
|
|
|
|
self.query = query = list(irc.serverdata["sidrange"])
|
|
|
|
except KeyError:
|
|
|
|
raise RuntimeError('(%s) "sidrange" is missing from your server configuration block!' % irc.name)
|
2015-12-26 23:45:28 +01:00
|
|
|
|
2015-07-12 04:56:26 +02:00
|
|
|
self.iters = self.query.copy()
|
|
|
|
self.output = self.query.copy()
|
|
|
|
self.allowedchars = {}
|
|
|
|
qlen = len(query)
|
2015-12-26 23:45:28 +01:00
|
|
|
|
2015-07-12 04:56:26 +02:00
|
|
|
assert qlen == 3, 'Incorrect length for a SID (must be 3, got %s)' % qlen
|
|
|
|
assert '#' in query, "Must be at least one wildcard (#) in query"
|
2015-12-26 23:45:28 +01:00
|
|
|
|
2015-07-12 04:56:26 +02:00
|
|
|
for idx, char in enumerate(query):
|
2015-12-26 23:45:28 +01:00
|
|
|
# Iterate over each character in the query string we got, along
|
|
|
|
# with its index in the string.
|
2015-07-12 04:56:26 +02:00
|
|
|
assert char in (string.digits+string.ascii_uppercase+"#"), \
|
|
|
|
"Invalid character %r found." % char
|
|
|
|
if char == '#':
|
|
|
|
if idx == 0: # The first char be only digits
|
|
|
|
self.allowedchars[idx] = string.digits
|
|
|
|
else:
|
|
|
|
self.allowedchars[idx] = string.digits+string.ascii_uppercase
|
|
|
|
self.iters[idx] = iter(self.allowedchars[idx])
|
|
|
|
self.output[idx] = self.allowedchars[idx][0]
|
|
|
|
next(self.iters[idx])
|
|
|
|
|
|
|
|
|
|
|
|
def increment(self, pos=2):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Increments the SID generator to the next available SID.
|
|
|
|
"""
|
2015-07-12 04:56:26 +02:00
|
|
|
if pos < 0:
|
|
|
|
# Oh no, we've wrapped back to the start!
|
|
|
|
raise RuntimeError('No more available SIDs!')
|
|
|
|
it = self.iters[pos]
|
|
|
|
try:
|
|
|
|
self.output[pos] = next(it)
|
|
|
|
except TypeError: # This position is not an iterator, but a string.
|
|
|
|
self.increment(pos-1)
|
|
|
|
except StopIteration:
|
|
|
|
self.output[pos] = self.allowedchars[pos][0]
|
|
|
|
self.iters[pos] = iter(self.allowedchars[pos])
|
|
|
|
next(self.iters[pos])
|
|
|
|
self.increment(pos-1)
|
|
|
|
|
|
|
|
def next_sid(self):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Returns the next unused TS6 SID for the server.
|
|
|
|
"""
|
2015-09-21 03:32:43 +02:00
|
|
|
while ''.join(self.output) in self.irc.servers:
|
2015-12-26 23:45:28 +01:00
|
|
|
# Increment until the SID we have doesn't already exist.
|
2015-09-21 03:32:43 +02:00
|
|
|
self.increment()
|
2015-07-12 04:56:26 +02:00
|
|
|
sid = ''.join(self.output)
|
|
|
|
return sid
|
|
|
|
|
2015-05-31 21:20:09 +02:00
|
|
|
def add_cmd(func, name=None):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Binds an IRC command function to the given command name."""
|
2015-05-31 21:20:09 +02:00
|
|
|
if name is None:
|
|
|
|
name = func.__name__
|
|
|
|
name = name.lower()
|
2015-09-27 19:53:25 +02:00
|
|
|
world.commands[name].append(func)
|
2015-10-24 03:47:11 +02:00
|
|
|
return func
|
2015-06-08 04:31:56 +02:00
|
|
|
|
2015-06-24 04:08:43 +02:00
|
|
|
def add_hook(func, command):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Binds a hook function to the given command name."""
|
2015-07-05 04:00:29 +02:00
|
|
|
command = command.upper()
|
2015-09-27 19:53:25 +02:00
|
|
|
world.hooks[command].append(func)
|
2015-10-24 03:47:11 +02:00
|
|
|
return func
|
2015-06-24 04:08:43 +02:00
|
|
|
|
2015-07-23 05:31:45 +02:00
|
|
|
def toLower(irc, text):
|
2015-09-13 07:28:34 +02:00
|
|
|
"""Returns a lowercase representation of text based on the IRC object's
|
|
|
|
casemapping (rfc1459 or ascii)."""
|
2015-07-23 05:31:45 +02:00
|
|
|
if irc.proto.casemapping == 'rfc1459':
|
|
|
|
text = text.replace('{', '[')
|
|
|
|
text = text.replace('}', ']')
|
|
|
|
text = text.replace('|', '\\')
|
|
|
|
text = text.replace('~', '^')
|
|
|
|
return text.lower()
|
|
|
|
|
2015-06-17 05:46:01 +02:00
|
|
|
_nickregex = r'^[A-Za-z\|\\_\[\]\{\}\^\`][A-Z0-9a-z\-\|\\_\[\]\{\}\^\`]*$'
|
|
|
|
def isNick(s, nicklen=None):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Returns whether the string given is a valid nick."""
|
2015-06-17 05:46:01 +02:00
|
|
|
if nicklen and len(s) > nicklen:
|
|
|
|
return False
|
|
|
|
return bool(re.match(_nickregex, s))
|
|
|
|
|
|
|
|
def isChannel(s):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Returns whether the string given is a valid channel name."""
|
2015-09-13 07:28:34 +02:00
|
|
|
return str(s).startswith('#')
|
2015-06-22 00:00:33 +02:00
|
|
|
|
2015-07-04 02:05:44 +02:00
|
|
|
def _isASCII(s):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Returns whether the string given is valid ASCII."""
|
2015-07-04 02:05:44 +02:00
|
|
|
chars = string.ascii_letters + string.digits + string.punctuation
|
|
|
|
return all(char in chars for char in s)
|
2015-06-22 00:00:33 +02:00
|
|
|
|
|
|
|
def isServerName(s):
|
2015-11-23 05:14:47 +01:00
|
|
|
"""Returns whether the string given is a valid IRC server name."""
|
2015-07-07 23:31:47 +02:00
|
|
|
return _isASCII(s) and '.' in s and not s.startswith('.')
|
2015-06-21 05:36:35 +02:00
|
|
|
|
2015-09-13 07:28:34 +02:00
|
|
|
hostmaskRe = re.compile(r'^\S+!\S+@\S+$')
|
|
|
|
def isHostmask(text):
|
|
|
|
"""Returns whether the given text is a valid hostmask."""
|
2015-10-09 02:25:17 +02:00
|
|
|
# Band-aid patch here to prevent bad bans set by Janus forwarding people into invalid channels.
|
|
|
|
return hostmaskRe.match(text) and '#' not in text
|
2015-09-13 07:28:34 +02:00
|
|
|
|
2015-07-05 21:48:39 +02:00
|
|
|
def parseModes(irc, target, args):
|
2015-08-29 04:27:38 +02:00
|
|
|
"""Parses a modestring list into a list of (mode, argument) tuples.
|
2015-07-05 08:49:28 +02:00
|
|
|
['+mitl-o', '3', 'person'] => [('+m', None), ('+i', None), ('+t', None), ('+l', '3'), ('-o', 'person')]
|
2015-06-21 05:36:35 +02:00
|
|
|
"""
|
2015-07-05 08:49:28 +02:00
|
|
|
# http://www.irc.org/tech_docs/005.html
|
2015-07-06 04:19:49 +02:00
|
|
|
# A = Mode that adds or removes a nick or address to a list. Always has a parameter.
|
|
|
|
# B = Mode that changes a setting and always has a parameter.
|
2015-07-05 08:49:28 +02:00
|
|
|
# C = Mode that changes a setting and only has a parameter when set.
|
|
|
|
# D = Mode that changes a setting and never has a parameter.
|
2015-09-15 02:55:58 +02:00
|
|
|
assert args, 'No valid modes were supplied!'
|
2015-07-05 21:48:39 +02:00
|
|
|
usermodes = not isChannel(target)
|
2015-07-09 07:42:04 +02:00
|
|
|
prefix = ''
|
2015-07-05 08:49:28 +02:00
|
|
|
modestring = args[0]
|
|
|
|
args = args[1:]
|
|
|
|
if usermodes:
|
2015-07-06 01:46:57 +02:00
|
|
|
log.debug('(%s) Using irc.umodes for this query: %s', irc.name, irc.umodes)
|
2015-09-26 05:25:30 +02:00
|
|
|
assert target in irc.users, "Unknown user %r." % target
|
2015-07-06 04:19:49 +02:00
|
|
|
supported_modes = irc.umodes
|
2015-07-23 22:24:18 +02:00
|
|
|
oldmodes = irc.users[target].modes
|
2015-07-05 08:49:28 +02:00
|
|
|
else:
|
2015-07-06 01:46:57 +02:00
|
|
|
log.debug('(%s) Using irc.cmodes for this query: %s', irc.name, irc.cmodes)
|
2015-09-26 05:25:30 +02:00
|
|
|
assert target in irc.channels, "Unknown channel %r." % target
|
2015-07-05 08:49:28 +02:00
|
|
|
supported_modes = irc.cmodes
|
2015-07-23 22:24:18 +02:00
|
|
|
oldmodes = irc.channels[target].modes
|
2015-06-21 05:36:35 +02:00
|
|
|
res = []
|
2015-07-05 08:49:28 +02:00
|
|
|
for mode in modestring:
|
2015-06-21 05:36:35 +02:00
|
|
|
if mode in '+-':
|
|
|
|
prefix = mode
|
|
|
|
else:
|
2015-07-09 07:42:04 +02:00
|
|
|
if not prefix:
|
2015-07-24 00:04:57 +02:00
|
|
|
prefix = '+'
|
2015-07-05 08:49:28 +02:00
|
|
|
arg = None
|
2015-07-06 04:19:49 +02:00
|
|
|
log.debug('Current mode: %s%s; args left: %s', prefix, mode, args)
|
2015-07-09 07:42:04 +02:00
|
|
|
try:
|
|
|
|
if mode in (supported_modes['*A'] + supported_modes['*B']):
|
|
|
|
# Must have parameter.
|
|
|
|
log.debug('Mode %s: This mode must have parameter.', mode)
|
|
|
|
arg = args.pop(0)
|
2015-07-23 22:24:18 +02:00
|
|
|
if prefix == '-' and mode in supported_modes['*B'] and arg == '*':
|
|
|
|
# Charybdis allows unsetting +k without actually
|
|
|
|
# knowing the key by faking the argument when unsetting
|
|
|
|
# as a single "*".
|
|
|
|
# We'd need to know the real argument of +k for us to
|
|
|
|
# be able to unset the mode.
|
|
|
|
oldargs = [m[1] for m in oldmodes if m[0] == mode]
|
|
|
|
if oldargs:
|
|
|
|
# Set the arg to the old one on the channel.
|
|
|
|
arg = oldargs[0]
|
|
|
|
log.debug("Mode %s: coersing argument of '*' to %r.", mode, arg)
|
2015-07-09 07:42:04 +02:00
|
|
|
elif mode in irc.prefixmodes and not usermodes:
|
|
|
|
# We're setting a prefix mode on someone (e.g. +o user1)
|
|
|
|
log.debug('Mode %s: This mode is a prefix mode.', mode)
|
|
|
|
arg = args.pop(0)
|
2015-09-15 02:57:20 +02:00
|
|
|
# Convert nicks to UIDs implicitly; most IRCds will want
|
|
|
|
# this already.
|
2016-01-01 02:28:47 +01:00
|
|
|
arg = irc.nickToUid(arg) or arg
|
2015-09-15 02:57:20 +02:00
|
|
|
if arg not in irc.users: # Target doesn't exist, skip it.
|
|
|
|
log.debug('(%s) Skipping setting mode "%s %s"; the '
|
2015-10-09 05:59:31 +02:00
|
|
|
'target doesn\'t seem to exist!', irc.name,
|
2015-09-26 05:25:41 +02:00
|
|
|
mode, arg)
|
2015-09-15 02:57:20 +02:00
|
|
|
continue
|
2015-07-09 07:42:04 +02:00
|
|
|
elif prefix == '+' and mode in supported_modes['*C']:
|
|
|
|
# Only has parameter when setting.
|
|
|
|
log.debug('Mode %s: Only has parameter when setting.', mode)
|
|
|
|
arg = args.pop(0)
|
|
|
|
except IndexError:
|
|
|
|
log.warning('(%s/%s) Error while parsing mode %r: mode requires an '
|
|
|
|
'argument but none was found. (modestring: %r)',
|
|
|
|
irc.name, target, mode, modestring)
|
|
|
|
continue # Skip this mode; don't error out completely.
|
2015-07-05 08:49:28 +02:00
|
|
|
res.append((prefix + mode, arg))
|
2015-06-21 05:36:35 +02:00
|
|
|
return res
|
|
|
|
|
2015-07-05 21:48:39 +02:00
|
|
|
def applyModes(irc, target, changedmodes):
|
2015-09-13 07:28:34 +02:00
|
|
|
"""Takes a list of parsed IRC modes, and applies them on the given target.
|
2015-07-09 01:58:59 +02:00
|
|
|
|
2015-09-13 07:28:34 +02:00
|
|
|
The target can be either a channel or a user; this is handled automatically."""
|
2015-07-05 21:48:39 +02:00
|
|
|
usermodes = not isChannel(target)
|
2015-07-06 01:46:57 +02:00
|
|
|
log.debug('(%s) Using usermodes for this query? %s', irc.name, usermodes)
|
2015-07-05 21:48:39 +02:00
|
|
|
if usermodes:
|
2015-07-09 08:11:44 +02:00
|
|
|
old_modelist = irc.users[target].modes
|
2015-07-06 08:15:17 +02:00
|
|
|
supported_modes = irc.umodes
|
2015-07-05 21:48:39 +02:00
|
|
|
else:
|
2015-07-09 08:11:44 +02:00
|
|
|
old_modelist = irc.channels[target].modes
|
2015-07-06 08:15:17 +02:00
|
|
|
supported_modes = irc.cmodes
|
2015-07-20 07:42:04 +02:00
|
|
|
modelist = set(old_modelist)
|
2015-07-05 22:44:48 +02:00
|
|
|
log.debug('(%s) Applying modes %r on %s (initial modelist: %s)', irc.name, changedmodes, target, modelist)
|
2015-06-21 05:36:35 +02:00
|
|
|
for mode in changedmodes:
|
2015-07-06 08:00:14 +02:00
|
|
|
# Chop off the +/- part that parseModes gives; it's meaningless for a mode list.
|
2015-08-16 05:02:07 +02:00
|
|
|
try:
|
|
|
|
real_mode = (mode[0][1], mode[1])
|
|
|
|
except IndexError:
|
|
|
|
real_mode = mode
|
2015-07-05 21:48:39 +02:00
|
|
|
if not usermodes:
|
|
|
|
pmode = ''
|
|
|
|
for m in ('owner', 'admin', 'op', 'halfop', 'voice'):
|
2015-07-06 08:00:14 +02:00
|
|
|
if m in irc.cmodes and real_mode[0] == irc.cmodes[m]:
|
2015-07-05 21:48:39 +02:00
|
|
|
pmode = m+'s'
|
|
|
|
if pmode:
|
|
|
|
pmodelist = irc.channels[target].prefixmodes[pmode]
|
2015-07-05 22:44:48 +02:00
|
|
|
log.debug('(%s) Initial prefixmodes list: %s', irc.name, irc.channels[target].prefixmodes)
|
2015-07-05 21:48:39 +02:00
|
|
|
if mode[0][0] == '+':
|
|
|
|
pmodelist.add(mode[1])
|
|
|
|
else:
|
|
|
|
pmodelist.discard(mode[1])
|
2015-07-22 04:57:22 +02:00
|
|
|
irc.channels[target].prefixmodes[pmode] = pmodelist
|
2015-07-05 22:44:48 +02:00
|
|
|
log.debug('(%s) Final prefixmodes list: %s', irc.name, irc.channels[target].prefixmodes)
|
2015-07-06 08:00:14 +02:00
|
|
|
if real_mode[0] in irc.prefixmodes:
|
2015-07-05 21:53:53 +02:00
|
|
|
# Ignore other prefix modes such as InspIRCd's +Yy
|
2015-07-06 08:15:17 +02:00
|
|
|
log.debug('(%s) Not adding mode %s to IrcChannel.modes because '
|
|
|
|
'it\'s a prefix mode we don\'t care about.', irc.name, str(mode))
|
2015-07-05 21:48:39 +02:00
|
|
|
continue
|
2015-07-05 08:49:28 +02:00
|
|
|
if mode[0][0] == '+':
|
2015-06-21 05:36:35 +02:00
|
|
|
# We're adding a mode
|
2015-07-09 08:13:23 +02:00
|
|
|
existing = [m for m in modelist if m[0] == real_mode[0] and m[1] != real_mode[1]]
|
|
|
|
if existing and real_mode[1] and real_mode[0] not in irc.cmodes['*A']:
|
2015-07-06 08:15:17 +02:00
|
|
|
# The mode we're setting takes a parameter, but is not a list mode (like +beI).
|
|
|
|
# Therefore, only one version of it can exist at a time, and we must remove
|
|
|
|
# any old modepairs using the same letter. Otherwise, we'll get duplicates when,
|
|
|
|
# for example, someone sets mode "+l 30" on a channel already set "+l 25".
|
|
|
|
log.debug('(%s) Old modes for mode %r exist on %s, removing them: %s',
|
2015-07-09 08:13:23 +02:00
|
|
|
irc.name, real_mode, target, str(existing))
|
2015-07-06 08:15:17 +02:00
|
|
|
[modelist.discard(oldmode) for oldmode in existing]
|
2015-07-06 08:00:14 +02:00
|
|
|
modelist.add(real_mode)
|
2015-07-09 08:13:23 +02:00
|
|
|
log.debug('(%s) Adding mode %r on %s', irc.name, real_mode, target)
|
2015-06-21 05:36:35 +02:00
|
|
|
else:
|
2015-07-09 08:13:23 +02:00
|
|
|
log.debug('(%s) Removing mode %r on %s', irc.name, real_mode, target)
|
2015-07-06 04:19:49 +02:00
|
|
|
# We're removing a mode
|
2015-07-06 08:00:14 +02:00
|
|
|
if real_mode[1] is None:
|
2015-07-06 04:19:49 +02:00
|
|
|
# We're removing a mode that only takes arguments when setting.
|
2015-07-06 08:15:17 +02:00
|
|
|
# Remove all mode entries that use the same letter as the one
|
|
|
|
# we're unsetting.
|
2015-07-06 04:19:49 +02:00
|
|
|
for oldmode in modelist.copy():
|
2015-07-06 08:00:14 +02:00
|
|
|
if oldmode[0] == real_mode[0]:
|
2015-07-06 04:19:49 +02:00
|
|
|
modelist.discard(oldmode)
|
|
|
|
else:
|
|
|
|
# Swap the - for a + and then remove it from the list.
|
2015-07-06 08:00:14 +02:00
|
|
|
modelist.discard(real_mode)
|
2015-07-06 01:46:57 +02:00
|
|
|
log.debug('(%s) Final modelist: %s', irc.name, modelist)
|
2015-07-09 08:11:44 +02:00
|
|
|
if usermodes:
|
|
|
|
irc.users[target].modes = modelist
|
|
|
|
else:
|
|
|
|
irc.channels[target].modes = modelist
|
2015-06-21 05:54:01 +02:00
|
|
|
|
|
|
|
def joinModes(modes):
|
2015-09-13 07:28:34 +02:00
|
|
|
"""Takes a list of (mode, arg) tuples in parseModes() format, and
|
|
|
|
joins them into a string.
|
2015-07-09 01:58:59 +02:00
|
|
|
|
2015-09-13 07:28:34 +02:00
|
|
|
See testJoinModes in tests/test_utils.py for some examples."""
|
2015-07-09 01:58:59 +02:00
|
|
|
prefix = '+' # Assume we're adding modes unless told otherwise
|
2015-07-05 08:49:28 +02:00
|
|
|
modelist = ''
|
|
|
|
args = []
|
|
|
|
for modepair in modes:
|
|
|
|
mode, arg = modepair
|
2015-07-09 01:58:59 +02:00
|
|
|
assert len(mode) in (1, 2), "Incorrect length of a mode (received %r)" % mode
|
|
|
|
try:
|
|
|
|
# If the mode has a prefix, use that.
|
|
|
|
curr_prefix, mode = mode
|
|
|
|
except ValueError:
|
|
|
|
# If not, the current prefix stays the same; move on to the next
|
|
|
|
# modepair.
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# If the prefix of this mode isn't the same as the last one, add
|
|
|
|
# the prefix to the modestring. This prevents '+nt-lk' from turning
|
|
|
|
# into '+n+t-l-k' or '+ntlk'.
|
|
|
|
if prefix != curr_prefix:
|
|
|
|
modelist += curr_prefix
|
|
|
|
prefix = curr_prefix
|
2015-07-06 21:28:10 +02:00
|
|
|
modelist += mode
|
2015-07-05 08:49:28 +02:00
|
|
|
if arg is not None:
|
|
|
|
args.append(arg)
|
2015-07-09 01:58:59 +02:00
|
|
|
if not modelist.startswith(('+', '-')):
|
|
|
|
# Our starting mode didn't have a prefix with it. Assume '+'.
|
|
|
|
modelist = '+' + modelist
|
2015-07-06 21:28:10 +02:00
|
|
|
if args:
|
2015-07-09 01:58:59 +02:00
|
|
|
# Add the args if there are any.
|
|
|
|
modelist += ' %s' % ' '.join(args)
|
|
|
|
return modelist
|
2015-06-24 04:29:53 +02:00
|
|
|
|
2015-09-13 07:29:53 +02:00
|
|
|
def _flip(mode):
|
|
|
|
"""Flips a mode character."""
|
|
|
|
# Make it a list first, strings don't support item assignment
|
|
|
|
mode = list(mode)
|
|
|
|
if mode[0] == '-': # Query is something like "-n"
|
|
|
|
mode[0] = '+' # Change it to "+n"
|
|
|
|
elif mode[0] == '+':
|
|
|
|
mode[0] = '-'
|
|
|
|
else: # No prefix given, assume +
|
|
|
|
mode.insert(0, '-')
|
|
|
|
return ''.join(mode)
|
2015-08-29 04:27:38 +02:00
|
|
|
|
2015-09-13 22:48:14 +02:00
|
|
|
def reverseModes(irc, target, modes, oldobj=None):
|
2015-09-13 07:29:53 +02:00
|
|
|
"""Reverses/Inverts the mode string or mode list given.
|
2015-08-29 04:27:38 +02:00
|
|
|
|
2015-09-13 22:48:14 +02:00
|
|
|
Optionally, an oldobj argument can be given to look at an earlier state of
|
|
|
|
a channel/user object, e.g. for checking the op status of a mode setter
|
|
|
|
before their modes are processed and added to the channel state.
|
|
|
|
|
|
|
|
This function allows both mode strings or mode lists. Example uses:
|
|
|
|
"+mi-lk test => "-mi+lk test"
|
|
|
|
"mi-k test => "-mi+k test"
|
|
|
|
[('+m', None), ('+r', None), ('+l', '3'), ('-o', 'person')
|
|
|
|
=> {('-m', None), ('-r', None), ('-l', None), ('+o', 'person')})
|
|
|
|
{('s', None), ('+o', 'whoever') => {('-s', None), ('-o', 'whoever')})
|
2015-08-29 04:27:38 +02:00
|
|
|
"""
|
|
|
|
origtype = type(modes)
|
2015-09-13 07:29:53 +02:00
|
|
|
# If the query is a string, we have to parse it first.
|
|
|
|
if origtype == str:
|
|
|
|
modes = parseModes(irc, target, modes.split(" "))
|
|
|
|
# Get the current mode list first.
|
|
|
|
if isChannel(target):
|
2015-09-13 22:48:14 +02:00
|
|
|
c = oldobj or irc.channels[target]
|
|
|
|
oldmodes = c.modes.copy()
|
2015-09-13 07:29:53 +02:00
|
|
|
possible_modes = irc.cmodes.copy()
|
|
|
|
# For channels, this also includes the list of prefix modes.
|
|
|
|
possible_modes['*A'] += ''.join(irc.prefixmodes)
|
2015-09-13 22:48:14 +02:00
|
|
|
for name, userlist in c.prefixmodes.items():
|
2015-09-13 07:29:53 +02:00
|
|
|
try:
|
|
|
|
oldmodes.update([(irc.cmodes[name[:-1]], u) for u in userlist])
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
oldmodes = irc.users[target].modes
|
|
|
|
possible_modes = irc.umodes
|
|
|
|
newmodes = []
|
2015-09-13 22:48:14 +02:00
|
|
|
log.debug('(%s) reverseModes: old/current mode list for %s is: %s', irc.name,
|
|
|
|
target, oldmodes)
|
2015-09-13 07:29:53 +02:00
|
|
|
for char, arg in modes:
|
|
|
|
# Mode types:
|
|
|
|
# A = Mode that adds or removes a nick or address to a list. Always has a parameter.
|
|
|
|
# B = Mode that changes a setting and always has a parameter.
|
|
|
|
# C = Mode that changes a setting and only has a parameter when set.
|
|
|
|
# D = Mode that changes a setting and never has a parameter.
|
|
|
|
mchar = char[-1]
|
|
|
|
if mchar in possible_modes['*B'] + possible_modes['*C']:
|
|
|
|
# We need to find the current mode list, so we can reset arguments
|
|
|
|
# for modes that have arguments. For example, setting +l 30 on a channel
|
|
|
|
# that had +l 50 set should give "+l 30", not "-l".
|
|
|
|
oldarg = [m for m in oldmodes if m[0] == mchar]
|
|
|
|
if oldarg: # Old mode argument for this mode existed, use that.
|
|
|
|
oldarg = oldarg[0]
|
|
|
|
mpair = ('+%s' % oldarg[0], oldarg[1])
|
|
|
|
else: # Not found, flip the mode then.
|
|
|
|
# Mode takes no arguments when unsetting.
|
|
|
|
if mchar in possible_modes['*C'] and char[0] != '-':
|
|
|
|
arg = None
|
|
|
|
mpair = (_flip(char), arg)
|
|
|
|
else:
|
|
|
|
mpair = (_flip(char), arg)
|
|
|
|
if char[0] != '-' and (mchar, arg) in oldmodes:
|
|
|
|
# Mode is already set.
|
2015-09-13 22:48:14 +02:00
|
|
|
log.debug("(%s) reverseModes: skipping reversing '%s %s' with %s since we're "
|
|
|
|
"setting a mode that's already set.", irc.name, char, arg, mpair)
|
2015-09-13 07:29:53 +02:00
|
|
|
continue
|
2015-09-13 23:05:07 +02:00
|
|
|
elif char[0] == '-' and (mchar, arg) not in oldmodes and mchar in possible_modes['*A']:
|
|
|
|
# We're unsetting a prefixmode that was never set - don't set it in response!
|
|
|
|
# Charybdis lacks verification for this server-side.
|
|
|
|
log.debug("(%s) reverseModes: skipping reversing '%s %s' with %s since it "
|
|
|
|
"wasn't previously set.", irc.name, char, arg, mpair)
|
|
|
|
continue
|
2015-09-13 07:29:53 +02:00
|
|
|
newmodes.append(mpair)
|
|
|
|
|
2015-09-13 22:48:14 +02:00
|
|
|
log.debug('(%s) reverseModes: new modes: %s', irc.name, newmodes)
|
2015-09-13 07:29:53 +02:00
|
|
|
if origtype == str:
|
|
|
|
# If the original query is a string, send it back as a string.
|
|
|
|
return joinModes(newmodes)
|
2015-08-29 04:27:38 +02:00
|
|
|
else:
|
2015-09-13 07:29:53 +02:00
|
|
|
return set(newmodes)
|
2015-08-29 04:27:38 +02:00
|
|
|
|
2015-08-26 05:38:32 +02:00
|
|
|
def isOper(irc, uid, allowAuthed=True, allowOper=True):
|
2015-09-13 07:28:34 +02:00
|
|
|
"""
|
|
|
|
Returns whether the given user has operator status on PyLink. This can be achieved
|
2015-08-26 05:38:32 +02:00
|
|
|
by either identifying to PyLink as admin (if allowAuthed is True),
|
|
|
|
or having user mode +o set (if allowOper is True). At least one of
|
|
|
|
allowAuthed or allowOper must be True for this to give any meaningful
|
|
|
|
results.
|
2015-07-11 01:42:53 +02:00
|
|
|
"""
|
2015-08-26 05:38:32 +02:00
|
|
|
if uid in irc.users:
|
|
|
|
if allowOper and ("o", None) in irc.users[uid].modes:
|
|
|
|
return True
|
|
|
|
elif allowAuthed and irc.users[uid].identified:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def checkAuthenticated(irc, uid, allowAuthed=True, allowOper=True):
|
2015-09-13 07:28:34 +02:00
|
|
|
"""
|
2015-12-26 23:45:28 +01:00
|
|
|
Checks whether the given user has operator status on PyLink, raising
|
2015-09-13 07:28:34 +02:00
|
|
|
NotAuthenticatedError and logging the access denial if not.
|
|
|
|
"""
|
2015-08-26 05:38:32 +02:00
|
|
|
lastfunc = inspect.stack()[1][3]
|
|
|
|
if not isOper(irc, uid, allowAuthed=allowAuthed, allowOper=allowOper):
|
|
|
|
log.warning('(%s) Access denied for %s calling %r', irc.name,
|
|
|
|
getHostmask(irc, uid), lastfunc)
|
|
|
|
raise NotAuthenticatedError("You are not authenticated!")
|
|
|
|
return True
|
2015-07-19 23:59:35 +02:00
|
|
|
|
2015-09-18 04:01:54 +02:00
|
|
|
def isManipulatableClient(irc, uid):
|
|
|
|
"""
|
|
|
|
Returns whether the given user is marked as an internal, manipulatable
|
|
|
|
client. Usually, automatically spawned services clients should have this
|
|
|
|
set True to prevent interactions with opers (like mode changes) from
|
|
|
|
causing desyncs.
|
|
|
|
"""
|
2016-01-01 02:28:47 +01:00
|
|
|
return irc.isInternalClient(uid) and irc.users[uid].manipulatable
|
2015-09-18 04:01:54 +02:00
|
|
|
|
2016-01-01 03:09:19 +01:00
|
|
|
def getHostmask(irc, user, realhost=False):
|
|
|
|
"""
|
|
|
|
Returns the hostmask of the given user, if present. If the realhost option
|
|
|
|
is given, return the real host of the user instead of the displayed host."""
|
2015-07-19 23:59:35 +02:00
|
|
|
userobj = irc.users.get(user)
|
2016-01-01 03:09:19 +01:00
|
|
|
|
2015-07-19 23:59:35 +02:00
|
|
|
try:
|
|
|
|
nick = userobj.nick
|
|
|
|
except AttributeError:
|
2016-01-01 03:09:19 +01:00
|
|
|
nick = '<unknown-nick>'
|
|
|
|
|
2015-07-19 23:59:35 +02:00
|
|
|
try:
|
|
|
|
ident = userobj.ident
|
|
|
|
except AttributeError:
|
2016-01-01 03:09:19 +01:00
|
|
|
ident = '<unknown-ident>'
|
|
|
|
|
2015-07-19 23:59:35 +02:00
|
|
|
try:
|
2016-01-01 03:09:19 +01:00
|
|
|
if realhost:
|
|
|
|
host = userobj.realhost
|
|
|
|
else:
|
|
|
|
host = userobj.host
|
2015-07-19 23:59:35 +02:00
|
|
|
except AttributeError:
|
2016-01-01 03:09:19 +01:00
|
|
|
host = '<unknown-host>'
|
|
|
|
|
2015-07-19 23:59:35 +02:00
|
|
|
return '%s!%s@%s' % (nick, ident, host)
|
2015-09-29 04:12:45 +02:00
|
|
|
|
|
|
|
def loadModuleFromFolder(name, folder):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Imports and returns a module, if existing, from a specific folder.
|
|
|
|
"""
|
2015-11-23 05:14:47 +01:00
|
|
|
fullpath = os.path.join(folder, '%s.py' % name)
|
|
|
|
m = importlib.machinery.SourceFileLoader(name, fullpath).load_module()
|
2015-09-29 04:12:45 +02:00
|
|
|
return m
|
|
|
|
|
2015-12-25 02:33:49 +01:00
|
|
|
def getProtocolModule(protoname):
|
2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
Imports and returns the protocol module requested.
|
|
|
|
"""
|
2015-09-29 04:12:45 +02:00
|
|
|
return loadModuleFromFolder(protoname, world.protocols_folder)
|
2015-12-07 02:13:47 +01:00
|
|
|
|
|
|
|
def getDatabaseName(dbname):
|
|
|
|
"""
|
|
|
|
Returns a database filename with the given base DB name appropriate for the
|
|
|
|
current PyLink instance.
|
|
|
|
|
|
|
|
This returns '<dbname>.db' if the running config name is PyLink's default
|
|
|
|
(config.yml), and '<dbname>-<config name>.db' for anything else. For example,
|
|
|
|
if this is called from an instance running as './pylink testing.yml', it
|
|
|
|
would return '<dbname>-testing.db'."""
|
|
|
|
if conf.confname != 'pylink':
|
|
|
|
dbname += '-%s' % conf.confname
|
|
|
|
dbname += '.db'
|
|
|
|
return dbname
|