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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
# RSS feed plugin for RubyBot
# (c) 2004 Stanislav Karchebny <berkus@madfire.net>
# (c) 2005 Ian Monroe <ian@monroe.nu>
# (c) 2005 Mark Kretschmann <markey@web.de>
# Licensed under MIT License.
require 'rss/parser'
require 'rss/1.0'
require 'rss/2.0'
require 'rss/dublincore'
begin
# require 'rss/dublincore/2.0'
rescue
warning "Unable to load RSS libraries, RSS plugin functionality crippled"
end
class ::String
def shorten(limit)
if self.length > limit
self+". " =~ /^(.{#{limit}}[^.!;?]*[.!;?])/mi
return $1
end
self
end
def riphtml
self.gsub(/<[^>]+>/, '').gsub(/&/,'&').gsub(/"/,'"').gsub(/</,'<').gsub(/>/,'>').gsub(/&ellip;/,'...').gsub(/'/, "'").gsub("\n",'')
end
def mysqlize
self.gsub(/'/, "''")
end
end
class RSSFeedsPlugin < Plugin
@@watchThreads = Hash.new
# Keep a 1:1 relation between commands and handlers
@@handlers = {
"rss" => "handle_rss",
"addrss" => "handle_addrss",
"rmrss" => "handle_rmrss",
"listrss" => "handle_listrss",
"listwatches" => "handle_listrsswatch",
"rewatch" => "handle_rewatch",
"watchrss" => "handle_watchrss",
"rmwatch" => "handle_rmwatch"
}
def initialize
super
@feeds = Hash.new
@watchList = Hash.new
begin
IO.foreach("#{@bot.botclass}/rss/feeds") { |line|
s = line.chomp.split("|", 2)
@feeds[s[0]] = s[1]
}
rescue
log "no feeds";
end
begin
IO.foreach("#{@bot.botclass}/rss/watchlist") { |line|
s = line.chomp.split("|", 3)
@watchList[s[0]] = [s[1], s[2]]
watchRss( s[2], s[0], s[1] )
}
rescue
log "no watchlist"
end
end
def cleanup
kill_threads
end
def save
Dir.mkdir("#{@bot.botclass}/rss") if not FileTest.directory?("#{@bot.botclass}/rss")
File.open("#{@bot.botclass}/rss/feeds", "w") { |file|
@feeds.each { |k,v|
file.puts(k + "|" + v)
}
}
File.open("#{@bot.botclass}/rss/watchlist", "w") { |file|
@watchList.each { |url, d|
feedFormat = d[0] || ''
whichChan = d[1] || 'markey'
file.puts(url + '|' + feedFormat + '|' + whichChan)
}
}
end
def kill_threads
Thread.critical=true
# Abort all running threads.
@@watchThreads.each { |url, thread|
debug "Killing thread for #{url}"
thread.kill
}
# @@watchThreads.each { |url, thread|
# debug "Joining on killed thread for #{url}"
# thread.join
# }
@@watchThreads = Hash.new
Thread.critical=false
end
def help(plugin,topic="")
"RSS Reader: rss name [limit] => read a named feed [limit maximum posts, default 5], addrss [force] name url => add a feed, listrss => list all available feeds, rmrss name => remove the named feed, watchrss url [type] => watch a rss feed for changes (type may be 'amarokblog', 'amarokforum', 'mediawiki', 'gmame' or empty - it defines special formatting of feed items), rewatch => restart all rss watches, rmwatch url => stop watching for changes in url, listwatches => see a list of watched feeds"
end
def privmsg(m)
meth = self.method(@@handlers[m.plugin])
meth.call(m)
end
def handle_rss(m)
unless m.params
m.reply("incorrect usage: " + help(m.plugin))
return
end
limit = 5
if m.params =~ /\s+(\d+)$/
limit = $1.to_i
if limit < 1 || limit > 15
m.reply("weird, limit not in [1..15], reverting to default")
limit = 5
end
m.params.gsub!(/\s+\d+$/, '')
end
url = ''
if m.params =~ /^http:\/\//
url = m.params
else
unless @feeds.has_key?(m.params)
m.reply(m.params + "? what is that feed about?")
return
end
url = @feeds[m.params]
end
m.reply("Please wait, querying...")
title = ''
items = fetchRSS(m.replyto, url, title)
if(items == nil)
return
end
m.reply("Channel : #{title}")
# FIXME: optional by-date sorting if dates present
items[0...limit].each do |item|
printRSSItem(m.replyto,item)
end
end
def handle_addrss(m)
unless m.params
m.reply "incorrect usage: " + help(m.plugin)
return
end
if m.params =~ /^force /
forced = true
m.params.gsub!(/^force /, '')
end
feed = m.params.scan(/^(\S+)\s+(\S+)$/)
unless feed.length == 1 && feed[0].length == 2
m.reply("incorrect usage: " + help(m.plugin))
return
end
if @feeds.has_key?(feed[0][0]) && !forced
m.reply("But there is already a feed named #{feed[0][0]} with url #{@feeds[feed[0][0]]}")
return
end
feed[0][0].gsub!("|", '_')
@feeds[feed[0][0]] = feed[0][1]
m.reply("RSS: Added #{feed[0][1]} with name #{feed[0][0]}")
end
def handle_rmrss(m)
unless m.params
m.reply "incorrect usage: " + help(m.plugin)
return
end
unless @feeds.has_key?(m.params)
m.reply("dunno that feed")
return
end
@feeds.delete(m.params)
@bot.okay(m.replyto)
end
def handle_rmwatch(m)
unless m.params
m.reply "incorrect usage: " + help(m.plugin)
return
end
unless @watchList.has_key?(m.params)
m.reply("no such watch")
return
end
unless @watchList[m.params][1] == m.replyto
m.reply("no such watch for this channel/nick")
return
end
@watchList.delete(m.params)
Thread.critical=true
if @@watchThreads[m.params].kind_of? Thread
@@watchThreads[m.params].kill
debug "rmwatch: Killed thread for #{m.params}"
# @@watchThreads[m.params].join
# debug "rmwatch: Joined killed thread for #{m.params}"
@@watchThreads.delete(m.params)
end
Thread.critical=false
@bot.okay(m.replyto)
end
def handle_listrss(m)
reply = ''
if @feeds.length == 0
reply = "No feeds yet."
else
@feeds.each { |k,v|
reply << k + ": " + v + "\n"
}
end
m.reply(reply)
end
def handle_listrsswatch(m)
reply = ''
if @watchList.length == 0
reply = "No watched feeds yet."
else
@watchList.each { |url,v|
reply << url + " for " + v[1] + " (in format: " + (v[0]?v[0]:"default") + ")\n"
}
end
m.reply(reply)
end
def handle_rewatch(m)
kill_threads
# Read watches from list.
@watchList.each{ |url, d|
feedFormat = d[0]
whichChan = d[1]
watchRss(whichChan, url,feedFormat)
}
@bot.okay(m.replyto)
end
def handle_watchrss(m)
unless m.params
m.reply "incorrect usage: " + help(m.plugin)
return
end
feed = m.params.scan(/(\S+)/)
debug feed.inspect
if feed
url = feed[0]
feedFormat = ""
feedFormat = feed[1] if feed.length > 1
if @watchList.has_key?(url)
m.reply("But there is already a watch for feed #{url} on chan #{@watchList[url][1]}")
return
end
@watchList[url] = [feedFormat, m.replyto]
watchRss(m.replyto, url,feedFormat)
m.okay
else
m.reply "Wrong syntax"
end
end
private
def watchRss(whichChan, url, feedFormat)
if @@watchThreads.has_key?(url)
@bot.say whichChan, "ERROR: watcher thread for #{url} is already running! #{@@watchThreads[url]}"
return
end
@@watchThreads[url] = Thread.new do
debug 'watchRss thread started.'
oldItems = []
firstRun = true
loop do
begin
title = ''
debug 'Fetching rss feed..'
newItems = fetchRSS(whichChan, url, title)
if( newItems.empty? )
@bot.say whichChan, "Oops - Item is empty"
break
end
debug "Checking if new items are available"
if (firstRun)
firstRun = false
else
newItems.each do |nItem|
showItem = true;
oldItems.each do |oItem|
if (nItem.to_s == oItem.to_s)
showItem = false
end
end
if showItem
debug "showing #{nItem.title}"
printFormatedRSS(whichChan, nItem,feedFormat)
else
debug "not showing #{nItem.title}"
break
end
end
end
oldItems = newItems
rescue Exception => e
error "IO failed: #{e.inspect}"
debug e.backtrace.join("\n")
end
seconds = 150 + rand(100)
debug "Thread going to sleep #{seconds} seconds.."
sleep seconds
end
end
end
def printRSSItem(whichChan,item)
if item.kind_of?(RSS::RDF::Item)
@bot.say whichChan, item.title.chomp.riphtml.shorten(20) + " @ " + item.link
else
@bot.say whichChan, "#{item.pubDate.to_s.chomp+": " if item.pubDate}#{item.title.chomp.riphtml.shorten(20)+" :: " if item.title}#{" @ "+item.link.chomp if item.link}"
end
end
def printFormatedRSS(whichChan,item, type)
case type
when 'amarokblog'
@bot.say whichChan, "::#{item.category.content} just blogged at #{item.link}::"
@bot.say whichChan, "::#{item.title.chomp.riphtml} - #{item.description.chomp.riphtml.shorten(60)}::"
when 'amarokforum'
@bot.say whichChan, "::Forum:: #{item.pubDate.to_s.chomp+": " if item.pubDate}#{item.title.chomp.riphtml+" :: " if item.title}#{" @ "+item.link.chomp if item.link}"
when 'mediawiki'
@bot.say whichChan, "::Wiki:: #{item.title} has been edited by #{item.dc_creator}. #{item.description.split("\n")[0].chomp.riphtml.shorten(60)} #{item.link} ::"
debug "mediawiki #{item.title}"
when "gmame"
@bot.say whichChan, "::amarok-devel:: Message #{item.title} sent by #{item.dc_creator}. #{item.description.split("\n")[0].chomp.riphtml.shorten(60)}::"
else
printRSSItem(whichChan,item)
end
end
def fetchRSS(whichChan, url, title)
begin
# Use 60 sec timeout, cause the default is too low
xml = @bot.httputil.get_cached(url,60,60)
rescue URI::InvalidURIError, URI::BadURIError => e
@bot.say whichChan, "invalid rss feed #{url}"
return
end
debug 'fetched'
unless xml
@bot.say whichChan, "reading feed #{url} failed"
return
end
begin
## do validate parse
rss = RSS::Parser.parse(xml)
debug 'parsed'
rescue RSS::InvalidRSSError
## do non validate parse for invalid RSS 1.0
begin
rss = RSS::Parser.parse(xml, false)
rescue RSS::Error
@bot.say whichChan, "parsing rss stream failed, whoops =("
return
end
rescue RSS::Error
@bot.say whichChan, "parsing rss stream failed, oioi"
return
rescue => e
@bot.say whichChan, "processing error occured, sorry =("
debug e.inspect
debug e.backtrace.join("\n")
return
end
items = []
if rss.nil?
@bot.say whichChan, "#{m.params} does not include RSS 1.0 or 0.9x/2.0"
else
begin
rss.output_encoding = "euc-jp"
rescue RSS::UnknownConvertMethod
@bot.say whichChan, "bah! something went wrong =("
return
end
rss.channel.title ||= "Unknown"
title.replace(rss.channel.title)
rss.items.each do |item|
item.title ||= "Unknown"
items << item
end
end
if items.empty?
@bot.say whichChan, "no items found in the feed, maybe try weed?"
return
end
return items
end
end
plugin = RSSFeedsPlugin.new
plugin.register("rss")
plugin.register("addrss")
plugin.register("rmrss")
plugin.register("listrss")
plugin.register("rewatch")
plugin.register("watchrss")
plugin.register("listwatches")
plugin.register("rmwatch")
|