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.
|
|
|
|
###
|
|
|
|
|
2003-03-25 07:35:53 +01:00
|
|
|
"""
|
2003-08-30 06:28:09 +02:00
|
|
|
Services: Handles management of nicks with NickServ, and ops with ChanServ.
|
2003-03-25 07:35:53 +01:00
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
import re
|
2003-08-20 18:26:23 +02:00
|
|
|
import time
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.registry as registry
|
|
|
|
import supybot.schedule as schedule
|
|
|
|
import supybot.callbacks as callbacks
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2004-01-28 20:05:16 +01:00
|
|
|
def configure(advanced):
|
2004-07-25 20:24:51 +02:00
|
|
|
from supybot.questions import output, expect, anything, something, yn
|
2004-01-28 20:05:16 +01:00
|
|
|
conf.registerPlugin('Services', True)
|
2003-11-22 04:50:45 +01:00
|
|
|
nick = something('What is your registered nick?')
|
|
|
|
password = something('What is your password for that nick?')
|
2004-01-31 23:24:43 +01:00
|
|
|
chanserv = something('What is your ChanServ named?', default='ChanServ')
|
|
|
|
nickserv = something('What is your NickServ named?', default='NickServ')
|
2004-01-28 20:05:16 +01:00
|
|
|
conf.supybot.plugins.Services.nick.setValue(nick)
|
|
|
|
conf.supybot.plugins.Services.NickServ.setValue(nickserv)
|
2004-04-26 21:42:25 +02:00
|
|
|
conf.supybot.plugins.Services.NickServ.password.setValue(password)
|
2004-01-28 20:05:16 +01:00
|
|
|
conf.supybot.plugins.Services.ChanServ.setValue(chanserv)
|
|
|
|
|
|
|
|
class ValidNickOrEmptyString(registry.String):
|
|
|
|
def setValue(self, v):
|
|
|
|
if v and not ircutils.isNick(v):
|
|
|
|
raise registry.InvalidRegistryValue, \
|
|
|
|
'Value must be a valid nick or the empty string.'
|
2004-02-09 17:32:00 +01:00
|
|
|
registry.String.setValue(self, v)
|
2004-06-04 08:14:29 +02:00
|
|
|
|
2004-01-28 20:05:16 +01:00
|
|
|
conf.registerPlugin('Services')
|
|
|
|
# Not really ChannelValues: but we can have values for each network. We
|
|
|
|
# should probably document that this is possible.
|
2004-04-13 02:58:56 +02:00
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Services, 'nick',
|
2004-01-28 20:05:16 +01:00
|
|
|
ValidNickOrEmptyString('', """Determines what nick the bot will use with
|
|
|
|
services."""))
|
2004-04-13 02:58:56 +02:00
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Services, 'NickServ',
|
2004-01-28 20:05:16 +01:00
|
|
|
ValidNickOrEmptyString('', """Determines what nick the 'NickServ' service
|
|
|
|
has."""))
|
2004-04-13 02:58:56 +02:00
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Services.NickServ, 'password',
|
|
|
|
registry.String('', """Determines what password the bot will use with
|
|
|
|
NickServ.""", private=True))
|
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Services, 'ChanServ',
|
2004-01-28 20:05:16 +01:00
|
|
|
ValidNickOrEmptyString('', """Determines what nick the 'ChanServ' service
|
|
|
|
has."""))
|
2004-04-13 02:58:56 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Services.ChanServ, 'password',
|
|
|
|
registry.String('', """Determines what password the bot will use with
|
|
|
|
ChanServ.""", private=True))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Services.ChanServ, 'op',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will request to get
|
|
|
|
opped by the ChanServ when it joins the channel."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Services.ChanServ, 'halfop',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will request to get
|
|
|
|
half-opped by the ChanServ when it joins the channel."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Services.ChanServ, 'voice',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will request to get
|
|
|
|
voiced by the ChanServ when it joins the channel."""))
|
2004-01-28 20:05:16 +01:00
|
|
|
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-08-30 06:28:09 +02:00
|
|
|
class Services(privmsgs.CapabilityCheckingPrivmsg):
|
2003-08-20 18:26:23 +02:00
|
|
|
capability = 'admin'
|
2003-03-12 07:26:59 +01:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
2003-12-09 05:57:34 +01:00
|
|
|
self.reset()
|
|
|
|
|
|
|
|
def reset(self):
|
2004-02-10 04:48:56 +01:00
|
|
|
self.channels = []
|
2003-12-12 13:29:22 +01:00
|
|
|
self.sentGhost = False
|
|
|
|
self.identified = False
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-12-07 00:49:22 +01:00
|
|
|
def _doIdentify(self, irc):
|
2004-04-13 02:58:56 +02:00
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
password = self.registryValue('NickServ.password')
|
2004-08-17 10:29:08 +02:00
|
|
|
if not nickserv or not password:
|
|
|
|
s = 'Tried to identify without a NickServ or password set.'
|
|
|
|
self.log.warning(s)
|
|
|
|
return
|
2004-04-13 02:58:56 +02:00
|
|
|
assert irc.nick == self.registryValue('nick'), \
|
2004-01-30 07:00:30 +01:00
|
|
|
'Identifying with not normal nick.'
|
2003-12-07 00:49:22 +01:00
|
|
|
self.log.info('Sending identify (current nick: %s)' % irc.nick)
|
2004-01-28 20:05:16 +01:00
|
|
|
identify = 'IDENTIFY %s' % password
|
2003-12-07 00:49:22 +01:00
|
|
|
# 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.
|
2004-01-28 20:05:16 +01:00
|
|
|
irc.sendMsg(ircmsgs.privmsg(nickserv, identify))
|
2003-12-07 00:49:22 +01:00
|
|
|
|
|
|
|
def _doGhost(self, irc):
|
2004-04-13 02:58:56 +02:00
|
|
|
nickserv = self.registryValue('NickServ')
|
2004-08-17 10:29:08 +02:00
|
|
|
password = self.registryValue('NickServ.password')
|
|
|
|
if not nickserv or not password:
|
|
|
|
s = 'Tried to ghost without a NickServ or password set.'
|
|
|
|
self.log.warning(s)
|
2004-01-28 20:05:16 +01:00
|
|
|
return
|
2003-12-07 00:49:22 +01:00
|
|
|
if self.sentGhost:
|
|
|
|
self.log.warning('Refusing to send GHOST twice.')
|
|
|
|
else:
|
2004-04-13 02:58:56 +02:00
|
|
|
nick = self.registryValue('nick')
|
|
|
|
password = self.registryValue('NickServ.password')
|
2004-08-17 10:29:08 +02:00
|
|
|
if not password:
|
|
|
|
self.log.warning('Not ghosting: no password set.')
|
|
|
|
return
|
|
|
|
self.log.info('Sending ghost (current nick: %s; ghosting: %s)',
|
|
|
|
irc.nick, nick)
|
2004-01-28 20:05:16 +01:00
|
|
|
ghost = 'GHOST %s %s' % (nick, password)
|
|
|
|
# Ditto about the sendMsg (see _doIdentify).
|
|
|
|
irc.sendMsg(ircmsgs.privmsg(nickserv, ghost))
|
2003-12-07 00:49:22 +01:00
|
|
|
self.sentGhost = True
|
|
|
|
|
2004-04-16 09:40:18 +02:00
|
|
|
def __call__(self, irc, msg):
|
|
|
|
callbacks.Privmsg.__call__(self, irc, msg)
|
|
|
|
nick = self.registryValue('nick')
|
2004-08-17 10:29:08 +02:00
|
|
|
nickserv = self.registryValue('NickServ')
|
|
|
|
password = self.registryValue('NickServ.password')
|
|
|
|
if nick and irc.nick != nick and nickserv and password:
|
2004-04-16 09:40:18 +02:00
|
|
|
if irc.afterConnect and not self.sentGhost:
|
2004-08-17 10:29:08 +02:00
|
|
|
if nick in irc.state.nicksToHostmasks:
|
|
|
|
self._doGhost(irc)
|
|
|
|
else:
|
|
|
|
irc.sendMsg(ircmsgs.nick(nick)) # 433 is handled elsewhere.
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-12-07 00:49:22 +01:00
|
|
|
def do001(self, irc, msg):
|
|
|
|
# New connection, make sure sentGhost is False.
|
|
|
|
self.sentGhost = False
|
|
|
|
|
2003-09-07 11:49:43 +02:00
|
|
|
def do376(self, irc, msg):
|
2004-04-13 02:58:56 +02:00
|
|
|
nickserv = self.registryValue('NickServ')
|
2004-08-17 10:29:08 +02:00
|
|
|
password = self.registryValue('NickServ.password')
|
|
|
|
if not nickserv or not password:
|
|
|
|
s = 'NickServ or password is unset; cannot identify.'
|
2004-01-28 20:05:16 +01:00
|
|
|
self.log.warning(s)
|
2004-08-17 10:29:08 +02:00
|
|
|
return
|
|
|
|
nick = self.registryValue('nick')
|
|
|
|
if not nick:
|
|
|
|
self.log.warning('Cannot identify without a nick being set. '
|
|
|
|
'Set supybot.plugins.Services.nick.')
|
|
|
|
return
|
|
|
|
if irc.nick == nick:
|
|
|
|
self._doIdentify(irc)
|
|
|
|
else:
|
|
|
|
self._doGhost(irc)
|
2003-12-07 00:49:22 +01:00
|
|
|
do422 = do377 = do376
|
|
|
|
|
|
|
|
def do433(self, irc, msg):
|
2004-01-28 20:05:16 +01:00
|
|
|
if irc.afterConnect:
|
2004-08-17 10:29:08 +02:00
|
|
|
password = self.registryValue('NickServ.password')
|
|
|
|
if not password:
|
|
|
|
return
|
2004-04-16 09:40:18 +02:00
|
|
|
self._doGhost(irc)
|
2003-09-07 11:49:43 +02:00
|
|
|
|
2004-04-16 09:59:47 +02:00
|
|
|
## def do474(self, irc, msg):
|
|
|
|
## # Can't join this channel, it's banned us.
|
|
|
|
## channel = msg.args[1]
|
|
|
|
## chanserv = self.registryValue('ChanServ')
|
|
|
|
## if chanserv:
|
|
|
|
## # This artificially conflates OP and UNBAN, but we'll assume until
|
|
|
|
## # we get a complaint from someone.
|
|
|
|
## if self.registryValue('ChanServ.op', channel):
|
|
|
|
## if self.identified:
|
|
|
|
## irc.sendMsg(ircmsgs.privmsg(chanserv,'UNBAN %s' % channel))
|
|
|
|
## irc.sendMsg(ircmsgs.join(channel))
|
|
|
|
## else:
|
|
|
|
## self._doIdentify(irc)
|
|
|
|
## pass
|
|
|
|
|
2004-02-10 04:48:56 +01:00
|
|
|
def do515(self, irc, msg):
|
|
|
|
# Can't join this channel, it's +r (we must be identified).
|
|
|
|
self.channels.append(msg.args[1])
|
|
|
|
|
2003-12-09 05:57:34 +01:00
|
|
|
def doNick(self, irc, msg):
|
2004-04-13 02:58:56 +02:00
|
|
|
nick = self.registryValue('nick')
|
2004-08-17 10:29:08 +02:00
|
|
|
if msg.args[0] == irc.nick:
|
2004-01-28 20:05:16 +01:00
|
|
|
self._doIdentify(irc)
|
2004-08-17 10:29:08 +02:00
|
|
|
elif ircutils.strEqual(msg.nick, nick):
|
|
|
|
irc.sendMsg(ircmsgs.nick(nick))
|
|
|
|
|
|
|
|
def doQuit(self, irc, msg):
|
|
|
|
nick = self.registryValue('nick')
|
|
|
|
if ircutils.strEqual(msg.nick, nick):
|
|
|
|
irc.sendMsg(ircmsgs.nick(nick))
|
2003-12-09 05:57:34 +01:00
|
|
|
|
2004-04-16 09:40:18 +02:00
|
|
|
def _ghosted(self, s):
|
|
|
|
nick = self.registryValue('nick')
|
|
|
|
lowered = s.lower()
|
|
|
|
return bool('killed' in lowered and (nick in s or 'ghost' in lowered))
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def doNotice(self, irc, msg):
|
2004-01-28 20:05:16 +01:00
|
|
|
if irc.afterConnect:
|
2004-04-13 02:58:56 +02:00
|
|
|
nickserv = self.registryValue('NickServ')
|
2004-01-28 20:05:16 +01:00
|
|
|
if not nickserv or msg.nick != nickserv:
|
|
|
|
return
|
2004-04-13 02:58:56 +02:00
|
|
|
nick = self.registryValue('nick')
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.debug('Notice received from NickServ: %r.', msg)
|
2004-02-10 05:01:05 +01:00
|
|
|
s = msg.args[1].lower()
|
2004-08-17 10:29:08 +02:00
|
|
|
if 'incorrect' in s or 'denied' in s:
|
|
|
|
log = 'Received "Password Incorrect" from NickServ. ' \
|
|
|
|
'Resetting password to empty.'
|
|
|
|
self.log.warning(log)
|
|
|
|
self.sentGhost = False
|
|
|
|
self.setRegistryValue('NickServ.password', '')
|
|
|
|
elif self._ghosted(s):
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Received "GHOST succeeded" from NickServ.')
|
2003-12-07 00:49:22 +01:00
|
|
|
self.sentGhost = False
|
2004-08-17 10:29:08 +02:00
|
|
|
self.identified = False
|
2004-01-28 20:05:16 +01:00
|
|
|
irc.queueMsg(ircmsgs.nick(nick))
|
2004-04-16 09:40:18 +02:00
|
|
|
elif ('registered' in s or 'protected' in s) and \
|
2003-12-07 00:49:22 +01:00
|
|
|
('not' not in s and 'isn\'t' not in s):
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Received "Registered Nick" from NickServ.')
|
2004-01-28 20:05:16 +01:00
|
|
|
if nick == irc.nick:
|
2003-12-07 00:49:22 +01:00
|
|
|
self._doIdentify(irc)
|
2004-04-16 09:40:18 +02:00
|
|
|
elif '/msg' in s and 'identify' in s and 'password' in s:
|
|
|
|
# Usage info for identify command; ignore.
|
|
|
|
self.log.debug('Got usage info for identify command.')
|
2003-12-12 13:29:22 +01:00
|
|
|
elif 'now recognized' in s:
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Received "Password accepted" from NickServ.')
|
2003-12-12 13:29:22 +01:00
|
|
|
self.identified = True
|
2004-04-13 02:58:56 +02:00
|
|
|
for channel in irc.state.channels.keys():
|
|
|
|
self.checkPrivileges(irc, channel)
|
2004-02-10 04:48:56 +01:00
|
|
|
if self.channels:
|
|
|
|
irc.queueMsg(ircmsgs.joins(self.channels))
|
2004-02-11 07:07:50 +01:00
|
|
|
else:
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.debug('Unexpected notice from NickServ: %r.', s)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2004-04-13 02:58:56 +02:00
|
|
|
def checkPrivileges(self, irc, channel):
|
|
|
|
chanserv = self.registryValue('ChanServ')
|
|
|
|
if chanserv and self.registryValue('ChanServ.op', channel):
|
|
|
|
if irc.nick not in irc.state.channels[channel].ops:
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Requesting op from %s in %s.', chanserv, channel)
|
2004-04-13 02:58:56 +02: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:
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Requesting halfop from %s in %s.',
|
2004-04-14 17:47:10 +02:00
|
|
|
chanserv, channel)
|
2004-04-13 02:58:56 +02: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:
|
2004-07-27 07:17:31 +02:00
|
|
|
self.log.info('Requesting voice from %s in %s.',
|
2004-04-14 17:47:10 +02:00
|
|
|
chanserv, channel)
|
2004-04-13 02:58:56 +02:00
|
|
|
irc.sendMsg(ircmsgs.privmsg(chanserv, 'voice %s' % channel))
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-07-27 07:17:31 +02:00
|
|
|
def doMode(self, irc, msg):
|
|
|
|
chanserv = self.registryValue('ChanServ')
|
|
|
|
if msg.nick == chanserv:
|
|
|
|
channel = msg.args[0]
|
|
|
|
if len(msg.args) == 3:
|
|
|
|
if msg.args[2] == irc.nick:
|
|
|
|
mode = msg.args[1]
|
|
|
|
info = self.log.info
|
|
|
|
if mode == '+o':
|
|
|
|
info('Received op from ChanServ in %s.', channel)
|
|
|
|
elif mode == '+h':
|
|
|
|
info('Received halfop from ChanServ in %s.', channel)
|
|
|
|
elif mode == '+v':
|
|
|
|
info('Received voice from ChanServ in %s.', channel)
|
|
|
|
|
2004-04-13 02:58:56 +02: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)
|
|
|
|
|
2003-08-20 18:26:23 +02:00
|
|
|
def getops(self, irc, msg, args):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Attempts to get ops from ChanServ in <channel>. If no channel is
|
|
|
|
given, the current channel is assumed.
|
|
|
|
"""
|
|
|
|
channel = privmsgs.getChannel(msg, args)
|
2004-01-04 10:57:33 +01:00
|
|
|
try:
|
|
|
|
if irc.nick in irc.state.channels[channel].ops:
|
2004-02-18 05:36:50 +01:00
|
|
|
irc.error('I\'ve already got ops in %s' % channel)
|
2004-01-04 10:57:33 +01:00
|
|
|
else:
|
2004-04-13 02:58:56 +02:00
|
|
|
chanserv = self.registryValue('ChanServ')
|
2004-01-28 20:05:16 +01:00
|
|
|
if chanserv:
|
|
|
|
irc.sendMsg(ircmsgs.privmsg(chanserv, 'op %s' % channel))
|
|
|
|
else:
|
|
|
|
irc.error('You must set supybot.plugins.Services.ChanServ '
|
|
|
|
'before I\'m able to do get ops.')
|
2004-01-04 10:57:33 +01:00
|
|
|
except KeyError:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('I\'m not in %s.' % channel)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-12-07 00:49:22 +01:00
|
|
|
def identify(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Identifies with NickServ.
|
|
|
|
"""
|
2004-04-13 02:58:56 +02:00
|
|
|
if self.registryValue('NickServ'):
|
2004-02-10 04:29:02 +01:00
|
|
|
nick = self.registryValue('nick')
|
|
|
|
if nick != irc.nick:
|
|
|
|
irc.error('I can\'t identify without having my normal nick!')
|
|
|
|
elif not nick:
|
|
|
|
irc.error('You must set supybot.plugins.Services.nick before '
|
|
|
|
'I\'m able to identify.')
|
|
|
|
else:
|
|
|
|
self._doIdentify(irc)
|
|
|
|
irc.replySuccess()
|
2003-12-07 00:49:22 +01:00
|
|
|
else:
|
2004-01-28 20:05:16 +01:00
|
|
|
irc.error('You must set supybot.plugins.Services.NickServ before '
|
|
|
|
'I\'m able to do identify.')
|
2003-12-07 00:49:22 +01:00
|
|
|
|
2004-02-10 04:29:02 +01:00
|
|
|
def ghost(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Ghosts the bot's configured nick and retakes it.
|
|
|
|
"""
|
2004-04-13 02:58:56 +02:00
|
|
|
if self.registryValue('NickServ'):
|
2004-02-10 04:29:02 +01:00
|
|
|
nick = self.registryValue('nick')
|
|
|
|
if nick == irc.nick:
|
|
|
|
irc.error('I cowardly refuse to ghost myself.')
|
|
|
|
elif not nick:
|
|
|
|
irc.error('You must set supybot.plugins.Services.nick before '
|
|
|
|
'I\'m able to ghost a nick.')
|
|
|
|
else:
|
|
|
|
self._doGhost(irc)
|
|
|
|
irc.replySuccess()
|
|
|
|
else:
|
|
|
|
irc.error('You must set supybot.plugins.Services.NickServ before '
|
|
|
|
'I\'m able to ghost a nick.')
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
|
2003-08-30 06:28:09 +02:00
|
|
|
Class = Services
|
2003-03-28 04:10:22 +01:00
|
|
|
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|