2003-03-13 08:14:33 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2003-03-13 17:28:12 +01:00
|
|
|
###
|
|
|
|
# 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-03-25 07:53:51 +01:00
|
|
|
"""
|
|
|
|
Reads URLs from a channel, generally for web-based forums, and messages the
|
|
|
|
channel with useful information about the URL -- its forum, title, original
|
|
|
|
poster, etc.
|
|
|
|
"""
|
|
|
|
|
2003-03-13 08:14:33 +01:00
|
|
|
from baseplugin import *
|
|
|
|
|
|
|
|
import re
|
|
|
|
import urllib2
|
|
|
|
|
2003-03-15 12:11:55 +01:00
|
|
|
import debug
|
2003-03-13 08:14:33 +01:00
|
|
|
import ircmsgs
|
|
|
|
import ircutils
|
|
|
|
import callbacks
|
|
|
|
|
|
|
|
class Forums(callbacks.PrivmsgRegexp):
|
|
|
|
threaded = True
|
2003-03-28 02:43:08 +01:00
|
|
|
_ggThread = re.compile(r'<br>Subject: ([^<]+)<br>')
|
|
|
|
_ggGroup = re.compile(r'Newsgroups: <a[^>]+>([^<]+)</a>')
|
2003-03-13 08:14:33 +01:00
|
|
|
def googlegroups(self, irc, msg, match):
|
|
|
|
r"http://groups.google.com/[^\s]+"
|
2003-03-28 18:56:27 +01:00
|
|
|
request = urllib2.Request(match.group(0), headers=\
|
2003-03-13 08:14:33 +01:00
|
|
|
{'User-agent': 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)'})
|
|
|
|
fd = urllib2.urlopen(request)
|
|
|
|
text = fd.read()
|
2003-03-28 18:56:27 +01:00
|
|
|
fd.close()
|
|
|
|
if match.group(0).find('&prev=/') >= 0:
|
|
|
|
path = re.search('view the <a href=([^>]+)>no',text)
|
|
|
|
url = 'http://groups.google.com'
|
|
|
|
request = urllib2.Request('%s%s' % (url,path.group(1)),
|
|
|
|
headers={'User-agent': 'Mozilla/4.0 (compatible; MSIE 5.5;'
|
|
|
|
'Windows NT 4.0)'})
|
|
|
|
fd = urllib2.urlopen(request)
|
|
|
|
text = fd.read()
|
|
|
|
fd.close()
|
2003-03-13 08:14:33 +01:00
|
|
|
mThread = self._ggThread.search(text)
|
|
|
|
mGroup = self._ggGroup.search(text)
|
|
|
|
if mThread and mGroup:
|
|
|
|
irc.queueMsg(ircmsgs.privmsg(ircutils.reply(msg),
|
|
|
|
'Google Groups: %s, %s' % (mGroup.group(1), mThread.group(1))))
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.privmsg(msg.args[0],
|
|
|
|
'That doesn\'t appear to be a proper Google Groups page.'))
|
|
|
|
|
2003-03-15 12:11:55 +01:00
|
|
|
_gkPlayer = re.compile(r"popd\('(Rating[^']+)'\).*?>([^<]+)<")
|
|
|
|
_gkRating = re.compile(r": (\d+)[^:]+:<br>(\d+)[^,]+, (\d+)[^,]+, (\d+)")
|
2003-03-13 08:14:33 +01:00
|
|
|
def gameknot(self, irc, msg, match):
|
2003-03-13 08:55:49 +01:00
|
|
|
r"http://(?:www\.)?gameknot.com/chess.pl\?bd=\d+&r=\d+"
|
2003-03-22 04:15:12 +01:00
|
|
|
#debug.printf('Got a GK URL from %s' % msg.prefix)
|
|
|
|
url = match.group(0)
|
|
|
|
fd = urllib2.urlopen(url)
|
|
|
|
#debug.printf('Got the connection.')
|
2003-03-13 08:14:33 +01:00
|
|
|
s = fd.read()
|
2003-03-22 04:15:12 +01:00
|
|
|
#debug.printf('Got the string.')
|
2003-03-15 12:11:55 +01:00
|
|
|
fd.close()
|
2003-03-13 08:14:33 +01:00
|
|
|
try:
|
2003-03-15 12:11:55 +01:00
|
|
|
((wRating, wName), (bRating, bName)) = self._gkPlayer.findall(s)
|
2003-03-13 08:58:05 +01:00
|
|
|
wName = ircutils.bold(wName)
|
|
|
|
bName = ircutils.bold(bName)
|
2003-03-15 12:11:55 +01:00
|
|
|
(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)
|
2003-03-13 08:14:33 +01:00
|
|
|
irc.queueMsg(ircmsgs.privmsg(msg.args[0],
|
2003-03-22 04:15:12 +01:00
|
|
|
'%s (%s) vs. %s (%s) [%s]' % (wName,wStats,bName,bStats,url)))
|
2003-03-13 08:14:33 +01:00
|
|
|
except ValueError:
|
|
|
|
irc.queueMsg(ircmsgs.privmsg(msg.args[0],
|
|
|
|
'That doesn\'t appear to be a proper Gameknot game.'))
|
2003-03-15 12:11:55 +01:00
|
|
|
except Exception, e:
|
|
|
|
irc.error(msg, debug.exnToString(e))
|
2003-03-13 08:14:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
Class = Forums
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|