2004-01-09 01:06:48 +01:00
|
|
|
#!/usr/bin/env python
|
2004-01-07 16:17:53 +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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2004-02-23 10:05:12 +01:00
|
|
|
This plugin does weather-related stuff. It can't change the weather, though,
|
|
|
|
so don't get your hopes up. We just report it.
|
2004-01-07 16:17:53 +01:00
|
|
|
"""
|
|
|
|
|
2004-04-30 20:36:16 +02:00
|
|
|
__revision__ = "$Id$"
|
2004-03-19 17:58:54 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2004-01-07 16:17:53 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sets
|
2004-02-23 10:05:12 +01:00
|
|
|
import urllib
|
2004-01-07 16:17:53 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.webutils as webutils
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.registry as registry
|
|
|
|
import supybot.callbacks as callbacks
|
2004-01-07 16:17:53 +01:00
|
|
|
|
2004-02-23 12:08:22 +01:00
|
|
|
unitAbbrevs = utils.abbrev(['Fahrenheit', 'Celsius', 'Centigrade', 'Kelvin'])
|
|
|
|
unitAbbrevs['C'] = 'Celsius'
|
|
|
|
unitAbbrevs['Ce'] = 'Celsius'
|
2004-02-21 22:11:50 +01:00
|
|
|
|
|
|
|
class WeatherUnit(registry.String):
|
2004-02-21 22:49:44 +01:00
|
|
|
def setValue(self, s):
|
2004-02-23 12:08:22 +01:00
|
|
|
#print '***', repr(s)
|
|
|
|
s = s.capitalize()
|
2004-02-21 22:11:50 +01:00
|
|
|
if s not in unitAbbrevs:
|
|
|
|
raise registry.InvalidRegistryValue,\
|
2004-03-30 10:32:17 +02:00
|
|
|
'Unit must be one of Fahrenheit, Celsius, or Kelvin.'
|
2004-02-23 12:08:22 +01:00
|
|
|
s = unitAbbrevs[s]
|
2004-02-21 22:49:44 +01:00
|
|
|
registry.String.setValue(self, s)
|
2004-02-21 22:11:50 +01:00
|
|
|
|
|
|
|
class WeatherCommand(registry.String):
|
2004-02-23 10:05:12 +01:00
|
|
|
def setValue(self, s):
|
|
|
|
m = Weather.weatherCommands
|
|
|
|
if s not in m:
|
2004-02-21 22:11:50 +01:00
|
|
|
raise registry.InvalidRegistryValue,\
|
2004-03-30 10:32:17 +02:00
|
|
|
'Command must be one of %s' % utils.commaAndify(m)
|
2004-02-23 10:05:12 +01:00
|
|
|
else:
|
|
|
|
method = getattr(Weather, s)
|
2004-02-23 10:49:47 +01:00
|
|
|
Weather.weather.im_func.__doc__ = method.__doc__
|
2004-02-23 10:05:12 +01:00
|
|
|
registry.String.setValue(self, s)
|
2004-02-21 22:11:50 +01:00
|
|
|
|
2004-03-30 10:32:17 +02:00
|
|
|
# Registry variables moved to the bottom to use Weather.weatherCommands.
|
|
|
|
|
2004-01-07 16:17:53 +01:00
|
|
|
class Weather(callbacks.Privmsg):
|
2004-07-20 07:26:52 +02:00
|
|
|
"""This should never be seen, because this plugin defines a command by
|
|
|
|
the name of 'weather' which should override this help."""
|
2004-06-04 21:49:08 +02:00
|
|
|
weatherCommands = ['ham', 'cnn', 'wunder']
|
2004-01-07 16:17:53 +01:00
|
|
|
threaded = True
|
|
|
|
def callCommand(self, method, irc, msg, *L):
|
|
|
|
try:
|
|
|
|
callbacks.Privmsg.callCommand(self, method, irc, msg, *L)
|
|
|
|
except webutils.WebError, e:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error(str(e))
|
2004-07-19 00:25:12 +02:00
|
|
|
|
2004-02-23 10:05:12 +01:00
|
|
|
def weather(self, irc, msg, args):
|
|
|
|
# This specifically does not have a docstring.
|
|
|
|
channel = None
|
|
|
|
if ircutils.isChannel(msg.args[0]):
|
|
|
|
channel = msg.args[0]
|
2004-04-30 20:36:16 +02:00
|
|
|
if not args:
|
|
|
|
s = self.userValue('lastLocation', msg.prefix)
|
|
|
|
if s:
|
|
|
|
args = [s]
|
|
|
|
else:
|
|
|
|
location = privmsgs.getArgs(args)
|
2004-07-20 09:34:22 +02:00
|
|
|
self.setUserValue('lastLocation', msg.prefix,
|
|
|
|
location, ignoreNoUser=True)
|
2004-02-25 16:46:22 +01:00
|
|
|
realCommandName = self.registryValue('command', channel)
|
2004-02-23 10:05:12 +01:00
|
|
|
realCommand = getattr(self, realCommandName)
|
|
|
|
realCommand(irc, msg, args)
|
2004-07-19 00:25:12 +02:00
|
|
|
|
2004-02-23 12:08:22 +01:00
|
|
|
def _toCelsius(self, temp, unit):
|
|
|
|
if unit == 'K':
|
|
|
|
return temp - 273.15
|
2004-02-23 12:35:06 +01:00
|
|
|
elif unit == 'F':
|
2004-02-23 12:08:22 +01:00
|
|
|
return (temp - 32) * 5 /9
|
2004-02-23 12:35:06 +01:00
|
|
|
else:
|
|
|
|
return temp
|
2004-02-23 12:08:22 +01:00
|
|
|
|
2004-07-19 00:25:12 +02:00
|
|
|
_temp = re.compile(r'(-?\d+)(.*?)(F|C)')
|
2004-02-21 22:11:50 +01:00
|
|
|
def _getTemp(self, temp, deg, unit, chan):
|
2004-02-23 12:08:22 +01:00
|
|
|
assert unit == unit.upper()
|
|
|
|
assert temp == int(temp)
|
|
|
|
default = self.registryValue('temperatureUnit', chan)
|
2004-02-21 22:11:50 +01:00
|
|
|
if unitAbbrevs[unit] == default:
|
2004-02-23 10:49:47 +01:00
|
|
|
# Short circuit if we're the same unit as the default.
|
2004-02-23 12:08:22 +01:00
|
|
|
return '%s%s%s' % (temp, deg, unit)
|
|
|
|
temp = self._toCelsius(temp, unit)
|
|
|
|
unit = 'C'
|
|
|
|
if default == 'Kelvin':
|
|
|
|
temp = temp + 273.15
|
|
|
|
unit = 'K'
|
|
|
|
deg = ' '
|
|
|
|
elif default == 'Fahrenheit':
|
|
|
|
temp = temp * 9 / 5 + 32
|
|
|
|
unit = 'F'
|
|
|
|
return '%s%s%s' % (temp, deg, unit)
|
2004-02-21 22:11:50 +01:00
|
|
|
|
2004-06-04 21:49:08 +02:00
|
|
|
_hamLoc = re.compile(
|
2004-01-09 00:03:48 +01:00
|
|
|
r'<td><font size="4" face="arial"><b>'
|
|
|
|
r'(.*?), (.*?),(.*?)</b></font></td>', re.I)
|
2004-01-07 16:17:53 +01:00
|
|
|
_interregex = re.compile(
|
2004-01-09 00:03:48 +01:00
|
|
|
r'<td><font size="4" face="arial"><b>'
|
|
|
|
r'([^,]+), ([^<]+)</b></font></td>', re.I)
|
2004-06-04 21:49:08 +02:00
|
|
|
_hamCond = re.compile(
|
2004-01-09 00:03:48 +01:00
|
|
|
r'<td width="100%" colspan="2" align="center"><strong>'
|
|
|
|
r'<font face="arial">([^<]+)</font></strong></td>', re.I)
|
2004-06-04 21:49:08 +02:00
|
|
|
_hamTemp = re.compile(
|
2004-01-09 00:03:48 +01:00
|
|
|
r'<td valign="top" align="right"><strong><font face="arial">'
|
2004-02-23 12:08:22 +01:00
|
|
|
r'(-?\d+)(.*?)(F|C)</font></strong></td>', re.I)
|
2004-06-04 21:49:08 +02:00
|
|
|
_hamChill = re.compile(
|
2004-02-23 12:08:22 +01:00
|
|
|
r'Wind Chill</font></strong>:</small></td>\s+<td align="right">'
|
2004-01-09 03:50:23 +01:00
|
|
|
r'<small><font face="arial">([^N][^<]+)</font></small></td>',
|
|
|
|
re.I | re.S)
|
2004-06-04 21:49:08 +02:00
|
|
|
_hamHeat = re.compile(
|
2004-02-23 12:08:22 +01:00
|
|
|
r'Heat Index</font></strong>:</small></td>\s+<td align="right">'
|
2004-01-09 03:50:23 +01:00
|
|
|
r'<small><font face="arial">([^N][^<]+)</font></small></td>',
|
|
|
|
re.I | re.S)
|
2004-01-07 16:17:53 +01:00
|
|
|
# States
|
2004-07-19 00:25:12 +02:00
|
|
|
_realStates = sets.Set(['ak', 'al', 'ar', 'az', 'ca', 'co', 'ct',
|
2004-01-11 15:47:44 +01:00
|
|
|
'dc', 'de', 'fl', 'ga', 'hi', 'ia', 'id',
|
|
|
|
'il', 'in', 'ks', 'ky', 'la', 'ma', 'md',
|
|
|
|
'me', 'mi', 'mn', 'mo', 'ms', 'mt', 'nc',
|
|
|
|
'nd', 'ne', 'nh', 'nj', 'nm', 'nv', 'ny',
|
|
|
|
'oh', 'ok', 'or', 'pa', 'ri', 'sc', 'sd',
|
|
|
|
'tn', 'tx', 'ut', 'va', 'vt', 'wa', 'wi',
|
|
|
|
'wv', 'wy'])
|
2004-01-07 16:17:53 +01:00
|
|
|
# Provinces. (Province being a metric state measurement mind you. :D)
|
|
|
|
_fakeStates = sets.Set(['ab', 'bc', 'mb', 'nb', 'nf', 'ns', 'nt',
|
|
|
|
'nu', 'on', 'pe', 'qc', 'sk', 'yk'])
|
|
|
|
# Certain countries are expected to use a standard abbreviation
|
|
|
|
# The weather we pull uses weird codes. Map obvious ones here.
|
2004-02-21 22:11:50 +01:00
|
|
|
_hamCountryMap = {'uk': 'gb'}
|
|
|
|
def ham(self, irc, msg, args):
|
2004-02-17 07:29:19 +01:00
|
|
|
"""<US zip code | US/Canada city, state | Foreign city, country>
|
2004-01-07 16:17:53 +01:00
|
|
|
|
|
|
|
Returns the approximate weather conditions for a given city.
|
|
|
|
"""
|
2004-07-19 00:25:12 +02:00
|
|
|
|
2004-01-07 16:17:53 +01:00
|
|
|
#If we received more than one argument, then we have received
|
|
|
|
#a city and state argument that we need to process.
|
|
|
|
if len(args) > 1:
|
|
|
|
#If we received more than 1 argument, then we got a city with a
|
|
|
|
#multi-word name. ie ['Garden', 'City', 'KS'] instead of
|
|
|
|
#['Liberal', 'KS']. We join it together with a + to pass
|
|
|
|
#to our query
|
|
|
|
state = args.pop()
|
|
|
|
state = state.lower()
|
|
|
|
city = '+'.join(args)
|
|
|
|
city = city.rstrip(',')
|
|
|
|
city = city.lower()
|
|
|
|
#We must break the States up into two sections. The US and
|
|
|
|
#Canada are the only countries that require a State argument.
|
2004-07-19 00:25:12 +02:00
|
|
|
|
2004-01-07 16:17:53 +01:00
|
|
|
if state in self._realStates:
|
|
|
|
country = 'us'
|
|
|
|
elif state in self._fakeStates:
|
|
|
|
country = 'ca'
|
|
|
|
else:
|
|
|
|
country = state
|
|
|
|
state = ''
|
2004-02-21 22:11:50 +01:00
|
|
|
if country in self._hamCountryMap.keys():
|
|
|
|
country = self._hamCountryMap[country]
|
2004-01-09 00:03:48 +01:00
|
|
|
url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?' \
|
|
|
|
'pass=&dpp=&forecast=zandh&config=&' \
|
|
|
|
'place=%s&state=%s&country=%s' % (city, state, country)
|
2004-01-11 15:47:44 +01:00
|
|
|
html = webutils.getUrl(url)
|
|
|
|
if 'was not found' in html:
|
|
|
|
url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?' \
|
|
|
|
'pass=&dpp=&forecast=zandh&config=&' \
|
|
|
|
'place=%s&state=&country=%s' % (city, state)
|
|
|
|
html = webutils.getUrl(url)
|
|
|
|
if 'was not found' in html: # Still.
|
|
|
|
irc.error('No such location could be found.')
|
|
|
|
return
|
2004-01-07 16:17:53 +01:00
|
|
|
|
|
|
|
#We received a single argument. Zipcode or station id.
|
|
|
|
else:
|
|
|
|
zip = privmsgs.getArgs(args)
|
2004-07-19 00:25:12 +02:00
|
|
|
zip = zip.replace(',', '')
|
2004-02-21 22:11:50 +01:00
|
|
|
zip = zip.lower()
|
2004-01-09 00:03:48 +01:00
|
|
|
url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?' \
|
2004-02-21 22:11:50 +01:00
|
|
|
'config=&forecast=zandh&pands=%s&Submit=GO' % zip
|
2004-01-07 16:17:53 +01:00
|
|
|
html = webutils.getUrl(url)
|
2004-01-11 15:47:44 +01:00
|
|
|
if 'was not found' in html:
|
|
|
|
irc.error('No such location could be found.')
|
|
|
|
return
|
2004-07-19 00:25:12 +02:00
|
|
|
|
2004-06-04 21:49:08 +02:00
|
|
|
headData = self._hamLoc.search(html)
|
2004-02-08 08:16:58 +01:00
|
|
|
if headData is not None:
|
2004-01-07 16:17:53 +01:00
|
|
|
(city, state, country) = headData.groups()
|
|
|
|
else:
|
|
|
|
headData = self._interregex.search(html)
|
2004-01-11 15:47:44 +01:00
|
|
|
if headData:
|
|
|
|
(city, state) = headData.groups()
|
|
|
|
else:
|
|
|
|
irc.error('No such location could be found.')
|
|
|
|
return
|
2004-01-07 16:17:53 +01:00
|
|
|
|
|
|
|
city = city.strip()
|
|
|
|
state = state.strip()
|
2004-06-04 21:49:08 +02:00
|
|
|
temp = self._hamTemp.search(html)
|
2004-04-14 02:26:08 +02:00
|
|
|
convert = self.registryValue('convert', msg.args[0])
|
2004-02-08 08:16:58 +01:00
|
|
|
if temp is not None:
|
2004-02-23 12:08:22 +01:00
|
|
|
(temp, deg, unit) = temp.groups()
|
2004-04-14 02:26:08 +02:00
|
|
|
if convert:
|
|
|
|
temp = self._getTemp(int(temp), deg, unit, msg.args[0])
|
|
|
|
else:
|
|
|
|
temp = deg.join((temp, unit))
|
2004-06-04 21:49:08 +02:00
|
|
|
conds = self._hamCond.search(html)
|
2004-02-08 08:16:58 +01:00
|
|
|
if conds is not None:
|
2004-01-07 16:17:53 +01:00
|
|
|
conds = conds.group(1)
|
2004-01-09 03:50:23 +01:00
|
|
|
index = ''
|
2004-06-04 21:49:08 +02:00
|
|
|
chill = self._hamChill.search(html)
|
2004-02-08 08:16:58 +01:00
|
|
|
if chill is not None:
|
2004-01-07 16:17:53 +01:00
|
|
|
chill = chill.group(1)
|
2004-02-23 12:08:22 +01:00
|
|
|
chill = utils.htmlToText(chill)
|
2004-04-14 02:26:08 +02:00
|
|
|
if convert:
|
|
|
|
tempsplit = self._temp.search(chill)
|
|
|
|
if tempsplit:
|
|
|
|
(chill, deg, unit) = tempsplit.groups()
|
|
|
|
chill = self._getTemp(int(chill), deg, unit,msg.args[0])
|
2004-03-26 01:28:51 +01:00
|
|
|
if float(chill[:-2]) < float(temp[:-2]):
|
2004-01-09 03:50:23 +01:00
|
|
|
index = ' (Wind Chill: %s)' % chill
|
2004-06-04 21:49:08 +02:00
|
|
|
heat = self._hamHeat.search(html)
|
2004-02-08 07:24:00 +01:00
|
|
|
if heat is not None:
|
2004-01-07 16:17:53 +01:00
|
|
|
heat = heat.group(1)
|
2004-02-23 12:08:22 +01:00
|
|
|
heat = utils.htmlToText(heat)
|
2004-04-14 02:26:08 +02:00
|
|
|
if convert:
|
|
|
|
tempsplit = self._temp.search(heat)
|
|
|
|
if tempsplit:
|
|
|
|
(heat, deg, unit) = tempsplit.groups()
|
|
|
|
if convert:
|
|
|
|
heat = self._getTemp(int(heat), deg, unit,msg.args[0])
|
2004-03-26 01:28:51 +01:00
|
|
|
if float(heat[:-2]) > float(temp[:-2]):
|
2004-01-09 03:50:23 +01:00
|
|
|
index = ' (Heat Index: %s)' % heat
|
2004-01-07 16:17:53 +01:00
|
|
|
if temp and conds and city and state:
|
2004-02-08 08:16:58 +01:00
|
|
|
conds = conds.replace('Tsra', 'Thunderstorms')
|
2004-06-06 23:21:15 +02:00
|
|
|
conds = conds.replace('Ts', 'Thunderstorms')
|
2004-07-29 20:36:45 +02:00
|
|
|
s = 'The current temperature in %s, %s is %s%s. Conditions: %s.'% \
|
2004-01-07 16:17:53 +01:00
|
|
|
(city, state, temp, index, conds)
|
2004-01-09 01:06:48 +01:00
|
|
|
irc.reply(s)
|
2004-01-07 16:17:53 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('The format of the page was odd.')
|
2004-01-07 16:17:53 +01:00
|
|
|
|
2004-02-21 22:11:50 +01:00
|
|
|
_cnnUrl = 'http://weather.cnn.com/weather/search?wsearch='
|
2004-06-04 21:49:08 +02:00
|
|
|
_cnnFTemp = re.compile(r'(-?\d+)(°)(F)</span>', re.I | re.S)
|
|
|
|
_cnnCond = re.compile(r'align="center"><b>([^<]+)</b></div></td>',
|
|
|
|
re.I | re.S)
|
|
|
|
_cnnHumid = re.compile(r'Rel. Humidity: <b>(\d+%)</b>', re.I | re.S)
|
|
|
|
_cnnWind = re.compile(r'Wind: <b>([^<]+)</b>', re.I | re.S)
|
|
|
|
_cnnLoc = re.compile(r'<title>([^<]+)</title>', re.I | re.S)
|
2004-02-21 22:11:50 +01:00
|
|
|
# Certain countries are expected to use a standard abbreviation
|
|
|
|
# The weather we pull uses weird codes. Map obvious ones here.
|
|
|
|
_cnnCountryMap = {'uk': 'en', 'de': 'ge'}
|
|
|
|
def cnn(self, irc, msg, args):
|
|
|
|
"""<US zip code | US/Canada city, state | Foreign city, country>
|
|
|
|
|
|
|
|
Returns the approximate weather conditions for a given city.
|
|
|
|
"""
|
|
|
|
if len(args) > 1:
|
|
|
|
#If we received more than 1 argument, then we got a city with a
|
|
|
|
#multi-word name. ie ['Garden', 'City', 'KS'] instead of
|
|
|
|
#['Liberal', 'KS']. We join it together with a + to pass
|
|
|
|
#to our query
|
|
|
|
state = args.pop().lower()
|
|
|
|
city = ' '.join(args)
|
|
|
|
city = city.rstrip(',').lower()
|
|
|
|
if state in self._cnnCountryMap:
|
|
|
|
state = self._cnnCountryMap[state]
|
|
|
|
loc = ' '.join([city, state])
|
|
|
|
else:
|
|
|
|
#We received a single argument. Zipcode or station id.
|
|
|
|
zip = privmsgs.getArgs(args)
|
|
|
|
loc = zip.replace(',', '').lower()
|
|
|
|
url = '%s%s' % (self._cnnUrl, urllib.quote(loc))
|
|
|
|
try:
|
|
|
|
text = webutils.getUrl(url)
|
|
|
|
except webutils.WebError, e:
|
|
|
|
irc.error(str(e))
|
|
|
|
return
|
|
|
|
if "No search results" in text or "does not match a zip code" in text:
|
|
|
|
irc.error('No such location could be found.')
|
|
|
|
return
|
2004-06-04 21:49:08 +02:00
|
|
|
location = self._cnnLoc.search(text)
|
|
|
|
temp = self._cnnFTemp.search(text)
|
|
|
|
conds = self._cnnCond.search(text)
|
|
|
|
humidity = self._cnnHumid.search(text)
|
|
|
|
wind = self._cnnWind.search(text)
|
2004-04-14 02:26:08 +02:00
|
|
|
convert = self.registryValue('convert', msg.args[0])
|
2004-02-21 22:11:50 +01:00
|
|
|
if location and temp:
|
|
|
|
location = location.group(1)
|
|
|
|
location = location.split('-')[-1].strip()
|
2004-02-21 22:49:44 +01:00
|
|
|
(temp, deg, unit) = temp.groups()
|
2004-04-14 02:26:08 +02:00
|
|
|
if convert:
|
|
|
|
temp = self._getTemp(int(temp), deg, unit, msg.args[0])
|
|
|
|
else:
|
|
|
|
temp = deg.join((temp, unit))
|
2004-07-29 20:36:45 +02:00
|
|
|
resp = ['The current temperature in %s is %s.' % (location, temp)]
|
2004-02-21 22:11:50 +01:00
|
|
|
if conds is not None:
|
|
|
|
resp.append('Conditions: %s.' % conds.group(1))
|
|
|
|
if humidity is not None:
|
|
|
|
resp.append('Humidity: %s.' % humidity.group(1))
|
|
|
|
if wind is not None:
|
|
|
|
resp.append('Wind: %s.' % wind.group(1))
|
|
|
|
resp = map(utils.htmlToText, resp)
|
2004-06-04 21:49:08 +02:00
|
|
|
irc.reply(' '.join(resp))
|
|
|
|
else:
|
|
|
|
irc.error('Could not find weather information.')
|
|
|
|
|
|
|
|
_wunderUrl = 'http://www.weatherunderground.com/cgi-bin/findweather/'\
|
|
|
|
'getForecast?query='
|
|
|
|
_wunderLoc = re.compile(r'<title>[^:]+: ([^<]+)</title>', re.I | re.S)
|
|
|
|
_wunderFTemp = re.compile(
|
|
|
|
r'graphics/conds.*?<nobr><b>(-?\d+)</b> (°)(F)</nobr>',
|
|
|
|
re.I | re.S)
|
|
|
|
_wunderCond = re.compile(r'</b></font><br>\s+<font size=-1><b>([^<]+)</b>',
|
|
|
|
re.I | re.S)
|
|
|
|
_wunderHumid = re.compile(r'Humidity:</td><td[^>]+><b>(\d+%)</b>',
|
|
|
|
re.I | re.S)
|
|
|
|
_wunderDew = re.compile(r'Dew Point:</td><td[^>]+><b>\s+<nobr><b>'
|
|
|
|
r'(-?\d+)</b> (°)(F)</nobr>',
|
|
|
|
re.I | re.S)
|
2004-07-19 00:25:12 +02:00
|
|
|
_wunderHeat = re.compile(
|
|
|
|
r'HeatIndex:</td><td[^>]+><b>\s+<nobr><b>(\d+)</b> ([^F]+)(F)<',
|
|
|
|
re.I | re.S)
|
2004-06-04 21:49:08 +02:00
|
|
|
_wunderWind = re.compile(
|
|
|
|
r'Wind:</td><td[^>]+>\s+<b>\s+<nobr><b>(\d+)</b> (mph)'
|
|
|
|
r'</nobr>\s+/\s+<nobr><b>(\d+)</b> (km/h)</nobr>\s+</b>'
|
|
|
|
r'\s+from the\s+<b>(\w{3})</b>', re.I | re.S)
|
|
|
|
_wunderPressure = re.compile(
|
|
|
|
r'Pressure:</td><td[^<]+><b>\s+<b>(\d+\.\d+)</b> (in)\s+/\s+'
|
|
|
|
r'<b>(\d+)</b> (hPa)', re.I | re.S)
|
|
|
|
_wunderVisible = re.compile(
|
2004-07-19 00:25:12 +02:00
|
|
|
r'Visibility:</td><td[^>]+><b>\s+<nobr><b>([\w.]+)</b> (miles)'
|
|
|
|
r'</nobr>\s+/\s+<nobr><b>([\w.]+)</b> (kilometers)</nobr>',
|
2004-06-04 21:49:08 +02:00
|
|
|
re.I | re.S)
|
2004-07-19 00:25:12 +02:00
|
|
|
_wunderUv = re.compile(r'UV:</td><td[^>]+><b>(\d\d?)</b>( out of \d\d?)', re.I | re.S)
|
2004-06-04 21:49:08 +02:00
|
|
|
_wunderTime = re.compile(r'Updated:\s+<b>([\w\s:,]+)</b>', re.I | re.S)
|
|
|
|
def wunder(self, irc, msg, args):
|
|
|
|
"""<US zip code | US/Canada city, state | Foreign city, country>
|
|
|
|
|
|
|
|
Returns the approximate weather conditions for a given city.
|
|
|
|
"""
|
|
|
|
loc = ' '.join(args)
|
|
|
|
url = '%s%s' % (self._wunderUrl, urllib.quote(loc))
|
|
|
|
try:
|
|
|
|
text = webutils.getUrl(url)
|
|
|
|
except webutils.WebError, e:
|
|
|
|
irc.error(str(e))
|
|
|
|
return
|
|
|
|
if 'Search not found' in text:
|
|
|
|
irc.error('No such location could be found.')
|
|
|
|
return
|
|
|
|
if 'Search results for' in text:
|
|
|
|
irc.error('Multiple locations found. Please be more specific.')
|
|
|
|
return
|
|
|
|
location = self._wunderLoc.search(text)
|
|
|
|
temp = self._wunderFTemp.search(text)
|
|
|
|
convert = self.registryValue('convert', msg.args[0])
|
|
|
|
if location and temp:
|
|
|
|
location = location.group(1)
|
|
|
|
location = location.replace(' Forecast', '')
|
|
|
|
(temp, deg, unit) = temp.groups()
|
|
|
|
if convert:
|
|
|
|
temp = self._getTemp(int(temp), deg, unit, msg.args[0])
|
|
|
|
else:
|
|
|
|
temp = deg.join((temp, unit))
|
|
|
|
time = self._wunderTime.search(text)
|
|
|
|
if time is not None:
|
|
|
|
time = ' (%s)' % time.group(1)
|
|
|
|
else:
|
|
|
|
time = ''
|
2004-07-29 20:36:45 +02:00
|
|
|
resp = ['The current temperature in %s is %s%s.' %\
|
2004-06-04 21:49:08 +02:00
|
|
|
(location, temp, time)]
|
2004-07-19 00:25:12 +02:00
|
|
|
heat = self._wunderHeat.search(text)
|
|
|
|
if heat is not None:
|
|
|
|
(heat, deg, unit) = map(str.strip, heat.groups())
|
|
|
|
if convert:
|
|
|
|
heat = self._getTemp(int(heat), deg, unit, msg.args[0])
|
|
|
|
resp.append('Heat Index: %s.' % heat)
|
2004-06-04 21:49:08 +02:00
|
|
|
conds = self._wunderCond.search(text)
|
|
|
|
if conds is not None:
|
|
|
|
resp.append('Conditions: %s.' % conds.group(1))
|
|
|
|
humidity = self._wunderHumid.search(text)
|
|
|
|
if humidity is not None:
|
|
|
|
resp.append('Humidity: %s.' % humidity.group(1))
|
|
|
|
dewpt = self._wunderDew.search(text)
|
|
|
|
if dewpt is not None:
|
|
|
|
(dew, deg, unit) = dewpt.groups()
|
|
|
|
if convert:
|
|
|
|
dew = self._getTemp(int(dew), deg, unit, msg.args[0])
|
|
|
|
else:
|
|
|
|
dew = deg.join((dew, unit))
|
|
|
|
resp.append('Dew Point: %s.' % dew)
|
|
|
|
wind = self._wunderWind.search(text)
|
|
|
|
if wind is not None:
|
|
|
|
resp.append('Wind: %s at %s %s (%s %s).' % (wind.group(5),
|
|
|
|
wind.group(1),
|
|
|
|
wind.group(2),
|
|
|
|
wind.group(3),
|
|
|
|
wind.group(4)))
|
|
|
|
press = self._wunderPressure.search(text)
|
|
|
|
if press is not None:
|
|
|
|
resp.append('Pressure: %s %s (%s %s).' % press.groups())
|
|
|
|
vis = self._wunderVisible.search(text)
|
|
|
|
if vis is not None:
|
|
|
|
resp.append('Visibility: %s %s (%s %s).' % vis.groups())
|
|
|
|
uv = self._wunderUv.search(text)
|
|
|
|
if uv is not None:
|
2004-07-19 00:25:12 +02:00
|
|
|
resp.append('UV: %s%s' % uv.groups())
|
2004-06-04 21:49:08 +02:00
|
|
|
resp = map(utils.htmlToText, resp)
|
|
|
|
irc.reply(' '.join(resp))
|
2004-02-21 22:11:50 +01:00
|
|
|
else:
|
|
|
|
irc.error('Could not find weather information.')
|
2004-01-07 16:17:53 +01:00
|
|
|
|
2004-02-23 10:49:47 +01:00
|
|
|
conf.registerPlugin('Weather')
|
2004-02-23 12:08:22 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Weather, 'temperatureUnit',
|
2004-02-23 10:49:47 +01:00
|
|
|
WeatherUnit('Fahrenheit', """Sets the default temperature unit to use when
|
|
|
|
reporting the weather."""))
|
2004-02-25 16:46:22 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Weather, 'command',
|
2004-07-19 00:25:12 +02:00
|
|
|
WeatherCommand('cnn', """Sets the default command to use when retrieving
|
2004-03-30 10:32:17 +02:00
|
|
|
the weather. Command must be one of %s.""" %
|
|
|
|
utils.commaAndify(Weather.weatherCommands, And='or')))
|
2004-04-14 02:26:08 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Weather, 'convert',
|
|
|
|
registry.Boolean(True, """Determines whether the weather commands will
|
|
|
|
automatically convert weather units to the unit specified in
|
|
|
|
supybot.plugins.Weather.temperatureUnit."""))
|
2004-02-23 10:49:47 +01:00
|
|
|
|
2004-04-30 20:36:16 +02:00
|
|
|
conf.registerUserValue(conf.users.plugins.Weather, 'lastLocation',
|
|
|
|
registry.String('', ''))
|
|
|
|
|
2004-01-07 16:17:53 +01:00
|
|
|
Class = Weather
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|