2005-02-02 13:20:13 +01:00
|
|
|
###
|
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2012-09-01 16:16:48 +02:00
|
|
|
# Copyright (c) 2010, James McCoy
|
2005-02-02 13:20:13 +01:00
|
|
|
# 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.
|
|
|
|
###
|
|
|
|
|
|
|
|
import re
|
2006-07-14 17:36:11 +02:00
|
|
|
import time
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
import config
|
|
|
|
|
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
from supybot.commands import *
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.schedule as schedule
|
|
|
|
import supybot.callbacks as callbacks
|
2010-10-20 09:10:03 +02:00
|
|
|
from supybot.i18n import PluginInternationalization, internationalizeDocstring
|
|
|
|
_ = PluginInternationalization('Services')
|
2005-02-02 13:20:13 +01:00
|
|
|
|
2005-02-09 08:04:04 +01:00
|
|
|
class Services(callbacks.Plugin):
|
2005-02-02 13:20:13 +01:00
|
|
|
"""This plugin handles dealing with Services on networks that provide them.
|
|
|
|
Basically, you should use the "password" command to tell the bot a nick to
|
|
|
|
identify with and what password to use to identify with that nick. You can
|
|
|
|
use the password command multiple times if your bot has multiple nicks
|
|
|
|
registered. Also, be sure to configure the NickServ and ChanServ
|
|
|
|
configuration variables to match the NickServ and ChanServ nicks on your
|
2005-03-03 01:02:18 +01:00
|
|
|
network. Other commands such as identify, op, etc. should not be
|
2005-02-02 13:20:13 +01:00
|
|
|
necessary if the bot is properly configured."""
|
|
|
|
def __init__(self, irc):
|
|
|
|
self.__parent = super(Services, self)
|
|
|
|
self.__parent.__init__(irc)
|
|
|
|
for nick in self.registryValue('nicks'):
|
|
|
|
config.registerNick(nick)
|
|
|
|
self.reset()
|
|
|
|
|
|
|
|
def reset(self):
|
|
|
|
self.channels = []
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = None
|
2005-02-02 13:20:13 +01:00
|
|
|
self.identified = False
|
2011-12-06 06:55:29 +01:00
|
|
|
self.waitingJoins = {}
|
2005-02-02 13:20:13 +01:00
|
|
|
|
2010-06-20 04:38:27 +02:00
|
|
|
def disabled(self, irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
disabled = self.registryValue('disabledNetworks')
|
|
|
|
if irc.network in disabled or \
|
|
|
|
irc.state.supported.get('NETWORK', '') in disabled:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2005-02-02 13:20:13 +01:00
|
|
|
def outFilter(self, irc, msg):
|
2010-06-28 01:48:36 +02:00
|
|
|
if msg.command == 'JOIN' and not self.disabled(irc):
|
2005-02-02 13:20:13 +01:00
|
|
|
if not self.identified:
|
|
|
|
if self.registryValue('noJoinsUntilIdentified'):
|
|
|
|
self.log.info('Holding JOIN to %s until identified.',
|
|
|
|
msg.args[0])
|
2011-12-06 06:55:29 +01:00
|
|
|
self.waitingJoins.setdefault(irc.network, [])
|
|
|
|
self.waitingJoins[irc.network].append(msg)
|
2005-02-02 13:20:13 +01:00
|
|
|
return None
|
|
|
|
return msg
|
|
|
|
|
2011-10-27 12:31:37 +02:00
|
|
|
def _getNick(self, network):
|
|
|
|
network_nick = conf.supybot.networks.get(network).nick()
|
|
|
|
if network_nick == '':
|
|
|
|
return conf.supybot.nick()
|
|
|
|
else:
|
|
|
|
return network_nick
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def _getNickServPassword(self, nick):
|
|
|
|
# This should later be nick-specific.
|
|
|
|
assert nick in self.registryValue('nicks')
|
|
|
|
return self.registryValue('NickServ.password.%s' % nick)
|
|
|
|
|
|
|
|
def _setNickServPassword(self, nick, password):
|
|
|
|
# This also should be nick-specific.
|
|
|
|
assert nick in self.registryValue('nicks')
|
|
|
|
self.setRegistryValue('NickServ.password.%s' % nick, password)
|
|
|
|
|
|
|
|
def _doIdentify(self, irc, nick=None):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick is None:
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick not in self.registryValue('nicks'):
|
|
|
|
return
|
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
password = self._getNickServPassword(nick)
|
|
|
|
if not nickserv or not password:
|
|
|
|
s = 'Tried to identify without a NickServ or password set.'
|
|
|
|
self.log.warning(s)
|
|
|
|
return
|
|
|
|
assert ircutils.strEqual(irc.nick, nick), \
|
|
|
|
'Identifying with not normal nick.'
|
|
|
|
self.log.info('Sending identify (current nick: %s)', irc.nick)
|
|
|
|
identify = 'IDENTIFY %s' % password
|
|
|
|
# It's important that this next statement is irc.sendMsg, not
|
|
|
|
# irc.queueMsg. We want this message to get through before any
|
|
|
|
# JOIN messages also being sent on 376.
|
|
|
|
irc.sendMsg(ircmsgs.privmsg(nickserv, identify))
|
|
|
|
|
|
|
|
def _doGhost(self, irc, nick=None):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick is None:
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick not in self.registryValue('nicks'):
|
|
|
|
return
|
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
password = self._getNickServPassword(nick)
|
2006-07-14 22:55:44 +02:00
|
|
|
ghostDelay = self.registryValue('ghostDelay')
|
2005-02-02 13:20:13 +01:00
|
|
|
if not nickserv or not password:
|
|
|
|
s = 'Tried to ghost without a NickServ or password set.'
|
|
|
|
self.log.warning(s)
|
|
|
|
return
|
2006-07-14 17:36:11 +02:00
|
|
|
if self.sentGhost and time.time() < (self.sentGhost + ghostDelay):
|
|
|
|
self.log.warning('Refusing to send GHOST more than once every '
|
|
|
|
'%s seconds.' % ghostDelay)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif not password:
|
|
|
|
self.log.warning('Not ghosting: no password set.')
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.log.info('Sending ghost (current nick: %s; ghosting: %s)',
|
|
|
|
irc.nick, nick)
|
|
|
|
ghost = 'GHOST %s %s' % (nick, password)
|
|
|
|
# Ditto about the sendMsg (see _doIdentify).
|
|
|
|
irc.sendMsg(ircmsgs.privmsg(nickserv, ghost))
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = time.time()
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def __call__(self, irc, msg):
|
|
|
|
self.__parent.__call__(irc, msg)
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick not in self.registryValue('nicks'):
|
|
|
|
return
|
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
password = self._getNickServPassword(nick)
|
2006-07-14 22:55:44 +02:00
|
|
|
ghostDelay = self.registryValue('ghostDelay')
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick and nickserv and password and \
|
|
|
|
not ircutils.strEqual(nick, irc.nick):
|
2006-08-15 16:49:42 +02:00
|
|
|
if irc.afterConnect and (self.sentGhost is None or
|
|
|
|
(self.sentGhost + ghostDelay) < time.time()):
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick in irc.state.nicksToHostmasks:
|
|
|
|
self._doGhost(irc)
|
|
|
|
else:
|
|
|
|
irc.sendMsg(ircmsgs.nick(nick)) # 433 is handled elsewhere.
|
|
|
|
|
|
|
|
def do001(self, irc, msg):
|
|
|
|
# New connection, make sure sentGhost is False.
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = None
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def do376(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick not in self.registryValue('nicks'):
|
|
|
|
return
|
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
if not nickserv:
|
|
|
|
self.log.warning('NickServ is unset, cannot identify.')
|
|
|
|
return
|
|
|
|
password = self._getNickServPassword(nick)
|
|
|
|
if not password:
|
|
|
|
self.log.warning('Password for %s is unset, cannot identify.',nick)
|
|
|
|
return
|
|
|
|
if not nick:
|
|
|
|
self.log.warning('Cannot identify without a nick being set. '
|
|
|
|
'Set supybot.plugins.Services.nick.')
|
|
|
|
return
|
|
|
|
if ircutils.strEqual(irc.nick, nick):
|
|
|
|
self._doIdentify(irc)
|
|
|
|
else:
|
|
|
|
self._doGhost(irc)
|
|
|
|
do422 = do377 = do376
|
|
|
|
|
|
|
|
def do433(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if nick not in self.registryValue('nicks'):
|
|
|
|
return
|
|
|
|
if nick and irc.afterConnect:
|
|
|
|
password = self._getNickServPassword(nick)
|
|
|
|
if not password:
|
|
|
|
return
|
|
|
|
self._doGhost(irc)
|
|
|
|
|
|
|
|
def do515(self, irc, msg):
|
|
|
|
# Can't join this channel, it's +r (we must be identified).
|
|
|
|
self.channels.append(msg.args[1])
|
|
|
|
|
|
|
|
def doNick(self, irc, msg):
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if ircutils.strEqual(msg.args[0], irc.nick) and \
|
|
|
|
ircutils.strEqual(irc.nick, nick):
|
|
|
|
self._doIdentify(irc)
|
|
|
|
elif ircutils.strEqual(msg.nick, nick):
|
|
|
|
irc.sendMsg(ircmsgs.nick(nick))
|
|
|
|
|
2011-11-15 06:29:36 +01:00
|
|
|
def _ghosted(self, irc, s):
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
lowered = s.lower()
|
|
|
|
return bool('killed' in lowered and (nick in s or 'ghost' in lowered))
|
|
|
|
|
|
|
|
def doNotice(self, irc, msg):
|
|
|
|
if irc.afterConnect:
|
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
chanserv = self.registryValue('ChanServ')
|
|
|
|
if nickserv and ircutils.strEqual(msg.nick, nickserv):
|
|
|
|
self.doNickservNotice(irc, msg)
|
|
|
|
elif chanserv and ircutils.strEqual(msg.nick, chanserv):
|
|
|
|
self.doChanservNotice(irc, msg)
|
|
|
|
|
|
|
|
_chanRe = re.compile('\x02(.*?)\x02')
|
|
|
|
def doChanservNotice(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
s = msg.args[1].lower()
|
|
|
|
channel = None
|
|
|
|
m = self._chanRe.search(s)
|
|
|
|
networkGroup = conf.supybot.networks.get(irc.network)
|
2006-01-16 15:33:53 +01:00
|
|
|
on = 'on %s' % irc.network
|
2005-02-02 13:20:13 +01:00
|
|
|
if m is not None:
|
|
|
|
channel = m.group(1)
|
|
|
|
if 'all bans' in s or 'unbanned from' in s:
|
|
|
|
# All bans removed (freenode)
|
|
|
|
# You have been unbanned from (oftc)
|
|
|
|
irc.sendMsg(networkGroup.channels.join(channel))
|
|
|
|
elif 'isn\'t registered' in s:
|
2010-10-03 20:58:38 +02:00
|
|
|
self.log.warning('Received "%s isn\'t registered" from ChanServ %s',
|
2006-01-16 15:33:53 +01:00
|
|
|
channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'this channel has been registered' in s:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.debug('Got "Registered channel" from ChanServ %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'already opped' in s:
|
|
|
|
# This shouldn't happen, Services.op should refuse to run if
|
|
|
|
# we already have ops.
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.debug('Got "Already opped" from ChanServ %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'access level' in s and 'is required' in s:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.warning('Got "Access level required" from ChanServ %s.',
|
|
|
|
on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'inviting' in s:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.debug('Got "Inviting to channel" from ChanServ %s.', on)
|
2013-06-17 23:54:59 +02:00
|
|
|
elif s.startswith('['):
|
|
|
|
chanTypes = irc.state.supported['CHANTYPES']
|
|
|
|
if re.match(r'^\[[%s]' % re.escape(chanTypes), s):
|
|
|
|
self.log.debug('Got entrymsg from ChanServ %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.warning('Got unexpected notice from ChanServ %s: %r.',
|
|
|
|
on, msg)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def doNickservNotice(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
s = ircutils.stripFormatting(msg.args[1].lower())
|
2006-01-16 15:33:53 +01:00
|
|
|
on = 'on %s' % irc.network
|
2005-02-02 13:20:13 +01:00
|
|
|
networkGroup = conf.supybot.networks.get(irc.network)
|
|
|
|
if 'incorrect' in s or 'denied' in s:
|
2006-01-16 15:33:53 +01:00
|
|
|
log = 'Received "Password Incorrect" from NickServ %s. ' \
|
|
|
|
'Resetting password to empty.' % on
|
2005-02-02 13:20:13 +01:00
|
|
|
self.log.warning(log)
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = time.time()
|
2005-02-02 13:20:13 +01:00
|
|
|
self._setNickServPassword(nick, '')
|
2011-11-15 06:29:36 +01:00
|
|
|
elif self._ghosted(irc, s):
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Received "GHOST succeeded" from NickServ %s.', on)
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = None
|
2005-02-02 13:20:13 +01:00
|
|
|
self.identified = False
|
|
|
|
irc.queueMsg(ircmsgs.nick(nick))
|
2006-01-22 16:14:44 +01:00
|
|
|
elif 'is not registered' in s:
|
|
|
|
self.log.info('Received "Nick not registered" from NickServ %s.',
|
|
|
|
on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'currently' in s and 'isn\'t' in s or 'is not' in s:
|
|
|
|
# The nick isn't online, let's change our nick to it.
|
2006-07-14 17:36:11 +02:00
|
|
|
self.sentGhost = None
|
2005-02-02 13:20:13 +01:00
|
|
|
irc.queueMsg(ircmsgs.nick(nick))
|
|
|
|
elif ('owned by someone else' in s) or \
|
|
|
|
('nickname is registered and protected' in s) or \
|
|
|
|
('nick belongs to another user' in s):
|
|
|
|
# freenode, arstechnica, chatjunkies
|
|
|
|
# oftc, zirc.org
|
|
|
|
# sorcery
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Received "Registered nick" from NickServ %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif '/msg' in s and 'id' in s and 'password' in s:
|
|
|
|
# Usage info for identify command; ignore.
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.debug('Got usage info for identify command %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif ('please choose a different nick' in s): # oftc, part 3
|
|
|
|
# This is a catch-all for redundant messages from nickserv.
|
|
|
|
pass
|
|
|
|
elif ('now recognized' in s) or \
|
2005-08-07 08:36:48 +02:00
|
|
|
('already identified' in s) or \
|
2011-01-18 19:51:34 +01:00
|
|
|
('already logged in' in s) or \
|
|
|
|
('successfully identified' in s) or \
|
2006-04-03 19:08:57 +02:00
|
|
|
('password accepted' in s) or \
|
2005-02-02 13:20:13 +01:00
|
|
|
('now identified' in s):
|
|
|
|
# freenode, oftc, arstechnica, zirc, ....
|
|
|
|
# sorcery
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Received "Password accepted" from NickServ %s.', on)
|
2005-02-02 13:20:13 +01:00
|
|
|
self.identified = True
|
|
|
|
for channel in irc.state.channels.keys():
|
|
|
|
self.checkPrivileges(irc, channel)
|
|
|
|
for channel in self.channels:
|
|
|
|
irc.queueMsg(networkGroup.channels.join(channel))
|
2011-12-06 06:55:29 +01:00
|
|
|
waitingJoins = self.waitingJoins.pop(irc.network, None)
|
|
|
|
if waitingJoins:
|
|
|
|
for m in waitingJoins:
|
|
|
|
irc.sendMsg(m)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif 'not yet authenticated' in s:
|
|
|
|
# zirc.org has this, it requires an auth code.
|
|
|
|
email = s.split()[-1]
|
|
|
|
self.log.warning('Received "Nick not yet authenticated" from '
|
2006-01-16 15:33:53 +01:00
|
|
|
'NickServ %s. Check email at %s and send the '
|
|
|
|
'auth command to NickServ.', on, email)
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.debug('Unexpected notice from NickServ %s: %q.', on, s)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def checkPrivileges(self, irc, channel):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
chanserv = self.registryValue('ChanServ')
|
2006-01-16 15:33:53 +01:00
|
|
|
on = 'on %s' % irc.network
|
2005-02-02 13:20:13 +01:00
|
|
|
if chanserv and self.registryValue('ChanServ.op', channel):
|
|
|
|
if irc.nick not in irc.state.channels[channel].ops:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Requesting op from %s in %s %s.',
|
|
|
|
chanserv, channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
irc.sendMsg(ircmsgs.privmsg(chanserv, 'op %s' % channel))
|
|
|
|
if chanserv and self.registryValue('ChanServ.halfop', channel):
|
|
|
|
if irc.nick not in irc.state.channels[channel].halfops:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Requesting halfop from %s in %s %s.',
|
|
|
|
chanserv, channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
irc.sendMsg(ircmsgs.privmsg(chanserv, 'halfop %s' % channel))
|
|
|
|
if chanserv and self.registryValue('ChanServ.voice', channel):
|
|
|
|
if irc.nick not in irc.state.channels[channel].voices:
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Requesting voice from %s in %s %s.',
|
|
|
|
chanserv, channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
irc.sendMsg(ircmsgs.privmsg(chanserv, 'voice %s' % channel))
|
|
|
|
|
|
|
|
def doMode(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
chanserv = self.registryValue('ChanServ')
|
2006-01-16 15:33:53 +01:00
|
|
|
on = 'on %s' % irc.network
|
2005-02-02 13:20:13 +01:00
|
|
|
if ircutils.strEqual(msg.nick, chanserv):
|
|
|
|
channel = msg.args[0]
|
|
|
|
if len(msg.args) == 3:
|
|
|
|
if ircutils.strEqual(msg.args[2], irc.nick):
|
|
|
|
mode = msg.args[1]
|
|
|
|
info = self.log.info
|
|
|
|
if mode == '+o':
|
2006-01-16 15:33:53 +01:00
|
|
|
info('Received op from ChanServ in %s %s.',
|
|
|
|
channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif mode == '+h':
|
2006-01-16 15:33:53 +01:00
|
|
|
info('Received halfop from ChanServ in %s %s.',
|
|
|
|
channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
elif mode == '+v':
|
2006-01-16 15:33:53 +01:00
|
|
|
info('Received voice from ChanServ in %s %s.',
|
|
|
|
channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def do366(self, irc, msg): # End of /NAMES list; finished joining a channel
|
|
|
|
if self.identified:
|
|
|
|
channel = msg.args[1] # nick is msg.args[0].
|
|
|
|
self.checkPrivileges(irc, channel)
|
|
|
|
|
2010-06-19 22:59:13 +02:00
|
|
|
def callCommand(self, command, irc, msg, *args, **kwargs):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
irc.error('Services plugin is disabled on this network',
|
|
|
|
Raise=True)
|
|
|
|
self.__parent.callCommand(command, irc, msg, *args, **kwargs)
|
|
|
|
|
2005-02-02 13:20:13 +01:00
|
|
|
def _chanservCommand(self, irc, channel, command, log=False):
|
|
|
|
chanserv = self.registryValue('ChanServ')
|
|
|
|
if chanserv:
|
|
|
|
msg = ircmsgs.privmsg(chanserv,
|
|
|
|
' '.join([command, channel, irc.nick]))
|
|
|
|
irc.sendMsg(msg)
|
|
|
|
else:
|
|
|
|
if log:
|
|
|
|
self.log.warning('Unable to send %s command to ChanServ, '
|
|
|
|
'you must set '
|
|
|
|
'supybot.plugins.Services.ChanServ before '
|
|
|
|
'I can send commands to ChanServ.', command)
|
|
|
|
else:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('You must set supybot.plugins.Services.ChanServ '
|
|
|
|
'before I\'m able to send the %s command.') % command,
|
2005-06-01 03:13:25 +02:00
|
|
|
Raise=True)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def op(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Attempts to get opped by ChanServ in <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
if irc.nick in irc.state.channels[channel].ops:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(format(_('I\'m already opped in %s.'), channel))
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
|
|
|
self._chanservCommand(irc, channel, 'op')
|
|
|
|
op = wrap(op, [('checkChannelCapability', 'op'), 'inChannel'])
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def voice(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Attempts to get voiced by ChanServ in <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
if irc.nick in irc.state.channels[channel].voices:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(format(_('I\'m already voiced in %s.'), channel))
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
|
|
|
self._chanservCommand(irc, channel, 'voice')
|
|
|
|
voice = wrap(voice, [('checkChannelCapability', 'op'), 'inChannel'])
|
|
|
|
|
|
|
|
def do474(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
channel = msg.args[1]
|
2006-01-16 15:33:53 +01:00
|
|
|
on = 'on %s' % irc.network
|
|
|
|
self.log.info('Banned from %s, attempting ChanServ unban %s.',
|
|
|
|
channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
self._chanservCommand(irc, channel, 'unban', log=True)
|
|
|
|
# Success log in doChanservNotice.
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def unban(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Attempts to get unbanned by ChanServ in <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself, but chances
|
|
|
|
are, if you need this command, you're not sending it in the channel
|
|
|
|
itself.
|
|
|
|
"""
|
|
|
|
self._chanservCommand(irc, channel, 'unban')
|
|
|
|
irc.replySuccess()
|
|
|
|
unban = wrap(unban, [('checkChannelCapability', 'op')])
|
|
|
|
|
|
|
|
def do473(self, irc, msg):
|
2010-06-20 04:38:27 +02:00
|
|
|
if self.disabled(irc):
|
2010-06-19 22:59:13 +02:00
|
|
|
return
|
2005-02-02 13:20:13 +01:00
|
|
|
channel = msg.args[1]
|
2006-01-21 16:40:57 +01:00
|
|
|
on = 'on %s' % irc.network
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('%s is +i, attempting ChanServ invite %s.', channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
self._chanservCommand(irc, channel, 'invite', log=True)
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def invite(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Attempts to get invited by ChanServ to <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself, but chances
|
|
|
|
are, if you need this command, you're not sending it in the channel
|
|
|
|
itself.
|
|
|
|
"""
|
|
|
|
self._chanservCommand(irc, channel, 'invite')
|
|
|
|
irc.replySuccess()
|
|
|
|
invite = wrap(invite, [('checkChannelCapability', 'op'), 'inChannel'])
|
|
|
|
|
|
|
|
def doInvite(self, irc, msg):
|
|
|
|
if ircutils.strEqual(msg.nick, self.registryValue('ChanServ')):
|
|
|
|
channel = msg.args[1]
|
2006-01-21 16:40:57 +01:00
|
|
|
on = 'on %s' % irc.network
|
2005-02-02 13:20:13 +01:00
|
|
|
networkGroup = conf.supybot.networks.get(irc.network)
|
2006-01-16 15:33:53 +01:00
|
|
|
self.log.info('Joining %s, invited by ChanServ %s.', channel, on)
|
2005-02-02 13:20:13 +01:00
|
|
|
irc.queueMsg(networkGroup.channels.join(channel))
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def identify(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Identifies with NickServ using the current nick.
|
|
|
|
"""
|
|
|
|
if self.registryValue('NickServ'):
|
|
|
|
if irc.nick in self.registryValue('nicks'):
|
|
|
|
self._doIdentify(irc, irc.nick)
|
|
|
|
irc.replySuccess()
|
|
|
|
else:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('I don\'t have a configured password for '
|
|
|
|
'my current nick.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('You must set supybot.plugins.Services.NickServ before '
|
|
|
|
'I\'m able to do identify.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
identify = wrap(identify, [('checkCapability', 'admin')])
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def ghost(self, irc, msg, args, nick):
|
|
|
|
"""[<nick>]
|
|
|
|
|
|
|
|
Ghosts the bot's given nick and takes it. If no nick is given,
|
|
|
|
ghosts the bot's configured nick and takes it.
|
|
|
|
"""
|
|
|
|
if self.registryValue('NickServ'):
|
|
|
|
if not nick:
|
2011-10-27 12:31:37 +02:00
|
|
|
nick = self._getNick(irc.network)
|
2005-02-02 13:20:13 +01:00
|
|
|
if ircutils.strEqual(nick, irc.nick):
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('I cowardly refuse to ghost myself.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
else:
|
|
|
|
self._doGhost(irc, nick=nick)
|
|
|
|
irc.replySuccess()
|
|
|
|
else:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('You must set supybot.plugins.Services.NickServ before '
|
|
|
|
'I\'m able to ghost a nick.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
ghost = wrap(ghost, [('checkCapability', 'admin'), additional('nick')])
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def password(self, irc, msg, args, nick, password):
|
|
|
|
"""<nick> [<password>]
|
|
|
|
|
|
|
|
Sets the NickServ password for <nick> to <password>. If <password> is
|
|
|
|
not given, removes <nick> from the configured nicks.
|
|
|
|
"""
|
|
|
|
if not password:
|
|
|
|
try:
|
|
|
|
self.registryValue('nicks').remove(nick)
|
|
|
|
irc.replySuccess()
|
|
|
|
except KeyError:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.error(_('That nick was not configured with a password.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.registryValue('nicks').add(nick)
|
|
|
|
config.registerNick(nick, password)
|
|
|
|
irc.replySuccess()
|
|
|
|
password = wrap(password, [('checkCapability', 'admin'),
|
|
|
|
'private', 'nick', 'text'])
|
|
|
|
|
2010-10-20 09:10:03 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 13:20:13 +01:00
|
|
|
def nicks(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns the nicks that this plugin is configured to identify and ghost
|
|
|
|
with.
|
|
|
|
"""
|
|
|
|
L = list(self.registryValue('nicks'))
|
|
|
|
if L:
|
|
|
|
utils.sortBy(ircutils.toLower, L)
|
|
|
|
irc.reply(format('%L', L))
|
|
|
|
else:
|
2010-10-20 09:10:03 +02:00
|
|
|
irc.reply(_('I\'m not currently configured for any nicks.'))
|
2005-02-02 13:20:13 +01:00
|
|
|
nicks = wrap(nicks, [('checkCapability', 'admin')])
|
2010-10-26 09:32:12 +02:00
|
|
|
Services = internationalizeDocstring(Services)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
Class = Services
|
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|