mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Moved gameknot stuff out to its own module.
This commit is contained in:
parent
09f2ae8412
commit
bba0e6e880
145
plugins/Gameknot.py
Normal file
145
plugins/Gameknot.py
Normal file
@ -0,0 +1,145 @@
|
||||
#!/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.
|
||||
###
|
||||
|
||||
"""
|
||||
Handles URL snarfing for Gameknot.com and the gkstats command.
|
||||
"""
|
||||
|
||||
from baseplugin import *
|
||||
|
||||
import re
|
||||
import sets
|
||||
import urllib2
|
||||
|
||||
import debug
|
||||
import utils
|
||||
import ircmsgs
|
||||
import privmsgs
|
||||
import callbacks
|
||||
|
||||
|
||||
def configure(onStart, afterConnect, advanced):
|
||||
# This will be called by setup.py to configure this module. onStart and
|
||||
# afterConnect are both lists. Append to onStart the commands you would
|
||||
# like to be run when the bot is started; append to afterConnect the
|
||||
# commands you would like to be run when the bot has finished connecting.
|
||||
from questions import expect, anything, something, yn
|
||||
onStart.append('load Gameknot')
|
||||
|
||||
class Gameknot(callbacks.PrivmsgCommandAndRegexp):
|
||||
threaded = True
|
||||
regexps = sets.Set(['gameknotSnarfer'])
|
||||
_gkrating = re.compile(r'<font color="#FFFF33">(\d+)</font>')
|
||||
_gkgames = re.compile(r's: </td><td class=sml>(\d+)</td></tr>')
|
||||
_gkrecord = re.compile(r'"#FFFF00">(\d+)[^"]+"#FFFF00">(\d+)[^"]+'\
|
||||
'"#FFFF00">(\d+)')
|
||||
_gkteam = re.compile(r'Team:(<.*?>)+(?P<name>.*?)</span>')
|
||||
_gkseen = re.compile(r'(seen on GK:\s+([^[]+)\s+|.*?is hiding.*?)')
|
||||
def gkstats(self, irc, msg, args):
|
||||
"""<name>
|
||||
|
||||
Returns the stats Gameknot keeps on <name>. Gameknot is an online
|
||||
website for playing chess (rather similar to correspondence chess, just
|
||||
somewhat faster) against players from all over the world.
|
||||
"""
|
||||
name = privmsgs.getArgs(args)
|
||||
gkprofile = 'http://www.gameknot.com/stats.pl?%s' % name
|
||||
try:
|
||||
fd = urllib2.urlopen(gkprofile)
|
||||
profile = fd.read()
|
||||
fd.close()
|
||||
rating = self._gkrating.search(profile).group(1)
|
||||
games = self._gkgames.search(profile).group(1)
|
||||
(w, l, d) = self._gkrecord.search(profile).groups()
|
||||
seen = self._gkseen.search(utils.htmlToText(profile))
|
||||
if seen.group(0).find("is hiding") != -1:
|
||||
seen = '%s is hiding his/her online status.' % name
|
||||
elif seen.group(2).startswith('0'):
|
||||
seen = '%s is on gameknot right now.' % name
|
||||
else:
|
||||
seen = '%s was last seen on Gameknot %s.' % (name,
|
||||
seen.group(2))
|
||||
if games == '1':
|
||||
games = '1 active game'
|
||||
else:
|
||||
games = '%s active games' % games
|
||||
if profile.find('Team:') >= 0:
|
||||
team = self._gkteam.search(profile).group('name')
|
||||
irc.reply(msg, '%s (team: %s) is rated %s and has %s ' \
|
||||
'and a record of W-%s, L-%s, D-%s. %s' % \
|
||||
(name, team, rating, games, w, l, d, seen))
|
||||
else:
|
||||
irc.reply(msg, '%s is rated %s and has %s ' \
|
||||
'and a record of W-%s, L-%s, D-%s. %s' % \
|
||||
(name, rating, games, w, l, d, seen))
|
||||
except AttributeError:
|
||||
if profile.find('User %s not found!' % name) != -1:
|
||||
irc.error(msg, 'No user %s exists.' % name)
|
||||
else:
|
||||
irc.error(msg, 'The format of the page was odd.')
|
||||
except urllib2.URLError:
|
||||
irc.error(msg, 'Couldn\'t connect to gameknot.com.')
|
||||
|
||||
_gkPlayer = re.compile(r"popd\('(Rating[^']+)'\).*?>([^<]+)<")
|
||||
_gkRating = re.compile(r": (\d+)[^:]+:<br>(\d+)[^,]+, (\d+)[^,]+, (\d+)")
|
||||
_gkGameTitle = re.compile(r"<p><b>(.*?)\s*</b> \s*<span.*?>\(started")
|
||||
def gameknotSnarfer(self, irc, msg, match):
|
||||
r"http://(?:www\.)?gameknot.com/chess.pl\?bd=\d+(&r=\d+)?"
|
||||
#debug.printf('Got a GK URL from %s' % msg.prefix)
|
||||
url = match.group(0)
|
||||
fd = urllib2.urlopen(url)
|
||||
#debug.printf('Got the connection.')
|
||||
s = fd.read()
|
||||
#debug.printf('Got the string.')
|
||||
fd.close()
|
||||
try:
|
||||
gameTitle = self._gkGameTitle.search(s).groups()
|
||||
gameTitle = ircutils.bold(gameTitle)
|
||||
((wRating, wName), (bRating, bName)) = self._gkPlayer.findall(s)
|
||||
wName = ircutils.bold(wName)
|
||||
bName = ircutils.bold(bName)
|
||||
(wRating, wWins, wLosses, wDraws) = \
|
||||
self._gkRating.search(wRating).groups()
|
||||
(bRating, bWins, bLosses, bDraws) = \
|
||||
self._gkRating.search(bRating).groups()
|
||||
wStats = '%s; W-%s, L-%s, D-%s' % (wRating, wWins, wLosses, wDraws)
|
||||
bStats = '%s; W-%s, L-%s, D-%s' % (bRating, bWins, bLosses, bDraws)
|
||||
irc.queueMsg(ircmsgs.privmsg(msg.args[0],
|
||||
'%s: %s (%s) vs. %s (%s) <%s>' % (
|
||||
gameTitle, wName, wStats, bName, bStats, url)))
|
||||
except ValueError:
|
||||
irc.queueMsg(ircmsgs.privmsg(msg.args[0],
|
||||
'That doesn\'t appear to be a proper Gameknot game.'))
|
||||
except Exception, e:
|
||||
irc.error(msg, debug.exnToString(e))
|
||||
|
||||
Class = Gameknot
|
||||
|
||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
@ -192,57 +192,6 @@ class Http(callbacks.Privmsg):
|
||||
s = 'There appears to be no definition for %s.' % search
|
||||
irc.reply(msg, s)
|
||||
|
||||
_gkrating = re.compile(r'<font color="#FFFF33">(\d+)</font>')
|
||||
_gkgames = re.compile(r's: </td><td class=sml>(\d+)</td></tr>')
|
||||
_gkrecord = re.compile(r'"#FFFF00">(\d+)[^"]+"#FFFF00">(\d+)[^"]+'\
|
||||
'"#FFFF00">(\d+)')
|
||||
_gkteam = re.compile(r'Team:(<.*?>)+(?P<name>.*?)</span>')
|
||||
_gkseen = re.compile(r'(seen on GK:\s+([^[]+)\s+|.*?is hiding.*?)')
|
||||
def gkstats(self, irc, msg, args):
|
||||
"""<name>
|
||||
|
||||
Returns the stats Gameknot keeps on <name>. Gameknot is an online
|
||||
website for playing chess (rather similar to correspondence chess, just
|
||||
somewhat faster) against players from all over the world.
|
||||
"""
|
||||
name = privmsgs.getArgs(args)
|
||||
gkprofile = 'http://www.gameknot.com/stats.pl?%s' % name
|
||||
try:
|
||||
fd = urllib2.urlopen(gkprofile)
|
||||
profile = fd.read()
|
||||
fd.close()
|
||||
rating = self._gkrating.search(profile).group(1)
|
||||
games = self._gkgames.search(profile).group(1)
|
||||
(w, l, d) = self._gkrecord.search(profile).groups()
|
||||
seen = self._gkseen.search(utils.htmlToText(profile))
|
||||
if seen.group(0).find("is hiding") != -1:
|
||||
seen = '%s is hiding his/her online status.' % name
|
||||
elif seen.group(2).startswith('0'):
|
||||
seen = '%s is on gameknot right now.' % name
|
||||
else:
|
||||
seen = '%s was last seen on Gameknot %s.' % (name,
|
||||
seen.group(2))
|
||||
if games == '1':
|
||||
games = '1 active game'
|
||||
else:
|
||||
games = '%s active games' % games
|
||||
if profile.find('Team:') >= 0:
|
||||
team = self._gkteam.search(profile).group('name')
|
||||
irc.reply(msg, '%s (team: %s) is rated %s and has %s ' \
|
||||
'and a record of W-%s, L-%s, D-%s. %s' % \
|
||||
(name, team, rating, games, w, l, d, seen))
|
||||
else:
|
||||
irc.reply(msg, '%s is rated %s and has %s ' \
|
||||
'and a record of W-%s, L-%s, D-%s. %s' % \
|
||||
(name, rating, games, w, l, d, seen))
|
||||
except AttributeError:
|
||||
if profile.find('User %s not found!' % name) != -1:
|
||||
irc.error(msg, 'No user %s exists.' % name)
|
||||
else:
|
||||
irc.error(msg, 'The format of the page was odd.')
|
||||
except urllib2.URLError:
|
||||
irc.error(msg, 'Couldn\'t connect to gameknot.com.')
|
||||
|
||||
_zipcode = re.compile(r'Local Forecast for (.*), (.*?) ')
|
||||
def zipcode(self, irc, msg, args):
|
||||
"""<US zip code>
|
||||
|
Loading…
Reference in New Issue
Block a user