mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
389 lines
15 KiB
Python
389 lines
15 KiB
Python
###
|
|
# Copyright (c) 2002-2004, 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.
|
|
###
|
|
|
|
"""
|
|
Plugin for handling Karma stuff for a channel.
|
|
"""
|
|
|
|
import supybot
|
|
|
|
__revision__ = "$Id$"
|
|
__contributors__ = {
|
|
supybot.authors.jamessan: ['allowUnaddressedKarma configuration variable'],
|
|
}
|
|
|
|
import os
|
|
import sets
|
|
from itertools import imap
|
|
|
|
import supybot.conf as conf
|
|
import supybot.utils as utils
|
|
from supybot.commands import *
|
|
import supybot.plugins as plugins
|
|
import supybot.ircmsgs as ircmsgs
|
|
import supybot.ircutils as ircutils
|
|
import supybot.registry as registry
|
|
import supybot.callbacks as callbacks
|
|
|
|
conf.registerPlugin('Karma')
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'simpleOutput',
|
|
registry.Boolean(False, """Determines whether the bot will output shorter
|
|
versions of the karma output when requesting a single thing's karma."""))
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'response',
|
|
registry.Boolean(False, """Determines whether the bot will reply with a
|
|
success message when something's karma is increased or decreased."""))
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'rankingDisplay',
|
|
registry.Integer(3, """Determines how many highest/lowest karma things are
|
|
shown when karma is called with no arguments."""))
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'mostDisplay',
|
|
registry.Integer(25, """Determines how many karma things are shown when
|
|
the most command is called.'"""))
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'allowSelfRating',
|
|
registry.Boolean(False, """Determines whether users can adjust the karma
|
|
of their nick."""))
|
|
conf.registerChannelValue(conf.supybot.plugins.Karma, 'allowUnaddressedKarma',
|
|
registry.Boolean(False, """Determines whether the bot will
|
|
increase/decrease karma without being addressed."""))
|
|
|
|
class SqliteKarmaDB(object):
|
|
def __init__(self, filename):
|
|
self.dbs = ircutils.IrcDict()
|
|
self.filename = filename
|
|
|
|
def close(self):
|
|
for db in self.dbs.itervalues():
|
|
db.close()
|
|
|
|
def _getDb(self, channel):
|
|
try:
|
|
import sqlite
|
|
except ImportError:
|
|
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
|
'use this plugin. Download it at ' \
|
|
'<http://pysqlite.sf.net/>'
|
|
filename = plugins.makeChannelFilename(self.filename, channel)
|
|
if filename in self.dbs:
|
|
return self.dbs[filename]
|
|
if os.path.exists(filename):
|
|
self.dbs[filename] = sqlite.connect(filename)
|
|
return self.dbs[filename]
|
|
db = sqlite.connect(filename)
|
|
self.dbs[filename] = db
|
|
cursor = db.cursor()
|
|
cursor.execute("""CREATE TABLE karma (
|
|
id INTEGER PRIMARY KEY,
|
|
name TEXT,
|
|
normalized TEXT UNIQUE ON CONFLICT IGNORE,
|
|
added INTEGER,
|
|
subtracted INTEGER
|
|
)""")
|
|
db.commit()
|
|
def p(s1, s2):
|
|
return int(ircutils.nickEqual(s1, s2))
|
|
db.create_function('nickeq', 2, p)
|
|
return db
|
|
|
|
def get(self, channel, thing):
|
|
db = self._getDb(channel)
|
|
thing = thing.lower()
|
|
cursor = db.cursor()
|
|
cursor.execute("""SELECT added, subtracted FROM karma
|
|
WHERE normalized=%s""", thing)
|
|
if cursor.rowcount == 0:
|
|
return None
|
|
else:
|
|
return map(int, cursor.fetchone())
|
|
|
|
def gets(self, channel, things):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
normalizedThings = dict(zip(map(str.lower, things), things))
|
|
criteria = ' OR '.join(['normalized=%s'] * len(normalizedThings))
|
|
sql = """SELECT name, added-subtracted FROM karma
|
|
WHERE %s ORDER BY added-subtracted DESC""" % criteria
|
|
cursor.execute(sql, *normalizedThings)
|
|
L = [(name, int(karma)) for (name, karma) in cursor.fetchall()]
|
|
for (name, _) in L:
|
|
del normalizedThings[name.lower()]
|
|
neutrals = normalizedThings.values()
|
|
neutrals.sort()
|
|
return (L, neutrals)
|
|
|
|
def top(self, channel, limit):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
cursor.execute("""SELECT name, added-subtracted FROM karma
|
|
ORDER BY added-subtracted DESC LIMIT %s""", limit)
|
|
return [(t[0], int(t[1])) for t in cursor.fetchall()]
|
|
|
|
def bottom(self, channel, limit):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
cursor.execute("""SELECT name, added-subtracted FROM karma
|
|
ORDER BY added-subtracted ASC LIMIT %s""", limit)
|
|
return [(t[0], int(t[1])) for t in cursor.fetchall()]
|
|
|
|
def rank(self, channel, thing):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
cursor.execute("""SELECT added-subtracted FROM karma
|
|
WHERE name=%s""", thing)
|
|
if cursor.rowcount == 0:
|
|
return None
|
|
karma = int(cursor.fetchone()[0])
|
|
cursor.execute("""SELECT COUNT(*) FROM karma
|
|
WHERE added-subtracted > %s""", karma)
|
|
rank = int(cursor.fetchone()[0])
|
|
return rank
|
|
|
|
def size(self, channel):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
cursor.execute("""SELECT COUNT(*) FROM karma""")
|
|
return int(cursor.fetchone()[0])
|
|
|
|
def increment(self, channel, name):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
normalized = name.lower()
|
|
cursor.execute("""INSERT INTO karma VALUES (NULL, %s, %s, 0, 0)""",
|
|
name, normalized)
|
|
cursor.execute("""UPDATE karma SET added=added+1
|
|
WHERE normalized=%s""", normalized)
|
|
db.commit()
|
|
|
|
def decrement(self, channel, name):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
normalized = name.lower()
|
|
cursor.execute("""INSERT INTO karma VALUES (NULL, %s, %s, 0, 0)""",
|
|
name, normalized)
|
|
cursor.execute("""UPDATE karma SET subtracted=subtracted+1
|
|
WHERE normalized=%s""", normalized)
|
|
db.commit()
|
|
|
|
def most(self, channel, kind, limit):
|
|
if kind == 'increased':
|
|
orderby = 'added'
|
|
elif kind == 'decreased':
|
|
orderby = 'subtracted'
|
|
elif kind == 'active':
|
|
orderby = 'added+subtracted'
|
|
else:
|
|
raise ValueError, 'invalid kind'
|
|
sql = """SELECT name, %s FROM karma ORDER BY %s DESC LIMIT %s""" % \
|
|
(orderby, orderby, limit)
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
cursor.execute(sql)
|
|
return [(name, int(i)) for (name, i) in cursor.fetchall()]
|
|
|
|
def clear(self, channel, name):
|
|
db = self._getDb(channel)
|
|
cursor = db.cursor()
|
|
normalized = name.lower()
|
|
cursor.execute("""UPDATE karma SET subtracted=0, added=0
|
|
WHERE normalized=%s""", normalized)
|
|
db.commit()
|
|
|
|
KarmaDB = plugins.DB('Karma',
|
|
{'sqlite': SqliteKarmaDB})
|
|
|
|
class Karma(callbacks.Privmsg):
|
|
callBefore = ('Factoids', 'MoobotFactoids', 'Infobot')
|
|
def __init__(self):
|
|
self.__parent = super(Karma, self)
|
|
self.__parent.__init__()
|
|
self.db = KarmaDB()
|
|
|
|
def die(self):
|
|
self.__parent.die()
|
|
self.db.close()
|
|
|
|
def _normalizeThing(self, thing):
|
|
assert thing
|
|
if thing[0] == '(' and thing[-1] == ')':
|
|
thing = thing[1:-1]
|
|
return thing
|
|
|
|
def _respond(self, irc, channel):
|
|
if self.registryValue('response', channel):
|
|
irc.replySuccess()
|
|
else:
|
|
irc.noReply()
|
|
assert irc.msg.repliedTo
|
|
|
|
def _doKarma(self, irc, channel, thing):
|
|
assert thing[-2:] in ('++', '--')
|
|
if thing.endswith('++'):
|
|
thing = thing[:-2]
|
|
if ircutils.strEqual(thing, irc.msg.nick) and \
|
|
not self.registryValue('allowSelfRating', channel):
|
|
irc.error('You\'re not allowed to adjust your own karma.')
|
|
elif thing:
|
|
self.db.increment(channel, self._normalizeThing(thing))
|
|
self._respond(irc, channel)
|
|
else:
|
|
thing = thing[:-2]
|
|
if ircutils.strEqual(thing, irc.msg.nick) and \
|
|
not self.registryValue('allowSelfRating', channel):
|
|
irc.error('You\'re not allowed to adjust your own karma.')
|
|
elif thing:
|
|
self.db.decrement(channel, self._normalizeThing(thing))
|
|
self._respond(irc, channel)
|
|
|
|
def tokenizedCommand(self, irc, msg, tokens):
|
|
channel = msg.args[0]
|
|
if not ircutils.isChannel(channel):
|
|
return
|
|
if tokens[-1][-2:] in ('++', '--'):
|
|
thing = ' '.join(tokens)
|
|
self._doKarma(irc, channel, thing)
|
|
|
|
def doPrivmsg(self, irc, msg):
|
|
if not msg.repliedTo:
|
|
channel = msg.args[0]
|
|
if ircutils.isChannel(channel) and \
|
|
self.registryValue('allowUnaddressedKarma', channel):
|
|
irc = callbacks.SimpleProxy(irc, msg)
|
|
thing = msg.args[1].rstrip()
|
|
if thing[-2:] in ('++', '--'):
|
|
self._doKarma(irc, channel, thing)
|
|
|
|
def karma(self, irc, msg, args, channel, things):
|
|
"""[<channel>] [<thing> [<thing> ...]]
|
|
|
|
Returns the karma of <text>. If <thing> is not given, returns the top
|
|
three and bottom three karmas. If one <thing> is given, returns the
|
|
details of its karma; if more than one <thing> is given, returns the
|
|
total karma of each of the the things. <channel> is only necessary if
|
|
the message isn't sent on the channel itself.
|
|
"""
|
|
if len(things) == 1:
|
|
name = things[0]
|
|
t = self.db.get(channel, name)
|
|
if t is None:
|
|
irc.reply('%s has neutral karma.' % name)
|
|
else:
|
|
(added, subtracted) = t
|
|
total = added - subtracted
|
|
if self.registryValue('simpleOutput', channel):
|
|
s = '%s: %s' % (name, total)
|
|
else:
|
|
s = 'Karma for %s has been increased %s ' \
|
|
'and decreased %s for a total karma of %s.' % \
|
|
(utils.quoted(name), utils.nItems('time', added),
|
|
utils.nItems('time', subtracted), total)
|
|
irc.reply(s)
|
|
elif len(things) > 1:
|
|
(L, neutrals) = self.db.gets(channel, things)
|
|
if L:
|
|
s = utils.commaAndify(['%s: %s' % t for t in L])
|
|
if neutrals:
|
|
neutral = '. %s %s neutral karma' % \
|
|
(utils.commaAndify(neutrals),
|
|
utils.has(len(neutrals)))
|
|
s += neutral
|
|
irc.reply(s + '.')
|
|
else:
|
|
irc.reply('I didn\'t know the karma for any of those things.')
|
|
else: # No name was given. Return the top/bottom N karmas.
|
|
limit = self.registryValue('rankingDisplay', channel)
|
|
top = self.db.top(channel, limit)
|
|
highest = ['%s (%s)' % (utils.quoted(s), t)
|
|
for (s, t) in self.db.top(channel, limit)]
|
|
lowest = ['%s (%s)' % (utils.quoted(s), t)
|
|
for (s, t) in self.db.bottom(channel, limit)]
|
|
if not (highest and lowest):
|
|
irc.error('I have no karma for this channel.')
|
|
return
|
|
rank = self.db.rank(channel, msg.nick)
|
|
if rank is not None:
|
|
total = self.db.size(channel)
|
|
rankS = ' You (%s) are ranked %s out of %s.' % \
|
|
(msg.nick, rank, total)
|
|
else:
|
|
rankS = ''
|
|
s = 'Highest karma: %s. Lowest karma: %s.%s' % \
|
|
(utils.commaAndify(highest), utils.commaAndify(lowest), rankS)
|
|
irc.reply(s)
|
|
karma = wrap(karma, ['channel', many('something')])
|
|
|
|
_mostAbbrev = utils.abbrev(['increased', 'decreased', 'active'])
|
|
def most(self, irc, msg, args, channel, kind):
|
|
"""[<channel>] {increased,decreased,active}
|
|
|
|
Returns the most increased, the most decreased, or the most active
|
|
(the sum of increased and decreased) karma things. <channel> is only
|
|
necessary if the message isn't sent in the channel itself.
|
|
"""
|
|
L = self.db.most(channel, kind,
|
|
self.registryValue('mostDisplay', channel))
|
|
if L:
|
|
L = ['%s: %s' % (utils.quoted(name), i) for (name, i) in L]
|
|
irc.reply(utils.commaAndify(L))
|
|
else:
|
|
irc.error('I have no karma for this channel.')
|
|
most = wrap(most, ['channel',
|
|
('literal', ['increased', 'decreased', 'active'])])
|
|
|
|
def clear(self, irc, msg, args, channel, name):
|
|
"""[<channel>] <name>
|
|
|
|
Resets the karma of <name> to 0.
|
|
"""
|
|
self.db.clear(channel, name)
|
|
irc.replySuccess()
|
|
clear = wrap(clear, [('checkChannelCapability', 'op'), 'text'])
|
|
|
|
def getName(self, nick, msg, match):
|
|
addressed = callbacks.addressed(nick, msg)
|
|
name = callbacks.addressed(nick,
|
|
ircmsgs.IrcMsg(prefix='',
|
|
args=(msg.args[0], match.group(1)),
|
|
msg=msg))
|
|
if not name:
|
|
name = match.group(1)
|
|
if not addressed:
|
|
if not self.registryValue('allowUnaddressedKarma'):
|
|
return ''
|
|
if not msg.args[1].startswith(match.group(1)):
|
|
return ''
|
|
name = match.group(1)
|
|
elif addressed:
|
|
if not addressed.startswith(name):
|
|
return ''
|
|
name = name.strip('()')
|
|
return name
|
|
|
|
|
|
Class = Karma
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|