1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
#-- vim:sw=2:et
#++
#
# :title: Weather plugin for rbot
#
# Author:: MrChucho (mrchucho@mrchucho.net): NOAA National Weather Service support
# Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
#
# Copyright:: (C) 2006 Ralph M. Churchill
# Copyright:: (C) 2006-2007 Giuseppe Bilotta
#
# License:: GPL v2
require 'rexml/document'
# Wraps NOAA National Weather Service information
class CurrentConditions
def initialize(station, bot)
@station = station
@bot = bot
@url = "http://www.nws.noaa.gov/data/current_obs/#{URI.encode @station.upcase}.xml"
@current_conditions = String.new
end
def update
begin
resp = @bot.httputil.get_response(@url)
case resp
when Net::HTTPSuccess
cc_doc = (REXML::Document.new resp.body).root
@current_conditions = parse(cc_doc)
else
raise Net::HTTPError.new(_("couldn't get data for %{station} (%{message})") % {
:station => @station, :message => resp.message
}, resp)
end
rescue => e
if Net::HTTPError === e
raise
else
error e
raise "error retrieving data: #{e}"
end
end
@current_conditions
end
def parse(cc_doc)
cc = Hash.new
cc_doc.elements.each do |c|
cc[c.name.to_sym] = c.text
end
cc[:time] = cc[:observation_time_rfc822]
cc[:wind] = cc[:wind_string]
cc[:temperature] = cc[:temperature_string]
cc[:heatindexorwindchill] = heat_index_or_wind_chill(cc)
cc[:pressure] = cc[:pressure_string]
_("At %{time} the conditions at %{location} (%{station_id}) were %{weather} with a visibility of %{visibility_mi}mi. The wind was %{wind} with %{relative_humidity}%% relative humidity. The temperature was %{temperature}%{heatindexorwindchill}, and the pressure was %{pressure}.") % cc
end
private
def heat_index_or_wind_chill(cc)
hi = cc[:heat_index_string]
wc = cc[:windchill_string]
if hi and hi != 'NA' then
_(" with a heat index of %{hi}") % { :hi => hi }
elsif wc and wc != 'NA' then
_(" with a windchill of %{wc}") % { :wc => wc }
else
""
end
end
end
class WeatherPlugin < Plugin
Config.register Config::BooleanValue.new('weather.advisory',
:default => true,
:desc => "Should the bot report special weather advisories when any is present?")
Config.register Config::EnumValue.new('weather.units',
:values => ['metric', 'english', 'both'],
:default => 'both',
:desc => "Units to be used by default in Weather Underground reports")
def help(plugin, topic="")
case topic
when "nws"
"weather nws <station> => display the current conditions at the location specified by the NOAA National Weather Service station code <station> ( lookup your station code at http://www.nws.noaa.gov/data/current_obs/ )"
when "station", "wu"
"weather [<units>] <location> => display the current conditions at the location specified, looking it up on the Weather Underground site; you can use 'station <code>' to look up data by station code ( lookup your station code at http://www.weatherunderground.com/ ); you can optionally set <units> to 'metric' or 'english' if you only want data with the units; use 'both' for units to go back to having both."
else
"weather information lookup. Looks up weather information for the last location you specified. See topics 'nws' and 'wu' for more information"
end
end
def initialize
super
@nws_cache = Hash.new
@wu_url = "http://mobile.wunderground.com/cgi-bin/findweather/getForecast?brand=mobile%s&query=%s"
@wu_station_url = "http://mobile.wunderground.com/auto/mobile%s/global/stations/%s.html"
end
def weather(m, params)
where = params[:where].to_s
service = params[:service].to_sym rescue nil
units = params[:units]
if where.empty? or !service or !units and @registry.has_key?(m.sourcenick)
reg = @registry[m.sourcenick]
debug "loaded weather info #{reg.inspect} for #{m.sourcenick}"
service = reg.first.to_sym if !service
where = reg[1].to_s if where.empty?
units = reg[2] rescue nil
end
if !service
if where.sub!(/^station\s+/,'')
service = :nws
else
service = :wu
end
end
if where.empty?
debug "No weather location found for #{m.sourcenick}"
m.reply "I don't know where you are yet, #{m.sourcenick}. See 'help weather nws' or 'help weather wu' for additional help"
return
end
wu_units = String.new
units = @bot.config['weather.units'] unless units
case units.to_sym
when :english, :metric
wu_units = "_#{units}"
when :both
else
m.reply "Ignoring unknown units #{units}"
end
case service
when :nws
nws_describe(m, where)
when :station
wu_station(m, where, wu_units)
when :wu
wu_weather(m, where, wu_units)
when :google
google_weather(m, where)
else
m.reply "I don't know the weather service #{service}, sorry"
return
end
@registry[m.sourcenick] = [service, where, units]
end
def nws_describe(m, where)
if @nws_cache.has_key?(where) then
met = @nws_cache[where]
else
met = CurrentConditions.new(where, @bot)
end
if met
begin
m.reply met.update
@nws_cache[where] = met
rescue Net::HTTPError => e
m.reply _("%{error}, will try WU service") % { :error => e.message }
wu_weather(m, where)
rescue => e
m.reply e.message
end
else
m.reply "couldn't find weather data for #{where}"
end
end
def wu_station(m, where, units="")
begin
xml = @bot.httputil.get(@wu_station_url % [units, CGI.escape(where)])
case xml
when nil
m.reply "couldn't retrieve weather information, sorry"
return
when /Search not found:/
m.reply "no such station found (#{where})"
return
when /<table border.*?>(.*?)<\/table>/m
data = $1.dup
m.reply wu_weather_filter(data)
wu_out_special(m, xml)
else
debug xml
m.reply "something went wrong with the data for #{where}..."
end
rescue => e
m.reply "retrieving info about '#{where}' failed (#{e})"
end
end
def wu_weather(m, where, units="")
begin
xml = @bot.httputil.get(@wu_url % [units, CGI.escape(where)])
case xml
when nil
m.reply "couldn't retrieve weather information, sorry"
when /City Not Found/
m.reply "no such location found (#{where})"
when /Current<\/a>/
data = ""
xml.scan(/<table border.*?>(.*?)<\/table>/m).each do |match|
data += wu_weather_filter(match.first)
end
if data.length > 0
m.reply data
else
m.reply "couldn't parse weather data from #{where}"
end
wu_out_special(m, xml)
when /<a href="\/auto\/mobile[^\/]+\/(?:global\/stations|[A-Z][A-Z])\//
wu_weather_multi(m, xml)
else
debug xml
m.reply "something went wrong with the data from #{where}..."
end
rescue => e
m.reply "retrieving info about '#{where}' failed (#{e})"
end
end
def wu_weather_multi(m, xml)
# debug xml
stations = xml.scan(/<td>\s*(?:<a href="([^?"]+\?feature=[^"]+)"\s*[^>]*><img [^>]+><\/a>\s*)?<a href="\/auto\/mobile[^\/]+\/(?:global\/stations|([A-Z][A-Z]))\/([^"]*?)\.html">(.*?)<\/a>\s*:\s*(.*?)<\/td>/m)
# debug stations
m.reply "multiple stations available, use 'weather station <code>' or 'weather <city, state>' as appropriate, for one of the following (current temp shown):"
stations.map! { |ar|
warning = ar[0]
loc = ar[2]
state = ar[1]
par = ar[3]
w = ar[4]
if state # US station
(warning ? "*" : "") + ("%s, %s (%s): %s" % [loc, state, par, w.ircify_html])
else # non-US station
(warning ? "*" : "") + ("station %s (%s): %s" % [loc, par, w.ircify_html])
end
}
m.reply stations.join("; ")
end
def wu_check_special(xml)
specials = []
# We only scan the first half to prevent getting the advisories twice
xml[0,xml.length/2].scan(%r{<a href="([^"]+\?[^"]*feature=warning#([^"]+))"[^>]*>([^<]+)</a>}) do
special = {
:url => "http://mobile.wunderground.com"+$1,
:type => $2.dup,
:special => $3.dup
}
spec_rx = Regexp.new("<a name=\"#{special[:type]}\">(?:.+?)<td align=\"left\">\\s+(.+?)\\s+</td>\\s+</tr>\\s+</table>", Regexp::MULTILINE)
spec_xml = @bot.httputil.get(special[:url])
if spec_xml and spec_td = spec_xml.match(spec_rx)
special.merge!(:text => spec_td.captures.first.ircify_html)
end
specials << special
end
return specials
end
def wu_out_special(m, xml)
return unless @bot.config['weather.advisory']
specials = wu_check_special(xml)
debug specials
specials.each do |special|
special.merge!(:underline => Underline)
if special[:text]
m.reply("%{underline}%{special}%{underline}: %{text}" % special)
else
m.reply("%{underline}%{special}%{underline} @ %{url}" % special)
end
end
end
def wu_weather_filter(stuff)
result = Array.new
if stuff.match(/<\/a>\s*Updated:\s*(.*?)\s*Observed at\s*(.*?)\s*<\/td>/)
result << ("Weather info for %s (updated on %s)" % [$2.ircify_html, $1.ircify_html])
end
stuff.scan(/<tr>\s*<td>\s*(.*?)\s*<\/td>\s*<td>\s*(.*?)\s*<\/td>\s*<\/tr>/m) { |k, v|
kk = k.riphtml
vv = v.riphtml
next if vv.empty?
next if ["-", "- approx.", "N/A", "N/A approx."].include?(vv)
next if kk == "Raw METAR"
result << ("%s: %s" % [kk, vv])
}
return result.join('; ')
end
# TODO allow units choice other than lang, find how the API does it
def google_weather(m, where)
botlang = @bot.config['core.language'].intern
if Language::Lang2Locale.key?(botlang)
lang = Language::Lang2Locale[botlang].sub(/.UTF.?8$/,'')
else
lang = botlang.to_s[0,2]
end
debug "Google weather with language #{lang}"
xml = @bot.httputil.get("http://www.google.com/ig/api?hl=#{lang}&weather=#{CGI.escape where}")
debug xml
weather = REXML::Document.new(xml).root.elements["weather"]
begin
error = weather.elements["problem_cause"]
if error
ermsg = error.attributes["data"]
ermsg = _("no reason specified") if ermsg.empty?
raise ermsg
end
city = weather.elements["forecast_information/city"].attributes["data"]
date = Time.parse(weather.elements["forecast_information/current_date_time"].attributes["data"])
units = weather.elements["forecast_information/unit_system"].attributes["data"].intern
current_conditions = weather.elements["current_conditions"]
foreconds = weather.elements.to_a("forecast_conditions")
conds = []
current_conditions.each { |el|
name = el.name.intern
value = el.attributes["data"].dup
debug [name, value]
case name
when :icon
next
when :temp_f
next if units == :SI
value << "°F"
when :temp_c
next if units == :US
value << "°C"
end
conds << value
}
forecasts = []
foreconds.each { |forecast|
cond = []
forecast.each { |el|
name = el.name.intern
value = el.attributes["data"]
case name
when :icon
next
when :high, :low
value << (units == :SI ? "°C" : "°F")
value << " |" if name == :low
when :condition
value = "(#{value})"
end
cond << value
}
forecasts << cond.join(' ')
}
m.reply _("Google weather info for %{city} on %{date}: %{conds}. Three-day forecast: %{forecast}") % {
:city => city,
:date => date,
:conds => conds.join(', '),
:forecast => forecasts.join('; ')
}
rescue => e
debug e
m.reply _("Google weather failed: %{e}") % { :e => e}
end
end
end
plugin = WeatherPlugin.new
plugin.map 'weather :units :service *where',
:defaults => {
:where => false,
:units => false,
:service => false
},
:requirements => {
:units => /metric|english|both/,
:service => /wu|nws|station|google/
}
|