2003-03-27 08:57:27 +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-09-03 11:50:04 +02:00
|
|
|
Provides commands useful to users in general. This plugin is loaded by default.
|
2003-03-27 08:57:27 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import string
|
|
|
|
|
|
|
|
import conf
|
|
|
|
import ircdb
|
|
|
|
import ircutils
|
|
|
|
import privmsgs
|
|
|
|
import callbacks
|
|
|
|
|
|
|
|
class UserCommands(callbacks.Privmsg):
|
|
|
|
def _checkNotChannel(self, irc, msg, password=' '):
|
|
|
|
if password and ircutils.isChannel(msg.args[0]):
|
|
|
|
irc.error(msg, conf.replyRequiresPrivacy)
|
2003-09-03 11:22:59 +02:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
2003-03-27 08:57:27 +01:00
|
|
|
|
|
|
|
def register(self, irc, msg, args):
|
|
|
|
"""<name> <password>
|
|
|
|
|
|
|
|
Registers <name> with the given password <password> and the current
|
2003-09-25 16:21:46 +02:00
|
|
|
hostmask of the person registering. This command (and all other
|
|
|
|
commands that include a password) must be sent to the bot privately,
|
|
|
|
not in a channel.
|
2003-03-27 08:57:27 +01:00
|
|
|
"""
|
2003-09-13 15:44:13 +02:00
|
|
|
(name, password) = privmsgs.getArgs(args, needed=2)
|
2003-09-03 11:22:59 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
2003-09-12 22:06:58 +02:00
|
|
|
try:
|
|
|
|
ircdb.users.getUserId(name)
|
2003-09-18 09:52:34 +02:00
|
|
|
irc.error(msg, 'That name is already assigned to someone.')
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-09-12 22:06:58 +02:00
|
|
|
except KeyError:
|
|
|
|
pass
|
2003-03-27 08:57:27 +01:00
|
|
|
if ircutils.isUserHostmask(name):
|
|
|
|
irc.error(msg, 'Hostmasks aren\'t valid usernames.')
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-10-04 00:21:48 +02:00
|
|
|
try:
|
|
|
|
u = ircdb.users.getUser(msg.prefix)
|
|
|
|
irc.error(msg,'Your hostmask is already registered to %s' % u.name)
|
|
|
|
return
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2003-09-12 22:06:58 +02:00
|
|
|
(id, user) = ircdb.users.newUser()
|
|
|
|
user.name = name
|
2003-03-27 08:57:27 +01:00
|
|
|
user.setPassword(password)
|
|
|
|
user.addHostmask(msg.prefix)
|
2003-09-12 22:06:58 +02:00
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
|
2003-09-13 15:44:13 +02:00
|
|
|
def unregister(self, irc, msg, args):
|
|
|
|
"""<name> <password>
|
|
|
|
|
|
|
|
Unregisters <name> from the user database.
|
|
|
|
"""
|
|
|
|
(name, password) = privmsgs.getArgs(args, needed=2)
|
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'That username isn\'t registered.')
|
|
|
|
return
|
|
|
|
if user.checkPassword(password):
|
|
|
|
ircdb.users.delUser(id)
|
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
|
|
|
|
2003-09-18 09:52:34 +02:00
|
|
|
def changeusername(self, irc, msg, args):
|
|
|
|
"""<name> <new name> [<password>]
|
|
|
|
|
|
|
|
Changes your current user database name to the new name given.
|
|
|
|
<password> is only necessary if the user isn't recognized by hostmask.
|
2003-09-25 16:21:46 +02:00
|
|
|
If you include the <password> parameter, this message must be sent
|
|
|
|
to the bot privately (not on a channel).
|
2003-09-18 09:52:34 +02:00
|
|
|
"""
|
|
|
|
(name, newname, password) = privmsgs.getArgs(args, needed=2,optional=1)
|
2003-09-25 16:21:46 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
2003-09-18 09:52:34 +02:00
|
|
|
try:
|
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'That username isn\'t registered.')
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
id = ircdb.users.getUserId(newname)
|
|
|
|
irc.error(msg, '%r is already registered.' % newname)
|
|
|
|
return
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
if user.checkHostmask(msg.prefix) or user.checkPassword(password):
|
|
|
|
user.name = newname
|
|
|
|
ircdb.users.setUser(id, user)
|
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
|
2003-03-27 08:57:27 +01:00
|
|
|
def addhostmask(self, irc, msg, args):
|
|
|
|
"""<name> <hostmask> [<password>]
|
|
|
|
|
|
|
|
Adds the hostmask <hostmask> to the user specified by <name>. The
|
2003-09-18 09:52:34 +02:00
|
|
|
<password> may only be required if the user is not recognized by
|
2003-09-25 16:21:46 +02:00
|
|
|
hostmask. If you include the <password> parameter, this message must
|
|
|
|
be sent to the bot privately (not on a channel).
|
2003-03-27 08:57:27 +01:00
|
|
|
"""
|
|
|
|
(name, hostmask, password) = privmsgs.getArgs(args, 2, 1)
|
2003-09-03 11:22:59 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
2003-09-07 11:50:14 +02:00
|
|
|
if not ircutils.isUserHostmask(hostmask):
|
|
|
|
irc.error(msg, 'That\'s not a valid hostmask.')
|
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
s = hostmask.translate(string.ascii, '!@*?')
|
|
|
|
if len(s) < 10:
|
2003-09-07 11:50:14 +02:00
|
|
|
s = 'Hostmask must contain more than 10 non-wildcard characters.'
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.error(msg, s)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-14 04:45:09 +02:00
|
|
|
otherId = ircdb.users.getUserId(hostmask)
|
|
|
|
if otherId != id:
|
|
|
|
irc.error(msg, 'That hostmask is already registered.')
|
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
if user.checkHostmask(msg.prefix) or user.checkPassword(password):
|
|
|
|
user.addHostmask(hostmask)
|
2003-09-12 22:06:58 +02:00
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
|
2003-09-14 04:52:40 +02:00
|
|
|
def removehostmask(self, irc, msg, args):
|
2003-03-27 08:57:27 +01:00
|
|
|
"""<name> <hostmask> [<password>]
|
|
|
|
|
2003-09-14 04:52:40 +02:00
|
|
|
Removes the hostmask <hostmask> from the record of the user specified
|
2003-03-27 08:57:27 +01:00
|
|
|
by <name>. The <password> may only be required if the user is not
|
2003-09-25 16:21:46 +02:00
|
|
|
recognized by his hostmask. If you include the <password> parameter,
|
|
|
|
this message must be sent to the bot privately (not on a channel).
|
2003-03-27 08:57:27 +01:00
|
|
|
"""
|
|
|
|
(name, hostmask, password) = privmsgs.getArgs(args, 2, 1)
|
2003-09-03 11:22:59 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
if user.checkHostmask(msg.prefix) or user.checkPassword(password):
|
2003-09-14 04:52:40 +02:00
|
|
|
try:
|
|
|
|
user.removeHostmask(hostmask)
|
|
|
|
except ValueError:
|
|
|
|
irc.error(msg, 'There was no such hostmask.')
|
|
|
|
return
|
2003-09-12 22:06:58 +02:00
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
|
|
|
|
def setpassword(self, irc, msg, args):
|
|
|
|
"""<name> <old password> <new password>
|
|
|
|
|
|
|
|
Sets the new password for the user specified by <name> to
|
2003-09-25 16:21:46 +02:00
|
|
|
<new password>. Obviously this message must be sent to the bot
|
|
|
|
privately (not on a channel).
|
2003-03-27 08:57:27 +01:00
|
|
|
"""
|
|
|
|
(name, oldpassword, newpassword) = privmsgs.getArgs(args, 3)
|
2003-09-03 11:22:59 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, oldpassword+newpassword):
|
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
if user.checkPassword(oldpassword):
|
|
|
|
user.setPassword(newpassword)
|
2003-09-12 22:06:58 +02:00
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
|
|
|
|
|
|
|
def username(self, irc, msg, args):
|
|
|
|
"""<hostmask|nick>
|
|
|
|
|
|
|
|
Returns the username of the user specified by <hostmask> or <nick> if
|
|
|
|
the user is registered.
|
|
|
|
"""
|
|
|
|
hostmask = privmsgs.getArgs(args)
|
|
|
|
if not ircutils.isUserHostmask(hostmask):
|
|
|
|
try:
|
|
|
|
hostmask = irc.state.nickToHostmask(hostmask)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
2003-04-20 10:54:27 +02:00
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
user = ircdb.users.getUser(hostmask)
|
|
|
|
irc.reply(msg, user.name)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
|
|
|
|
|
|
|
def hostmasks(self, irc, msg, args):
|
|
|
|
"""[<name>]
|
|
|
|
|
|
|
|
Returns the hostmasks of the user specified by <name>; if <name> isn't
|
|
|
|
specified, returns the hostmasks of the user calling the command.
|
|
|
|
"""
|
|
|
|
if not args:
|
|
|
|
name = msg.prefix
|
|
|
|
else:
|
|
|
|
name = privmsgs.getArgs(args)
|
|
|
|
try:
|
|
|
|
user = ircdb.users.getUser(name)
|
|
|
|
irc.reply(msg, repr(user.hostmasks))
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
|
|
|
|
|
|
|
def capabilities(self, irc, msg, args):
|
|
|
|
"""[<name>]
|
|
|
|
|
|
|
|
Returns the capabilities of the user specified by <name>; if <name>
|
|
|
|
isn't specified, returns the hostmasks of the user calling the command.
|
|
|
|
"""
|
|
|
|
if not args:
|
2003-09-12 22:06:58 +02:00
|
|
|
name = msg.prefix
|
2003-03-27 08:57:27 +01:00
|
|
|
else:
|
|
|
|
name = privmsgs.getArgs(args)
|
|
|
|
try:
|
|
|
|
user = ircdb.users.getUser(name)
|
|
|
|
irc.reply(msg, '[%s]' % ', '.join(user.capabilities))
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
|
|
|
|
|
|
|
def identify(self, irc, msg, args):
|
|
|
|
"""<name> <password>
|
|
|
|
|
|
|
|
Identifies the user as <name>.
|
|
|
|
"""
|
|
|
|
(name, password) = privmsgs.getArgs(args, 2)
|
2003-09-03 11:22:59 +02:00
|
|
|
if not self._checkNotChannel(irc, msg):
|
|
|
|
return
|
2003-03-27 08:57:27 +01:00
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
id = ircdb.users.getUserId(name)
|
|
|
|
user = ircdb.users.getUser(id)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
|
|
|
return
|
2003-09-12 22:06:58 +02:00
|
|
|
if user.checkPassword(password):
|
|
|
|
user.setAuth(msg.prefix)
|
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
|
|
|
|
|
|
|
def unidentify(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Un-identifies the user.
|
|
|
|
"""
|
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
id = ircdb.users.getUserId(msg.prefix)
|
|
|
|
user = ircdb.users.getUser(id)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNoUser)
|
|
|
|
return
|
2003-09-12 22:06:58 +02:00
|
|
|
user.unsetAuth()
|
|
|
|
ircdb.users.setUser(id, user)
|
2003-03-27 08:57:27 +01:00
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
|
|
|
|
def whoami(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns the name of the user calling the command.
|
|
|
|
"""
|
|
|
|
try:
|
2003-09-12 22:06:58 +02:00
|
|
|
user = ircdb.users.getUser(msg.prefix)
|
|
|
|
irc.reply(msg, user.name)
|
2003-03-27 08:57:27 +01:00
|
|
|
except KeyError:
|
2003-09-12 19:08:09 +02:00
|
|
|
irc.error(msg, conf.replyNotRegistered)
|
2003-03-27 08:57:27 +01:00
|
|
|
|
2003-10-03 11:57:52 +02:00
|
|
|
def setsecure(self, irc, msg, args):
|
|
|
|
"""<password> [<True|False>]
|
|
|
|
|
|
|
|
Sets the secure flag on the user of the person sending the message.
|
|
|
|
Requires that the person's hostmask be in the list of hostmasks for
|
|
|
|
that user in addition to the password being correct. When the secure
|
|
|
|
flag is set, the user *must* identify before he can be recognized.
|
|
|
|
If a specific True/False value is not given, it inverts the current
|
|
|
|
value.
|
|
|
|
"""
|
2003-10-04 14:59:47 +02:00
|
|
|
(password, value) = privmsgs.getArgs(args, optional=1)
|
2003-10-03 11:57:52 +02:00
|
|
|
if not self._checkNotChannel(irc, msg, password):
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
id = ircdb.users.getUserId(msg.prefix)
|
|
|
|
user = ircdb.users.getUser(id)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, conf.replyNotRegistered)
|
|
|
|
if value == '':
|
|
|
|
value = not user.secure
|
|
|
|
elif value.lower() in ('true', 'false'):
|
|
|
|
value = eval(value.capitalize())
|
|
|
|
else:
|
|
|
|
irc.error(msg, '%s is not a valid boolean value.' % value)
|
|
|
|
return
|
|
|
|
if user.checkPassword(password) and \
|
|
|
|
user.checkHostmask(msg.prefix, useAuth=False):
|
|
|
|
user.secure = value
|
|
|
|
ircdb.users.setUser(id, user)
|
|
|
|
irc.reply(msg, 'Secure flag set to %s' % value)
|
|
|
|
else:
|
|
|
|
irc.error(msg, conf.replyIncorrectAuth)
|
|
|
|
|
2003-03-27 08:57:27 +01:00
|
|
|
|
|
|
|
Class = UserCommands
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
2003-04-20 23:56:41 +02:00
|
|
|
|