mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-19 08:59:27 +01:00
Made the 'record' regex more generic. This should make it work for everyone.
Added a check for 'Team', since not everyone will have one.
This commit is contained in:
parent
c803e5e9d8
commit
0294dd255c
@ -124,7 +124,7 @@ class Http(callbacks.Privmsg):
|
|||||||
|
|
||||||
_gkrating = re.compile(r'<font color="#FFFF33">(\d+)</font>')
|
_gkrating = re.compile(r'<font color="#FFFF33">(\d+)</font>')
|
||||||
_gkgames = re.compile(r's: </td><td class=sml>(\d+)</td></tr>')
|
_gkgames = re.compile(r's: </td><td class=sml>(\d+)</td></tr>')
|
||||||
_gkrecord = re.compile(r'percentile(\d+), [^%]+%(\d+), [^%]+%(\d+)')
|
_gkrecord = re.compile(r'"#FFFF00">[^"]+">(\d+)[^"]+">(\d+)[^"]+">(\d+)')
|
||||||
_gkteam = re.compile('Team:([^\s]+)')
|
_gkteam = re.compile('Team:([^\s]+)')
|
||||||
_gkseen = re.compile('seen on GK: ([^\n]+)')
|
_gkseen = re.compile('seen on GK: ([^\n]+)')
|
||||||
def gkstats(self, irc, msg, args):
|
def gkstats(self, irc, msg, args):
|
||||||
@ -138,13 +138,19 @@ class Http(callbacks.Privmsg):
|
|||||||
rating = self._gkrating.search(profile).group(1)
|
rating = self._gkrating.search(profile).group(1)
|
||||||
games = self._gkgames.search(profile).group(1)
|
games = self._gkgames.search(profile).group(1)
|
||||||
profile = stripHtml(profile)
|
profile = stripHtml(profile)
|
||||||
team = self._gkteam.search(profile).group(1)
|
|
||||||
seen = self._gkseen.search(profile).group(1)
|
seen = self._gkseen.search(profile).group(1)
|
||||||
(w, l, d) = self._gkrecord.search(profile).groups()
|
(w, l, d) = self._gkrecord.search(profile).groups()
|
||||||
irc.reply(msg, '%s (team %s) is rated %s and has %s active games '
|
if profile.find('Team:') >= 0:
|
||||||
'and a record of W-%s, L-%s, D-%s. ' \
|
team = self._gkteam.search(profile).group(1)
|
||||||
|
irc.reply(msg, '%s (team %s) is rated %s and has %s active '
|
||||||
|
'games and a record of W-%s, L-%s, D-%s. ' \
|
||||||
'%s was last seen on Gameknot %s' % \
|
'%s was last seen on Gameknot %s' % \
|
||||||
(name, team, rating, games, w, l, d, name, seen))
|
(name, team, rating, games, w, l, d, name, seen))
|
||||||
|
else:
|
||||||
|
irc.reply(msg, '%s is rated %s and has %s active games '
|
||||||
|
'and a record of W-%s, L-%s, D-%s. ' \
|
||||||
|
'%s was last seen on Gameknot %s' % \
|
||||||
|
(name, rating, games, w, l, d, name, seen))
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
if profile.find('User %s not found!' % name) != -1:
|
if profile.find('User %s not found!' % name) != -1:
|
||||||
irc.error(msg, 'No user %s exists.')
|
irc.error(msg, 'No user %s exists.')
|
||||||
|
Loading…
Reference in New Issue
Block a user