Limnoria/plugins/Dict.py

158 lines
5.8 KiB
Python
Raw Normal View History

2003-09-05 22:22:43 +02:00
###
# Copyright (c) 2002-2004, Jeremiah Fincher
2003-09-05 22:22:43 +02: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.
###
"""
Commands that use the dictd protocol to snag stuff off a server.
"""
2003-11-25 09:23:47 +01:00
__revision__ = "$Id$"
2004-07-24 07:18:26 +02:00
import supybot.plugins as plugins
2003-09-05 22:22:43 +02:00
2003-10-04 16:56:54 +02:00
import sets
2003-09-05 22:22:43 +02:00
import random
import socket
2003-09-05 22:22:43 +02:00
import dictclient
2004-07-24 07:18:26 +02:00
import supybot.conf as conf
import supybot.utils as utils
2004-12-15 17:37:26 +01:00
from supybot.commands import *
2004-07-24 07:18:26 +02:00
import supybot.plugins as plugins
import supybot.ircutils as ircutils
2004-12-15 17:37:26 +01:00
import supybot.registry as registry
import supybot.webutils as webutils
2004-07-24 07:18:26 +02:00
import supybot.callbacks as callbacks
2004-01-19 23:37:22 +01:00
def configure(advanced):
2004-07-25 20:24:51 +02:00
from supybot.questions import output, expect, anything, something, yn
2004-02-06 05:45:14 +01:00
conf.registerPlugin('Dict', True)
output('The default dictd server is dict.org.')
if yn('Would you like to specify a different dictd server?'):
2003-09-05 22:22:43 +02:00
server = something('What server?')
2004-01-19 23:37:22 +01:00
conf.supybot.plugins.Dict.server.set(server)
2003-09-05 22:22:43 +02:00
conf.registerPlugin('Dict')
# TODO: We should make this check to see if there's actually a dictd server
# running on the host given.
conf.registerGlobalValue(conf.supybot.plugins.Dict, 'server',
registry.String('dict.org', """Determines what server the bot will
retrieve definitions from."""))
2004-08-18 20:37:59 +02:00
conf.registerChannelValue(conf.supybot.plugins.Dict, 'default',
registry.String('', """Determines the default dictionary the bot will
ask for definitions in. If this value is '*' (without the quotes) the bot
will use all dictionaries to define words."""))
class Dict(callbacks.Privmsg):
2003-09-05 22:22:43 +02:00
threaded = True
def dictionaries(self, irc, msg, args):
"""takes no arguments
2003-09-05 22:22:43 +02:00
Returns the dictionaries valid for the dict command.
"""
2003-11-12 02:12:57 +01:00
try:
server = conf.supybot.plugins.Dict.server()
conn = dictclient.Connection(server)
dbs = conn.getdbdescs().keys()
2003-11-12 02:12:57 +01:00
dbs.sort()
irc.reply(utils.commaAndify(dbs))
2004-08-18 20:37:59 +02:00
except socket.error, e:
irc.error(webutils.strError(e))
2004-12-15 17:37:26 +01:00
dictionaries = wrap(dictionaries)
2003-09-05 22:22:43 +02:00
def random(self, irc, msg, args):
"""takes no arguments
2003-09-05 22:22:43 +02:00
Returns a random valid dictionary.
"""
2003-11-12 02:12:57 +01:00
try:
server = conf.supybot.plugins.Dict.server()
conn = dictclient.Connection(server)
dbs = conn.getdbdescs().keys()
irc.reply(random.choice(dbs))
2004-08-18 20:37:59 +02:00
except socket.error, e:
irc.error(webutils.strError(e))
2004-12-15 17:37:26 +01:00
random = wrap(random)
2003-09-05 22:22:43 +02:00
2004-12-15 17:37:26 +01:00
def dict(self, irc, msg, args, words):
2003-09-05 22:22:43 +02:00
"""[<dictionary>] <word>
Looks up the definition of <word> on dict.org's dictd server.
2003-09-05 22:22:43 +02:00
"""
try:
server = conf.supybot.plugins.Dict.server()
conn = dictclient.Connection(server)
2004-08-18 20:37:59 +02:00
except socket.error, e:
2004-12-15 17:37:26 +01:00
irc.error(webutils.strError(e), Raise=True)
2003-11-12 02:12:57 +01:00
dbs = sets.Set(conn.getdbdescs())
2004-12-15 17:37:26 +01:00
if words[0] in dbs:
dictionary = words.pop(0)
2003-09-05 22:22:43 +02:00
else:
2004-08-18 20:37:59 +02:00
default = self.registryValue('default', msg.args[0])
if default in dbs:
dictionary = default
else:
if default:
self.log.info('Default dict for %s is not a supported '
'dictionary: %s.', msg.args[0], default)
dictionary = '*'
2004-12-15 17:37:26 +01:00
if not words:
2004-08-31 20:23:47 +02:00
irc.error('You must give a word to define.', Raise=True)
2004-12-15 17:37:26 +01:00
word = ' '.join(words)
2003-09-05 22:22:43 +02:00
definitions = conn.define(dictionary, word)
dbs = sets.Set()
if not definitions:
if dictionary == '*':
irc.reply('No definition for %s could be found.' %
utils.quoted(word))
else:
irc.reply('No definition for %s could be found in %s' %
(utils.quoted(word), ircutils.bold(dictionary)))
2003-09-05 22:22:43 +02:00
return
L = []
for d in definitions:
dbs.add(ircutils.bold(d.getdb().getname()))
(db, s) = (d.getdb().getname(), d.getdefstr())
db = ircutils.bold(db)
s = utils.normalizeWhitespace(s).rstrip(';.,')
L.append('%s: %s' % (db, s))
utils.sortBy(len, L)
if dictionary == '*' and len(dbs) > 1:
2004-07-21 21:36:35 +02:00
s = '%s responded: %s' % (utils.commaAndify(dbs), '; '.join(L))
2003-09-05 22:22:43 +02:00
else:
s = '; '.join(L)
irc.reply(s)
2004-12-15 17:37:26 +01:00
dict = wrap(dict, [many('something')])
2003-09-05 22:22:43 +02:00
Class = Dict
2003-09-05 22:22:43 +02:00
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: