Limnoria/src/Admin.py

285 lines
10 KiB
Python
Raw Normal View History

2003-03-27 07:47:42 +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
These are commands useful for administrating the bot; they all require their
caller to have the 'admin' capability. This plugin is loaded by default.
2003-03-27 07:47:42 +01:00
"""
import fix
import time
import pprint
2003-03-27 07:47:42 +01:00
import string
import smtplib
import textwrap
from itertools import imap
2003-03-27 07:47:42 +01:00
import conf
import ircdb
import utils
2003-03-27 07:47:42 +01:00
import ircmsgs
import ircutils
2003-03-27 07:47:42 +01:00
import privmsgs
import callbacks
2003-10-21 08:03:57 +02:00
class Admin(privmsgs.CapabilityCheckingPrivmsg):
2003-03-27 07:47:42 +01:00
capability = 'admin'
def join(self, irc, msg, args):
2003-04-11 22:26:49 +02:00
"""<channel>[,<key>] [<channel>[,<key>] ...]
2003-03-27 07:47:42 +01:00
Tell the bot to join the whitespace-separated list of channels
you give it. If a channel requires a key, attach it behind the
channel name via a comma. I.e., if you need to join both #a and #b,
and #a requires a key of 'aRocks', then you'd call 'join #a,aRocks #b'
2003-03-27 07:47:42 +01:00
"""
keys = []
channels = []
2003-04-11 09:10:21 +02:00
for channel in args:
2003-04-11 22:26:49 +02:00
if ',' in channel:
(channel, key) = channel.split(',', 1)
channels.insert(0, channel)
keys.insert(0, key)
else:
channels.append(channel)
irc.queueMsg(ircmsgs.joins(channels, keys))
for channel in channels:
if channel not in irc.state.channels:
irc.queueMsg(ircmsgs.who(channel))
2003-03-27 07:47:42 +01:00
def nick(self, irc, msg, args):
"""<nick>
Changes the bot's nick to <nick>."""
nick = privmsgs.getArgs(args)
irc.queueMsg(ircmsgs.nick(nick))
def part(self, irc, msg, args):
"""<channel> [<channel> ...]
Tells the bot to part the whitespace-separated list of channels
you give it.
"""
if not args:
args.append(msg.args[0])
2003-09-05 20:47:58 +02:00
for arg in args:
if arg not in irc.state.channels:
irc.error(msg, 'I\'m not currently in %s' % arg)
2003-09-05 20:47:58 +02:00
return
2003-03-27 07:47:42 +01:00
irc.queueMsg(ircmsgs.parts(args, msg.nick))
def disable(self, irc, msg, args):
"""<command>
Disables the command <command> for all non-owner users.
"""
command = privmsgs.getArgs(args)
if command in ('enable', 'identify'):
irc.error(msg, 'You can\'t disable %s!' % command)
else:
# This has to know that defaultCapabilties gets turned into a
# dictionary.
try:
capability = ircdb.makeAntiCapability(command)
except ValueError:
irc.error(msg, '%r is not a valid command.' % command)
return
2003-03-27 07:47:42 +01:00
if command in conf.defaultCapabilities:
conf.defaultCapabilities.remove(command)
conf.defaultCapabilities.add(capability)
irc.reply(msg, conf.replySuccess)
def enable(self, irc, msg, args):
"""<command>
Re-enables the command <command> for all non-owner users.
"""
command = privmsgs.getArgs(args)
try:
anticapability = ircdb.makeAntiCapability(command)
except ValueError:
irc.error(msg, '%r is not a valid command.' % command)
return
2003-03-27 07:47:42 +01:00
if anticapability in conf.defaultCapabilities:
conf.defaultCapabilities.remove(anticapability)
irc.reply(msg, conf.replySuccess)
else:
irc.error(msg, 'That command wasn\'t disabled.')
def addcapability(self, irc, msg, args):
"""<name|hostmask> <capability>
Gives the user specified by <name> (or the user to whom <hostmask>
currently maps) the specified capability <capability>
"""
(name, capability) = privmsgs.getArgs(args, required=2)
if capability == 'owner':
irc.error(msg, 'The "owner" capability can\'t be added in the bot.'
' Use the supybot-adduser program (or edit the '
'users.conf file yourself) to add an owner '
'capability.')
return
2003-03-27 07:47:42 +01:00
if ircdb.checkCapability(msg.prefix, capability) or \
'!' in capability:
try:
id = ircdb.users.getUserId(name)
user = ircdb.users.getUser(id)
user.addCapability(capability)
ircdb.users.setUser(id, user)
2003-03-27 07:47:42 +01:00
irc.reply(msg, conf.replySuccess)
except KeyError:
irc.error(msg, conf.replyNoUser)
else:
s = 'You can\'t add capabilities you don\'t have.'
irc.error(msg, s)
def removecapability(self, irc, msg, args):
"""<name|hostmask> <capability>
Takes from the user specified by <name> (or the uswer to whom
<hostmask> currently maps) the specified capability <capability>
"""
(name, capability) = privmsgs.getArgs(args, 2)
if ircdb.checkCapability(msg.prefix, capability) or \
'!' in capability:
try:
id = ircdb.users.getUserId(name)
user = ircdb.users.getUser(id)
except KeyError:
irc.error(msg, conf.replyNoUser)
return
try:
user.removeCapability(capability)
ircdb.users.setUser(id, user)
2003-03-27 07:47:42 +01:00
irc.reply(msg, conf.replySuccess)
except KeyError:
irc.error(msg, 'That user doesn\'t have that capability.')
return
2003-03-27 07:47:42 +01:00
else:
s = 'You can\'t remove capabilities you don\'t have.'
irc.error(msg, s)
def ignore(self, irc, msg, args):
"""<hostmask|nick>
Ignores <hostmask> or, if a nick is given, ignores whatever hostmask
that nick is currently using.
"""
arg = privmsgs.getArgs(args)
if ircutils.isUserHostmask(arg):
hostmask = arg
else:
try:
hostmask = irc.state.nickToHostmask(arg)
except KeyError:
irc.error(msg, 'I can\'t find a hostmask for %s' % arg)
return
conf.ignores.append(hostmask)
irc.reply(msg, conf.replySuccess)
def unignore(self, irc, msg, args):
"""<hostmask|nick>
Ignores <hostmask> or, if a nick is given, ignores whatever hostmask
that nick is currently using.
"""
arg = privmsgs.getArgs(args)
if ircutils.isUserHostmask(arg):
hostmask = arg
else:
try:
hostmask = irc.state.nickToHostmask(arg)
except KeyError:
irc.error(msg, 'I can\'t find a hostmask for %s' % arg)
return
try:
conf.ignores.remove(hostmask)
while hostmask in conf.ignores:
conf.ignores.remove(hostmask)
irc.reply(msg, conf.replySuccess)
except ValueError:
irc.error(msg, '%s wasn\'t in conf.ignores.' % hostmask)
def ignores(self, irc, msg, args):
"""takes no arguments
Returns the hostmasks currently being globally ignored.
"""
if conf.ignores:
irc.reply(msg, utils.commaAndify(imap(repr, conf.ignores)))
else:
irc.reply(msg, 'I\'m not currently globally ignoring anyone.')
2003-03-27 07:47:42 +01:00
def setprefixchar(self, irc, msg, args):
"""<prefixchars>
Sets the prefix chars by which the bot can be addressed.
"""
s = privmsgs.getArgs(args)
if s.translate(string.ascii, string.ascii_letters) == '':
irc.error(msg, 'Prefixes cannot contain letters.')
else:
conf.prefixChars = s
irc.reply(msg, conf.replySuccess)
2003-10-17 18:39:05 +02:00
def reportbug(self, irc, msg, args):
"""<description>
Reports a bug to a private mailing list supybot-bugs. <description>
will be the subject of the email. The most recent 10 or so messages
the bot receives will be sent in the body of the email.
"""
description = privmsgs.getArgs(args)
messages = pprint.pformat(irc.state.history[-10:])
email = textwrap.dedent("""
Subject: %s
From: jemfinch@users.sourceforge.net
To: supybot-bugs@lists.sourceforge.net
Date: %s
Bug report for Supybot %s.
%s
""") % (description, time.ctime(), conf.version, messages)
email = email.strip()
email = email.replace('\n', '\r\n')
smtp = smtplib.SMTP('mail.sourceforge.net', 25)
smtp.sendmail('jemfinch@users.sf.net',
['supybot-bugs@lists.sourceforge.net'],
email)
smtp.quit()
irc.reply(msg, conf.replySuccess)
reportbug = privmsgs.thread(reportbug)
2003-03-27 07:47:42 +01:00
2003-10-21 08:03:57 +02:00
Class = Admin
2003-03-27 07:47:42 +01:00
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: