2003-03-12 07:26:59 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
from fix import *
|
|
|
|
|
2003-03-27 07:57:09 +01:00
|
|
|
import os
|
2003-07-31 08:20:58 +02:00
|
|
|
import sets
|
2003-03-12 07:26:59 +01:00
|
|
|
import time
|
|
|
|
import atexit
|
|
|
|
import string
|
|
|
|
|
|
|
|
import conf
|
2003-04-03 10:29:21 +02:00
|
|
|
import debug
|
2003-03-12 07:26:59 +01:00
|
|
|
import world
|
|
|
|
import ircutils
|
|
|
|
|
|
|
|
def fromChannelCapability(capability):
|
2003-04-20 23:52:53 +02:00
|
|
|
assert isChannelCapability(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
return capability.split('.', 1)
|
|
|
|
|
|
|
|
def isChannelCapability(capability):
|
|
|
|
if '.' in capability:
|
2003-04-20 23:52:53 +02:00
|
|
|
(channel, capability) = capability.split('.', 1)
|
2003-03-12 07:26:59 +01:00
|
|
|
return ircutils.isChannel(channel)
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def makeChannelCapability(channel, capability):
|
|
|
|
return '%s.%s' % (channel, capability)
|
|
|
|
|
|
|
|
def isAntiCapability(capability):
|
|
|
|
if isChannelCapability(capability):
|
|
|
|
(_, capability) = fromChannelCapability(capability)
|
|
|
|
return capability[0] == '!'
|
|
|
|
|
|
|
|
def makeAntiCapability(capability):
|
|
|
|
if '.' in capability:
|
|
|
|
(channel, capability) = fromChannelCapability(capability)
|
2003-03-25 23:47:58 +01:00
|
|
|
return '%s.!%s' % (channel, capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
|
|
|
return '!' + capability
|
|
|
|
|
2003-04-20 23:52:53 +02:00
|
|
|
def unAntiCapability(capability):
|
|
|
|
assert isAntiCapability(capability)
|
|
|
|
if isChannelCapability(capability):
|
|
|
|
(channel, capability) = fromChannelCapability(capability)
|
|
|
|
return '.'.join((channel, capability[1:]))
|
|
|
|
else:
|
|
|
|
return capability[1:]
|
|
|
|
|
|
|
|
def invertCapability(capability):
|
|
|
|
if isAntiCapability(capability):
|
|
|
|
return unAntiCapability(capability)
|
|
|
|
else:
|
|
|
|
return makeAntiCapability(capability)
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
_normal = string.maketrans('\r\n', ' ')
|
|
|
|
def normalize(s):
|
|
|
|
return s.translate(_normal)
|
|
|
|
|
|
|
|
|
2003-07-31 08:20:58 +02:00
|
|
|
class CapabilitySet(sets.Set):
|
2003-04-20 23:52:53 +02:00
|
|
|
def __init__(self, capabilities=()):
|
2003-07-31 08:20:58 +02:00
|
|
|
sets.Set.__init__(self)
|
2003-04-20 23:52:53 +02:00
|
|
|
for capability in capabilities:
|
|
|
|
self.add(capability)
|
|
|
|
|
|
|
|
def add(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
|
|
|
inverted = invertCapability(capability)
|
2003-07-31 08:20:58 +02:00
|
|
|
if sets.Set.__contains__(self, inverted):
|
|
|
|
sets.Set.remove(self, inverted)
|
|
|
|
sets.Set.add(self, capability)
|
2003-04-20 23:52:53 +02:00
|
|
|
|
|
|
|
def remove(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
2003-07-31 08:20:58 +02:00
|
|
|
sets.Set.remove(self, capability)
|
2003-04-20 23:52:53 +02:00
|
|
|
|
|
|
|
def __contains__(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
2003-07-31 08:20:58 +02:00
|
|
|
if sets.Set.__contains__(self, capability):
|
2003-04-20 23:52:53 +02:00
|
|
|
return True
|
2003-07-31 08:20:58 +02:00
|
|
|
if sets.Set.__contains__(self, invertCapability(capability)):
|
2003-04-20 23:52:53 +02:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def check(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
2003-07-31 08:20:58 +02:00
|
|
|
if sets.Set.__contains__(self, capability):
|
2003-04-20 23:52:53 +02:00
|
|
|
return True
|
2003-07-31 08:20:58 +02:00
|
|
|
elif sets.Set.__contains__(self, invertCapability(capability)):
|
2003-04-20 23:52:53 +02:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
raise KeyError, capability
|
|
|
|
|
|
|
|
def repr(self):
|
|
|
|
return '%s([%r])' % (self.__class__.__name__, ', '.join(self))
|
|
|
|
|
|
|
|
class UserCapabilitySet(CapabilitySet):
|
|
|
|
def __contains__(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
|
|
|
if CapabilitySet.__contains__(self, 'owner'):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return CapabilitySet.__contains__(self, capability)
|
|
|
|
|
|
|
|
def check(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
|
|
|
if capability == 'owner':
|
|
|
|
if CapabilitySet.__contains__(self, 'owner'):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
if 'owner' in self:
|
|
|
|
if isAntiCapability(capability):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return CapabilitySet.check(self, capability)
|
|
|
|
|
|
|
|
def add(self, capability):
|
|
|
|
capability = ircutils.toLower(capability)
|
|
|
|
assert capability != '!owner', '"!owner" disallowed.'
|
|
|
|
CapabilitySet.add(self, capability)
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
class IrcUser(object):
|
|
|
|
"""This class holds the capabilities and authentications for a user.
|
|
|
|
"""
|
|
|
|
def __init__(self, ignore=False, password='', auth=None,
|
2003-04-20 23:52:53 +02:00
|
|
|
capabilities=(), hostmasks=None):
|
2003-03-12 07:26:59 +01:00
|
|
|
self.auth = auth # The (time, hostmask) a user authenticated under.
|
|
|
|
self.ignore = ignore # A boolean deciding if the person is ignored.
|
|
|
|
self.password = password # password (plaintext? hashed?)
|
2003-04-20 23:52:53 +02:00
|
|
|
self.capabilities = UserCapabilitySet()
|
|
|
|
for capability in capabilities:
|
|
|
|
self.capabilities.add(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
if hostmasks is None:
|
|
|
|
self.hostmasks = [] # A list of hostmasks used for recognition
|
|
|
|
else:
|
|
|
|
self.hostmasks = hostmasks
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return '%s(ignore=%s, auth=%r, password=%r, '\
|
|
|
|
'capabilities=%r, hostmasks=%r)\n' %\
|
|
|
|
(self.__class__.__name__, self.ignore, self.auth,
|
|
|
|
self.password, self.capabilities, self.hostmasks)
|
|
|
|
|
|
|
|
def addCapability(self, capability):
|
|
|
|
self.capabilities.add(capability)
|
|
|
|
|
|
|
|
def removeCapability(self, capability):
|
|
|
|
if capability in self.capabilities:
|
|
|
|
self.capabilities.remove(capability)
|
|
|
|
|
|
|
|
def checkCapability(self, capability):
|
2003-04-20 23:52:53 +02:00
|
|
|
if self.ignore:
|
2003-03-12 07:26:59 +01:00
|
|
|
if isAntiCapability(capability):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
2003-04-20 23:52:53 +02:00
|
|
|
return self.capabilities.check(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def setPassword(self, password):
|
|
|
|
self.password = password
|
|
|
|
|
|
|
|
def checkPassword(self, password):
|
|
|
|
return (self.password == password)
|
|
|
|
|
|
|
|
def checkHostmask(self, hostmask):
|
|
|
|
if self.auth and (hostmask == self.auth[1]):
|
|
|
|
return True
|
|
|
|
for pat in self.hostmasks:
|
|
|
|
if ircutils.hostmaskPatternEqual(pat, hostmask):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def addHostmask(self, hostmask):
|
|
|
|
self.hostmasks.append(hostmask)
|
|
|
|
|
|
|
|
def removeHostmask(self, hostmask):
|
|
|
|
self.hostmasks = [s for s in self.hostmasks if s != hostmask]
|
|
|
|
|
|
|
|
def hasHostmask(self, hostmask):
|
|
|
|
return hostmask in self.hostmasks
|
|
|
|
|
|
|
|
def setAuth(self, hostmask):
|
|
|
|
self.auth = (time.time(), hostmask)
|
|
|
|
|
|
|
|
def unsetAuth(self):
|
|
|
|
self.auth = None
|
|
|
|
|
|
|
|
def checkAuth(self, hostmask):
|
|
|
|
if self.auth is not None:
|
|
|
|
(timeSet, prefix) = self.auth
|
|
|
|
if time.time() - timeSet < 3600:
|
|
|
|
if hostmask == prefix:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
self.unsetAuth()
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class IrcChannel(object):
|
|
|
|
"""This class holds the capabilities, bans, and ignores of a channel.
|
|
|
|
"""
|
2003-04-02 13:08:34 +02:00
|
|
|
defaultOff = ('op', 'halfop', 'voice', 'protected')
|
2003-03-12 07:26:59 +01:00
|
|
|
def __init__(self, bans=None, ignores=None, capabilities=None,
|
|
|
|
lobotomized=False, defaultAllow=True):
|
|
|
|
self.defaultAllow = defaultAllow
|
|
|
|
if bans is None:
|
|
|
|
self.bans = []
|
|
|
|
else:
|
|
|
|
self.bans = bans
|
|
|
|
if ignores is None:
|
|
|
|
self.ignores = []
|
|
|
|
else:
|
|
|
|
self.ignores = ignores
|
|
|
|
if capabilities is None:
|
2003-04-20 23:52:53 +02:00
|
|
|
self.capabilities = CapabilitySet()
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
|
|
|
self.capabilities = capabilities
|
|
|
|
for capability in self.defaultOff:
|
|
|
|
if capability not in self.capabilities:
|
2003-04-02 13:08:34 +02:00
|
|
|
self.capabilities.add(makeAntiCapability(capability))
|
2003-03-12 07:26:59 +01:00
|
|
|
self.lobotomized = lobotomized
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return '%s(bans=%r, ignores=%r, capabilities=%r, '\
|
|
|
|
'lobotomized=%r, defaultAllow=%s)\n' %\
|
|
|
|
(self.__class__.__name__, self.bans, self.ignores,
|
|
|
|
self.capabilities, self.lobotomized,
|
|
|
|
self.defaultAllow)
|
|
|
|
|
|
|
|
def addBan(self, hostmask):
|
|
|
|
self.bans.append(hostmask)
|
|
|
|
|
|
|
|
def removeBan(self, hostmask):
|
|
|
|
self.bans = [s for s in self.bans if s != hostmask]
|
|
|
|
|
|
|
|
def checkBan(self, hostmask):
|
|
|
|
for pat in self.bans:
|
|
|
|
if ircutils.hostmaskPatternEqual(pat, hostmask):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def addIgnore(self, hostmask):
|
|
|
|
self.ignores.append(hostmask)
|
|
|
|
|
|
|
|
def removeIgnore(self, hostmask):
|
|
|
|
self.ignores = [s for s in self.ignores if s != hostmask]
|
|
|
|
|
2003-04-02 13:08:34 +02:00
|
|
|
def addCapability(self, capability):
|
|
|
|
self.capabilities.add(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def removeCapability(self, capability):
|
2003-04-02 13:08:34 +02:00
|
|
|
self.capabilities.remove(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-04-02 13:08:34 +02:00
|
|
|
def setDefaultCapability(self, b):
|
|
|
|
self.defaultAllow = b
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def checkCapability(self, capability):
|
|
|
|
if capability in self.capabilities:
|
2003-04-20 23:52:53 +02:00
|
|
|
return self.capabilities.check(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
2003-04-20 23:52:53 +02:00
|
|
|
if isAntiCapability(capability):
|
|
|
|
return not self.defaultAllow
|
2003-04-02 13:08:34 +02:00
|
|
|
else:
|
|
|
|
return self.defaultAllow
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def checkIgnored(self, hostmask):
|
|
|
|
if self.lobotomized:
|
|
|
|
return True
|
|
|
|
for mask in self.bans:
|
|
|
|
if ircutils.hostmaskPatternEqual(mask, hostmask):
|
|
|
|
return True
|
|
|
|
for mask in self.ignores:
|
|
|
|
if ircutils.hostmaskPatternEqual(mask, hostmask):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class UsersDictionary(object):
|
|
|
|
def __init__(self, filename):
|
|
|
|
self.filename = filename
|
|
|
|
fd = file(filename, 'r')
|
|
|
|
s = fd.read()
|
|
|
|
fd.close()
|
2003-07-31 08:20:58 +02:00
|
|
|
Set = sets.Set
|
2003-08-20 09:19:56 +02:00
|
|
|
ignore(Set) # Make PyChecker happy.
|
2003-03-12 07:26:59 +01:00
|
|
|
self.dict = eval(normalize(s))
|
|
|
|
self.cache = {} # hostmasks to nicks.
|
2003-04-11 22:42:21 +02:00
|
|
|
self.revcache = ircutils.IrcDict() # nicks to hostmasks.
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def resetCache(self, s):
|
|
|
|
if s in self.cache:
|
|
|
|
# it's a hostmask.
|
|
|
|
name = self.cache[s]
|
|
|
|
del self.cache[s]
|
|
|
|
else:
|
|
|
|
# it's already a name.
|
|
|
|
name = s
|
|
|
|
# name should always be in self.revcache, this should never KeyError.
|
|
|
|
if name in self.revcache:
|
|
|
|
for hostmask in self.revcache[name]:
|
|
|
|
del self.cache[hostmask]
|
|
|
|
del self.revcache[name]
|
|
|
|
|
|
|
|
def setCache(self, hostmask, name):
|
|
|
|
self.cache[hostmask] = name
|
|
|
|
self.revcache.setdefault(name, []).append(hostmask)
|
|
|
|
|
|
|
|
def getUser(self, s):
|
|
|
|
if ircutils.isUserHostmask(s):
|
|
|
|
name = self.getUserName(s)
|
|
|
|
else:
|
|
|
|
name = s
|
|
|
|
return self.dict[name]
|
|
|
|
|
|
|
|
def setUser(self, s, u):
|
|
|
|
# First, invalidate the cache for this user.
|
|
|
|
self.resetCache(s)
|
|
|
|
if ircutils.isUserHostmask(s):
|
|
|
|
name = self.getUserName(s)
|
|
|
|
else:
|
|
|
|
name = s
|
2003-04-08 09:28:45 +02:00
|
|
|
for hostmask in u.hostmasks:
|
|
|
|
try:
|
|
|
|
username = self.getUserName(hostmask)
|
|
|
|
if username != name:
|
|
|
|
raise ValueError, 'User has hostmasks already matching ' \
|
|
|
|
'another user\'s hostmasks.'
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2003-03-12 07:26:59 +01:00
|
|
|
self.dict[name] = u
|
|
|
|
|
|
|
|
def hasUser(self, s):
|
|
|
|
return (s in self.dict)
|
|
|
|
|
|
|
|
def delUser(self, s):
|
|
|
|
if ircutils.isUserHostmask(s):
|
|
|
|
name = self.getUserName(s)
|
|
|
|
else:
|
|
|
|
name = s
|
|
|
|
self.resetCache(name)
|
2003-03-31 11:26:51 +02:00
|
|
|
try:
|
|
|
|
del self.dict[name]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def getUserName(self, s):
|
|
|
|
assert ircutils.isUserHostmask(s), 'string must be a hostmask'
|
|
|
|
if s in self.cache:
|
|
|
|
return self.cache[s]
|
|
|
|
else:
|
|
|
|
for (name, user) in self.dict.iteritems():
|
|
|
|
if user.checkHostmask(s):
|
|
|
|
self.cache[s] = name
|
2003-03-31 04:53:07 +02:00
|
|
|
self.revcache.setdefault(name,[]).append(s)
|
2003-03-12 07:26:59 +01:00
|
|
|
return name
|
|
|
|
raise KeyError, s
|
|
|
|
|
|
|
|
def flush(self):
|
|
|
|
fd = file(self.filename, 'w')
|
|
|
|
fd.write(repr(self.dict))
|
|
|
|
fd.close()
|
|
|
|
|
|
|
|
def reload(self):
|
|
|
|
self.__init__(self.filename)
|
|
|
|
|
|
|
|
class ChannelsDictionary(object):
|
|
|
|
def __init__(self, filename):
|
|
|
|
self.filename = filename
|
|
|
|
fd = file(filename, 'r')
|
|
|
|
s = fd.read()
|
|
|
|
fd.close()
|
2003-07-31 08:20:58 +02:00
|
|
|
Set = sets.Set
|
2003-03-12 07:26:59 +01:00
|
|
|
self.dict = eval(normalize(s))
|
|
|
|
|
|
|
|
def getChannel(self, channel):
|
|
|
|
channel = channel.lower()
|
|
|
|
if channel in self.dict:
|
|
|
|
return self.dict[channel]
|
|
|
|
else:
|
|
|
|
c = IrcChannel()
|
|
|
|
self.dict[channel] = c
|
|
|
|
return c
|
|
|
|
|
|
|
|
def setChannel(self, channel, ircChannel):
|
|
|
|
channel = channel.lower()
|
|
|
|
self.dict[channel] = ircChannel
|
|
|
|
|
|
|
|
def flush(self):
|
|
|
|
fd = file(self.filename, 'w')
|
|
|
|
fd.write(repr(self.dict))
|
|
|
|
fd.close()
|
|
|
|
|
|
|
|
def reload(self):
|
|
|
|
self.__init__(self.filename)
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Later, I might add some special handling for botnet.
|
|
|
|
###
|
2003-03-27 07:57:09 +01:00
|
|
|
if not os.path.exists(conf.userfile):
|
|
|
|
fd = open(conf.userfile, 'w')
|
|
|
|
fd.write('{}')
|
|
|
|
fd.close()
|
2003-03-12 07:26:59 +01:00
|
|
|
users = UsersDictionary(conf.userfile)
|
2003-03-27 07:57:09 +01:00
|
|
|
|
|
|
|
if not os.path.exists(conf.channelfile):
|
|
|
|
fd = file(conf.channelfile, 'w')
|
|
|
|
fd.write('{}')
|
|
|
|
fd.close()
|
2003-03-12 07:26:59 +01:00
|
|
|
channels = ChannelsDictionary(conf.channelfile)
|
|
|
|
|
2003-04-05 15:54:12 +02:00
|
|
|
def flushUsers():
|
|
|
|
for (name, u) in users.dict.iteritems():
|
|
|
|
u.unsetAuth()
|
|
|
|
users.flush()
|
|
|
|
|
|
|
|
atexit.register(flushUsers)
|
2003-03-12 07:26:59 +01:00
|
|
|
atexit.register(channels.flush)
|
|
|
|
|
|
|
|
world.flushers.append(users.flush)
|
|
|
|
world.flushers.append(channels.flush)
|
|
|
|
|
|
|
|
###
|
|
|
|
# Useful functions for checking credentials.
|
|
|
|
###
|
|
|
|
def checkIgnored(hostmask, recipient='', users=users, channels=channels):
|
|
|
|
"""checkIgnored(hostmask, recipient='') -> True/False
|
|
|
|
|
|
|
|
Checks if the user is ignored by the recipient of the message.
|
|
|
|
"""
|
|
|
|
for ignore in conf.ignores:
|
|
|
|
if ircutils.hostmaskPatternEqual(ignore, hostmask):
|
|
|
|
return True
|
|
|
|
try:
|
|
|
|
user = users.getUser(hostmask)
|
|
|
|
except KeyError:
|
|
|
|
# If there's no user...
|
|
|
|
if ircutils.isChannel(recipient):
|
|
|
|
channel = channels.getChannel(recipient)
|
|
|
|
return channel.checkIgnored(hostmask)
|
|
|
|
else:
|
|
|
|
return conf.defaultIgnore
|
|
|
|
if user.checkCapability('owner'):
|
|
|
|
# Owners shouldn't ever be ignored.
|
|
|
|
return False
|
|
|
|
elif user.ignore:
|
|
|
|
return True
|
|
|
|
elif recipient:
|
|
|
|
if ircutils.isChannel(recipient):
|
|
|
|
channel = channels.getChannel(recipient)
|
|
|
|
return channel.checkIgnored(hostmask)
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2003-04-21 07:38:13 +02:00
|
|
|
def _x(capability, ret):
|
|
|
|
if isAntiCapability(capability):
|
|
|
|
return not ret
|
|
|
|
else:
|
|
|
|
return ret
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def checkCapability(hostmask, capability, users=users, channels=channels):
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('*** checking %s for %s' % (hostmask, capability))
|
2003-03-26 00:42:37 +01:00
|
|
|
if world.startup:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('world.startup is active.')
|
2003-04-21 07:38:13 +02:00
|
|
|
return _x(capability, True)
|
2003-03-12 07:26:59 +01:00
|
|
|
try:
|
|
|
|
u = users.getUser(hostmask)
|
2003-04-20 23:52:53 +02:00
|
|
|
except KeyError:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('user could not be found.')
|
2003-03-12 07:26:59 +01:00
|
|
|
if isChannelCapability(capability):
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('isChannelCapability true.')
|
2003-04-20 23:52:53 +02:00
|
|
|
(channel, capability) = fromChannelCapability(capability)
|
2003-03-12 07:26:59 +01:00
|
|
|
try:
|
2003-04-20 23:52:53 +02:00
|
|
|
c = channels.getChannel(channel)
|
|
|
|
if capability in c.capabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability in c.capabilities')
|
2003-04-20 23:52:53 +02:00
|
|
|
return c.checkCapability(capability)
|
|
|
|
else:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability not in c.capabilities')
|
2003-04-21 07:38:13 +02:00
|
|
|
return _x(capability, c.defaultAllow)
|
2003-04-20 23:52:53 +02:00
|
|
|
except KeyError:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('no such channel %s' % channel)
|
2003-04-20 23:52:53 +02:00
|
|
|
pass
|
|
|
|
if capability in conf.defaultCapabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability in conf.defaultCapability')
|
2003-04-20 23:52:53 +02:00
|
|
|
return True
|
|
|
|
elif invertCapability(capability) in conf.defaultCapabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('inverse capability in conf.defaultCapability')
|
2003-03-12 07:26:59 +01:00
|
|
|
return False
|
|
|
|
else:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('returning appropriate value given no good reason')
|
2003-04-21 07:38:13 +02:00
|
|
|
return _x(capability, conf.defaultAllow)
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('user found.')
|
2003-04-20 23:52:53 +02:00
|
|
|
if capability in u.capabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('found capability in u.capabilities.')
|
2003-04-20 23:52:53 +02:00
|
|
|
return u.checkCapability(capability)
|
|
|
|
else:
|
|
|
|
if isChannelCapability(capability):
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('isChannelCapability true, user found too.')
|
2003-04-20 23:52:53 +02:00
|
|
|
(channel, capability) = fromChannelCapability(capability)
|
|
|
|
try:
|
|
|
|
c = channels.getChannel(channel)
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('channel found')
|
2003-04-20 23:52:53 +02:00
|
|
|
if capability in c.capabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability in c.capabilities')
|
2003-04-20 23:52:53 +02:00
|
|
|
return c.checkCapability(capability)
|
|
|
|
else:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability not in c.capabilities')
|
2003-04-21 07:38:13 +02:00
|
|
|
return _x(capability, c.defaultAllow)
|
2003-04-20 23:52:53 +02:00
|
|
|
except KeyError:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('no such channel %s' % channel)
|
2003-04-20 23:52:53 +02:00
|
|
|
pass
|
|
|
|
if capability in conf.defaultCapabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('capability in conf.defaultCapabilities')
|
2003-03-12 07:26:59 +01:00
|
|
|
return True
|
2003-04-20 23:52:53 +02:00
|
|
|
elif invertCapability(capability) in conf.defaultCapabilities:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('inverse capability in conf.defaultCapabilities')
|
2003-04-20 23:52:53 +02:00
|
|
|
return False
|
2003-04-02 13:08:34 +02:00
|
|
|
else:
|
2003-04-21 07:23:31 +02:00
|
|
|
#debug.printf('returning appropriate value given no good reason')
|
2003-04-21 07:38:13 +02:00
|
|
|
return _x(capability, conf.defaultAllow)
|
2003-04-20 23:52:53 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def checkCapabilities(hostmask, capabilities, requireAll=False):
|
|
|
|
"""Checks that a user has capabilities in a list.
|
|
|
|
|
|
|
|
requireAll is the True if *all* capabilities in the list must be had, False
|
|
|
|
if *any* of the capabilities in the list must be had.
|
|
|
|
"""
|
|
|
|
for capability in capabilities:
|
|
|
|
if requireAll:
|
|
|
|
if not checkCapability(hostmask, capability):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
if checkCapability(hostmask, capability):
|
|
|
|
return True
|
|
|
|
if requireAll:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2003-03-28 08:38:16 +01:00
|
|
|
def getUser(irc, s):
|
2003-03-28 08:55:21 +01:00
|
|
|
if ircutils.isUserHostmask(s):
|
2003-03-28 08:38:16 +01:00
|
|
|
return users.getUserName(s)
|
|
|
|
else:
|
|
|
|
if users.hasUser(s):
|
|
|
|
return s
|
|
|
|
else:
|
|
|
|
return users.getUserName(irc.state.nickToHostmask(s))
|
|
|
|
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|