]> jfr.im git - erebus.git/blame - modules/weather.py
help - fix help_nolag
[erebus.git] / modules / weather.py
CommitLineData
2b2ae281 1# Erebus IRC bot - Author: Erebus Team
2# weather module
3# This file is released into the public domain; see http://unlicense.org/
4
5# module info
6modinfo = {
7 'author': 'Erebus Team',
8 'license': 'public domain',
fa93b933 9 'compatible': [0],
2b2ae281 10 'depends': ['userinfo'],
11 'softdeps': ['help'],
12}
13
14# preamble
15import modlib
16lib = modlib.modlib(__name__)
17modstart = lib.modstart
18modstop = lib.modstop
19
20# module code
21import json, urllib, time, rfc822
22
23def location(person, default=None): return lib.mod('userinfo')._get(person, 'location', default=None)
24
cdd662d8 25def _weather(place):
2b2ae281 26 if place is not None:
27 weather = json.load(urllib.urlopen('http://api.wunderground.com/api/8670e6d2e69ff3c7/conditions/q/%s.json' % (place)))
cdd662d8 28 if lib.parent.cfg.getboolean('debug', 'weather'):
29 lib.parent.log('*', "?", repr(weather))
8b6595e1 30 if 'response' in weather:
31 if 'error' in weather['response']:
cdd662d8 32 return "Error from Wunderground: %s" % (weather['response']['error']['description'])
8b6595e1 33 if 'results' in weather['response']:
cdd662d8 34 return "That search term is ambiguous. Please be more specific."
2b2ae281 35
36 current = weather['current_observation']
9cd36ba7 37 measuredat = rfc822.parsedate(current['observation_time_rfc822']) # parsedate_tz returns a 10-tuple which strftime DOESN'T ACCEPT
2b2ae281 38 measuredatTZ = current['local_tz_short']
6112c0cd 39 loc = current['observation_location']
cc38d6f4 40 if loc['city'] == "" or loc['state'] == "": loc = current['display_location']
cdd662d8 41 return u"Weather in %(location)s: As of %(time)s %(tz)s, %(conditions)s, %(cel)s\u00B0C (%(far)s\u00B0F) (feels like %(flcel)s\u00B0C (%(flfar)s\u00B0F)). Wind %(wind)s. %(link)s" % {
6112c0cd 42 'location': loc['full'],
2b2ae281 43 'time': time.strftime("%a %H:%M", measuredat), 'tz': measuredatTZ,
44 'conditions': current['weather'],
45 'cel': current['temp_c'], 'far': current['temp_f'],
46 'flcel': current['feelslike_c'], 'flfar': current['feelslike_f'],
47 'wind': current['wind_string'],
48 'link': current['forecast_url'],
49 }
2b2ae281 50 else:
7b1c0c93 51 return "I don't know where to look! Try %sSETINFO LOCATION <your location>" % (lib.parent.trigger)
cdd662d8 52
53@lib.hook(('weather','w'), needchan=False, wantchan=True)
54@lib.help('[<location>]', 'show weather for your location')
55def weather(bot, user, chan, realtarget, *args):
56 if chan is None:
57 chan = user
58 if len(args) == 0:
59 place = location(user)
60 else:
61 place = ' '.join(args)
62 bot.msg(chan, _weather(place))
63
64@lib.hook(('weatheruser','wu'))
65@lib.help('<user>', 'show weather for <user>\'s location')
66def wu(bot, user, chan, realtarget, *args):
67 bot.msg(chan, _weather(location(' '.join(args))))