]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/rss.rb
rss plugin: provide htmlinfo filter
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / rss.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: RSS feed plugin for rbot
5 #
6 # Author:: Stanislav Karchebny <berkus@madfire.net>
7 # Author:: Ian Monroe <ian@monroe.nu>
8 # Author:: Mark Kretschmann <markey@web.de>
9 # Author:: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
10 #
11 # Copyright:: (C) 2004 Stanislav Karchebny
12 # Copyright:: (C) 2005 Ian Monroe, Mark Kretschmann
13 # Copyright:: (C) 2006-2007 Giuseppe Bilotta
14 #
15 # License:: MIT license
16
17 require 'rss'
18
19 # Try to load rss/content/2.0 so we can access the data in <content:encoded> 
20 # tags.
21 begin
22   require 'rss/content/2.0'
23 rescue LoadError
24 end
25
26 module ::RSS
27
28   # Make an  'unique' ID for a given item, based on appropriate bot options
29   # Currently only suppored is bot.config['rss.show_updated']: when true, the
30   # description is included in the uid hashing, otherwise it's not
31   #
32   def RSS.item_uid_for_bot(item, opts={})
33     options = { :show_updated => true}.merge(opts)
34     desc = nil
35     if options[:show_updated]
36       desc = item.content.content rescue item.description rescue nil
37     end
38     [(item.title.content rescue item.title rescue nil),
39      (item.link.href rescue item.link),
40      desc].hash
41   end
42
43   # Add support for Slashdot namespace in RDF. The code is just an adaptation
44   # of the DublinCore code.
45   unless defined?(SLASH_PREFIX)
46     SLASH_PREFIX = 'slash'
47     SLASH_URI = "http://purl.org/rss/1.0/modules/slash/"
48
49     RDF.install_ns(SLASH_PREFIX, SLASH_URI)
50
51     module BaseSlashModel
52       def append_features(klass)
53         super
54
55         return if klass.instance_of?(Module)
56         SlashModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
57           plural = plural_name || "#{name}s"
58           full_name = "#{SLASH_PREFIX}_#{name}"
59           full_plural_name = "#{SLASH_PREFIX}_#{plural}"
60           klass_name = "Slash#{Utils.to_class_name(name)}"
61
62           # This will fail with older version of the Ruby RSS module
63           begin
64             klass.install_have_children_element(name, SLASH_URI, "*",
65                                                 full_name, full_plural_name)
66             klass.install_must_call_validator(SLASH_PREFIX, SLASH_URI)
67           rescue ArgumentError
68             klass.module_eval("install_have_children_element(#{full_name.dump}, #{full_plural_name.dump})")
69           end
70
71           klass.module_eval(<<-EOC, *get_file_and_line_from_caller(0))
72           remove_method :#{full_name}     if method_defined? :#{full_name}
73           remove_method :#{full_name}=    if method_defined? :#{full_name}=
74           remove_method :set_#{full_name} if method_defined? :set_#{full_name}
75
76           def #{full_name}
77             @#{full_name}.first and @#{full_name}.first.value
78           end
79
80           def #{full_name}=(new_value)
81             @#{full_name}[0] = Utils.new_with_value_if_need(#{klass_name}, new_value)
82           end
83           alias set_#{full_name} #{full_name}=
84         EOC
85         end
86       end
87     end
88
89     module SlashModel
90       extend BaseModel
91       extend BaseSlashModel
92
93       TEXT_ELEMENTS = {
94       "department" => nil,
95       "section" => nil,
96       "comments" =>  nil,
97       "hit_parade" => nil
98       }
99
100       ELEMENT_NAME_INFOS = SlashModel::TEXT_ELEMENTS.to_a
101
102       ELEMENTS = TEXT_ELEMENTS.keys
103
104       ELEMENTS.each do |name, plural_name|
105         module_eval(<<-EOC, *get_file_and_line_from_caller(0))
106         class Slash#{Utils.to_class_name(name)} < Element
107           include RSS10
108
109           content_setup
110
111           class << self
112             def required_prefix
113               SLASH_PREFIX
114             end
115
116             def required_uri
117               SLASH_URI
118             end
119           end
120
121           @tag_name = #{name.dump}
122
123           alias_method(:value, :content)
124           alias_method(:value=, :content=)
125
126           def initialize(*args)
127             begin
128               if Utils.element_initialize_arguments?(args)
129                 super
130               else
131                 super()
132                 self.content = args[0]
133               end
134             # Older Ruby RSS module
135             rescue NoMethodError
136               super()
137               self.content = args[0]
138             end
139           end
140
141           def full_name
142             tag_name_with_prefix(SLASH_PREFIX)
143           end
144
145           def maker_target(target)
146             target.new_#{name}
147           end
148
149           def setup_maker_attributes(#{name})
150             #{name}.content = content
151           end
152         end
153       EOC
154       end
155     end
156
157     class RDF
158       class Item; include SlashModel; end
159     end
160
161     SlashModel::ELEMENTS.each do |name|
162       class_name = Utils.to_class_name(name)
163       BaseListener.install_class_name(SLASH_URI, name, "Slash#{class_name}")
164     end
165
166     SlashModel::ELEMENTS.collect! {|name| "#{SLASH_PREFIX}_#{name}"}
167   end
168 end
169
170
171 class ::RssBlob
172   attr_accessor :url, :handle, :type, :refresh_rate, :xml, :title, :items,
173     :mutex, :watchers, :last_fetched
174
175   def initialize(url,handle=nil,type=nil,watchers=[], xml=nil, lf = nil)
176     @url = url
177     if handle
178       @handle = handle
179     else
180       @handle = url
181     end
182     @type = type
183     @watchers=[]
184     @refresh_rate = nil
185     @xml = xml
186     @title = nil
187     @items = nil
188     @mutex = Mutex.new
189     @last_fetched = lf
190     sanitize_watchers(watchers)
191   end
192
193   def dup
194     @mutex.synchronize do
195       self.class.new(@url,
196                      @handle,
197                      @type ? @type.dup : nil,
198                      @watchers.dup,
199                      @xml ? @xml.dup : nil,
200                      @last_fetched)
201     end
202   end
203
204   # Downcase all watchers, possibly turning them into Strings if they weren't
205   def sanitize_watchers(list=@watchers)
206     ls = list.dup
207     @watchers.clear
208     ls.each { |w|
209       add_watch(w)
210     }
211   end
212
213   def watched?
214     !@watchers.empty?
215   end
216
217   def watched_by?(who)
218     @watchers.include?(who.downcase)
219   end
220
221   def add_watch(who)
222     if watched_by?(who)
223       return nil
224     end
225     @mutex.synchronize do
226       @watchers << who.downcase
227     end
228     return who
229   end
230
231   def rm_watch(who)
232     @mutex.synchronize do
233       @watchers.delete(who.downcase)
234     end
235   end
236
237   def to_a
238     [@handle,@url,@type,@refresh_rate,@watchers]
239   end
240
241   def to_s(watchers=false)
242     if watchers
243       a = self.to_a.flatten
244     else
245       a = self.to_a[0,3]
246     end
247     a.compact.join(" | ")
248   end
249 end
250
251 class RSSFeedsPlugin < Plugin
252   Config.register Config::IntegerValue.new('rss.head_max',
253     :default => 100, :validate => Proc.new{|v| v > 0 && v < 200},
254     :desc => "How many characters to use of a RSS item header")
255
256   Config.register Config::IntegerValue.new('rss.text_max',
257     :default => 200, :validate => Proc.new{|v| v > 0 && v < 400},
258     :desc => "How many characters to use of a RSS item text")
259
260   Config.register Config::IntegerValue.new('rss.thread_sleep',
261     :default => 300, :validate => Proc.new{|v| v > 30},
262     :desc => "How many seconds to sleep before checking RSS feeds again")
263
264   Config.register Config::BooleanValue.new('rss.show_updated',
265     :default => true,
266     :desc => "Whether feed items for which the description was changed should be shown as new")
267
268   Config.register Config::BooleanValue.new('rss.show_links',
269     :default => true,
270     :desc => "Whether to display links from the text of a feed item.")
271
272   # We used to save the Mutex with the RssBlob, which was idiotic. And
273   # since Mutexes dumped in one version might not be resotrable in another,
274   # we need a few tricks to be able to restore data from other versions of Ruby
275   #
276   # When migrating 1.8.6 => 1.8.5, all we need to do is define an empty
277   # #marshal_load() method for Mutex. For 1.8.5 => 1.8.6 we need something
278   # dirtier, as seen later on in the initialization code.
279   unless Mutex.new.respond_to?(:marshal_load)
280     class ::Mutex
281       def marshal_load(str)
282         return
283       end
284     end
285   end
286
287   # Auxiliary method used to collect two lines for rss output filters,
288   # running substitutions against DataStream _s_ optionally joined
289   # with hash _h_
290   def make_stream(line1, line2, s, h={})
291     ss = s.merge(h)
292     DataStream.new([line1, line2].compact.join("\n") % ss, ss)
293   end
294
295   # Define default RSS filters
296   #
297   # TODO: load personal ones
298   def define_filters
299     @outkey = :"rss.out"
300     @bot.register_filter(:blog, @outkey) { |s|
301       author = s[:author] ? (s[:author] + " ") : ""
302       abt = s[:category] ? "about #{s[:category]} " : ""
303       line1 = "%{handle}%{date}%{author}blogged %{abt}at %{link}"
304       line2 = "%{handle}%{title} - %{desc}"
305       make_stream(line1, line2, s, :author => author, :abt => abt)
306     }
307     @bot.register_filter(:photoblog, @outkey) { |s|
308       author = s[:author] ? (s[:author] + " ") : ""
309       abt = s[:category] ? "under #{s[:category]} " : ""
310       line1 = "%{handle}%{date}%{author}added an image %{abt}at %{link}"
311       line2 = "%{handle}%{title} - %{desc}"
312       make_stream(line1, line2, s, :author => author, :abt => abt)
313     }
314     @bot.register_filter(:news, @outkey) { |s|
315       line1 = "%{handle}%{date}%{title} @ %{link}" % s
316       line2 = "%{handle}%{date}%{desc}" % s
317       make_stream(line1, line2, s)
318     }
319     @bot.register_filter(:git, @outkey) { |s|
320       author = s[:author] ? (s[:author] + " ") : ""
321       line1 = "%{handle}%{date}%{author}committed %{title} @ %{link}"
322       make_stream(line1, nil, s, :author => author)
323     }
324     @bot.register_filter(:forum, @outkey) { |s|
325       line1 = "%{handle}%{date}%{title}%{at}%{link}"
326       make_stream(line1, nil, s)
327     }
328     @bot.register_filter(:wiki, @outkey) { |s|
329       line1 = "%{handle}%{date}%{title}%{at}%{link}"
330       line1 << "has been edited by %{author}. %{desc}"
331       make_stream(line1, nil, s)
332     }
333     @bot.register_filter(:gmane, @outkey) { |s|
334       line1 = "%{handle}%{date}Message %{title} sent by %{author}. %{desc}"
335       make_stream(line1, nil, s)
336     }
337     @bot.register_filter(:trac, @outkey) { |s|
338       author = s[:author].sub(/@\S+?\s*>/, "@...>") + ": " if s[:author]
339       line1 = "%{handle}%{date}%{author}%{title} @ %{link}"
340       line2 = nil
341       unless s[:item].title =~ /^(?:Changeset \[(?:[\da-f]+)\]|\(git commit\))/
342         line2 = "%{handle}%{date}%{desc}"
343       end
344       make_stream(line1, line2, s, :author => author)
345     }
346     @bot.register_filter(:"/.", @outkey) { |s|
347       dept = "(from the #{s[:item].slash_department} dept) " rescue nil
348       sec = " in section #{s[:item].slash_section}" rescue nil
349       line1 = "%{handle}%{date}%{dept}%{title}%{at}%{link} "
350       line1 << "(posted by %{author}%{sec})"
351       make_stream(line1, nil, s, :dept => dept, :sec => sec)
352     }
353     @bot.register_filter(:default, @outkey) { |s|
354       line1 = "%{handle}%{date}%{title}%{at}%{link}"
355       line1 << " (by %{author})" if s[:author]
356       make_stream(line1, nil, s)
357     }
358
359     # Define an HTML info filter too
360     @bot.register_filter(:rss, :htmlinfo) { |s| htmlinfo_filter(s) }
361
362     # This is the output format used by the input filter
363     @bot.register_filter(:htmlinfo, @outkey) { |s|
364       line1 = "%{title}%{at}%{link}"
365       make_stream(line1, nil, s)
366     }
367   end
368
369   def htmlinfo_filter(s)
370     return nil unless s[:headers] and s[:headers]['x-rbot-location']
371     blob = RssBlob.new(s[:headers]['x-rbot-location'],"", :htmlinfo)
372     return nil unless fetchRss(blob, nil)
373     return nil unless parseRss(blob, nil)
374     output = []
375     blob.items.each { |it|
376       output << printFormattedRss(blob, it)[:text]
377     }
378     return {:title => blob.title, :content => output.join(" | ")}
379   end
380
381   # Display the known rss types
382   def rss_types(m, params)
383     ar = @bot.filter_names(@outkey)
384     ar.delete(:default)
385     m.reply ar.map { |k| k.to_s }.sort!.join(", ")
386   end
387
388   attr_reader :feeds
389
390   def initialize
391     super
392
393     define_filters
394
395     if @registry.has_key?(:feeds)
396       # When migrating from Ruby 1.8.5 to 1.8.6, dumped Mutexes may render the
397       # data unrestorable. If this happens, we patch the data, thus allowing
398       # the restore to work.
399       #
400       # This is actually pretty safe for a number of reasons:
401       # * the code is only called if standard marshalling fails
402       # * the string we look for is quite unlikely to appear randomly
403       # * if the string appears somewhere and the patched string isn't recoverable
404       #   either, we'll get another (unrecoverable) error, which makes the rss
405       #   plugin unsable, just like it was if no recovery was attempted
406       # * if the string appears somewhere and the patched string is recoverable,
407       #   we may get a b0rked feed, which is eventually overwritten by a clean
408       #   one, so the worst thing that can happen is that a feed update spams
409       #   the watchers once
410       @registry.recovery = Proc.new { |val|
411         patched = val.sub(":\v@mutexo:\nMutex", ":\v@mutexo:\vObject")
412         ret = Marshal.restore(patched)
413         ret.each_value { |blob|
414           blob.mutex = nil
415           blob
416         }
417       }
418
419       @feeds = @registry[:feeds]
420       raise unless @feeds
421
422       @registry.recovery = nil
423
424       @feeds.keys.grep(/[A-Z]/) { |k|
425         @feeds[k.downcase] = @feeds[k]
426         @feeds.delete(k)
427       }
428       @feeds.each { |k, f|
429         f.mutex = Mutex.new
430         f.sanitize_watchers
431         parseRss(f) if f.xml
432       }
433     else
434       @feeds = Hash.new
435     end
436     @watch = Hash.new
437     rewatch_rss
438   end
439
440   def name
441     "rss"
442   end
443
444   def watchlist
445     @feeds.select { |h, f| f.watched? }
446   end
447
448   def cleanup
449     stop_watches
450     super
451   end
452
453   def save
454     unparsed = Hash.new()
455     @feeds.each { |k, f|
456       unparsed[k] = f.dup
457       # we don't want to save the mutex
458       unparsed[k].mutex = nil
459     }
460     @registry[:feeds] = unparsed
461   end
462
463   def stop_watch(handle)
464     if @watch.has_key?(handle)
465       begin
466         debug "Stopping watch #{handle}"
467         @bot.timer.remove(@watch[handle])
468         @watch.delete(handle)
469       rescue Exception => e
470         report_problem("Failed to stop watch for #{handle}", e, nil)
471       end
472     end
473   end
474
475   def stop_watches
476     @watch.each_key { |k|
477       stop_watch(k)
478     }
479   end
480
481   def help(plugin,topic="")
482     case topic
483     when "show"
484       "rss show #{Bold}handle#{Bold} [#{Bold}limit#{Bold}] : show #{Bold}limit#{Bold} (default: 5, max: 15) entries from rss #{Bold}handle#{Bold}; #{Bold}limit#{Bold} can also be in the form a..b, to display a specific range of items"
485     when "list"
486       "rss list [#{Bold}handle#{Bold}] : list all rss feeds (matching #{Bold}handle#{Bold})"
487     when "watched"
488       "rss watched [#{Bold}handle#{Bold}] [in #{Bold}chan#{Bold}]: list all watched rss feeds (matching #{Bold}handle#{Bold}) (in channel #{Bold}chan#{Bold})"
489     when "who", "watches", "who watches"
490       "rss who watches [#{Bold}handle#{Bold}]]: list all watchers for rss feeds (matching #{Bold}handle#{Bold})"
491     when "add"
492       "rss add #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : add a new rss called #{Bold}handle#{Bold} from url #{Bold}url#{Bold} (of type #{Bold}type#{Bold})"
493     when "change"
494       "rss change #{Bold}what#{Bold} of #{Bold}handle#{Bold} to #{Bold}new#{Bold} : change the #{Underline}handle#{Underline}, #{Underline}url#{Underline}, #{Underline}type#{Underline} or #{Underline}refresh#{Underline} rate of rss called #{Bold}handle#{Bold} to value #{Bold}new#{Bold}"
495     when /^(del(ete)?|rm)$/
496       "rss del(ete)|rm #{Bold}handle#{Bold} : delete rss feed #{Bold}handle#{Bold}"
497     when "replace"
498       "rss replace #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : try to replace the url of rss called #{Bold}handle#{Bold} with #{Bold}url#{Bold} (of type #{Bold}type#{Bold}); only works if nobody else is watching it"
499     when "forcereplace"
500       "rss forcereplace #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : replace the url of rss called #{Bold}handle#{Bold} with #{Bold}url#{Bold} (of type #{Bold}type#{Bold})"
501     when "watch"
502       "rss watch #{Bold}handle#{Bold} [#{Bold}url#{Bold} [#{Bold}type#{Bold}]]  [in #{Bold}chan#{Bold}]: watch rss #{Bold}handle#{Bold} for changes (in channel #{Bold}chan#{Bold}); when the other parameters are present, the feed will be created if it doesn't exist yet"
503     when /(un|rm)watch/
504       "rss unwatch|rmwatch #{Bold}handle#{Bold} [in #{Bold}chan#{Bold}]: stop watching rss #{Bold}handle#{Bold} (in channel #{Bold}chan#{Bold}) for changes"
505     when  /who(?: watche?s?)?/
506       "rss who watches #{Bold}handle#{Bold}: lists watches for rss #{Bold}handle#{Bold}"
507     when "rewatch"
508       "rss rewatch : restart threads that watch for changes in watched rss"
509     when "types"
510       "rss types : show the rss types for which an output format existi (all other types will use the default one)"
511     else
512       "manage RSS feeds: rss types|show|list|watched|add|change|del(ete)|rm|(force)replace|watch|unwatch|rmwatch|rewatch|who watches"
513     end
514   end
515
516   def report_problem(report, e=nil, m=nil)
517     if m && m.respond_to?(:reply)
518       m.reply report
519     else
520       warning report
521     end
522     if e
523       debug e.inspect
524       debug e.backtrace.join("\n") if e.respond_to?(:backtrace)
525     end
526   end
527
528   def show_rss(m, params)
529     handle = params[:handle]
530     lims = params[:limit].to_s.match(/(\d+)(?:..(\d+))?/)
531     debug lims.to_a.inspect
532     if lims[2]
533       ll = [[lims[1].to_i-1,lims[2].to_i-1].min,  0].max
534       ul = [[lims[1].to_i-1,lims[2].to_i-1].max, 14].min
535       rev = lims[1].to_i > lims[2].to_i
536     else
537       ll = 0
538       ul = [[lims[1].to_i-1, 0].max, 14].min
539       rev = false
540     end
541
542     feed = @feeds.fetch(handle.downcase, nil)
543     unless feed
544       m.reply "I don't know any feeds named #{handle}"
545       return
546     end
547
548     m.reply "lemme fetch it..."
549     title = items = nil
550     we_were_watching = false
551
552     if @watch.key?(feed.handle)
553       # If a feed is being watched, we run the watcher thread
554       # so that all watchers can be informed of changes to
555       # the feed. Before we do that, though, we remove the
556       # show requester from the watchlist, if present, lest
557       # he gets the update twice.
558       if feed.watched_by?(m.replyto)
559         we_were_watching = true
560         feed.rm_watch(m.replyto)
561       end
562       @bot.timer.reschedule(@watch[feed.handle], 0)
563       if we_were_watching
564         feed.add_watch(m.replyto)
565       end
566     else
567       fetched = fetchRss(feed, m, false)
568     end
569     return unless fetched or feed.xml
570     if not fetched and feed.items
571       m.reply "using old data"
572     else
573       parsed = parseRss(feed, m)
574       m.reply "using old data" unless parsed
575     end
576     return unless feed.items
577     title = feed.title
578     items = feed.items
579
580     # We sort the feeds in freshness order (newer ones first)
581     items = freshness_sort(items)
582     disp = items[ll..ul]
583     disp.reverse! if rev
584
585     m.reply "Channel : #{title}"
586     disp.each do |item|
587       printFormattedRss(feed, item, {:places=>[m.replyto],:handle=>nil,:date=>true})
588     end
589   end
590
591   def itemDate(item,ex=nil)
592     return item.pubDate if item.respond_to?(:pubDate) and item.pubDate
593     return item.date if item.respond_to?(:date) and item.date
594     return ex
595   end
596
597   def freshness_sort(items)
598     notime = Time.at(0)
599     items.sort { |a, b|
600       itemDate(b, notime) <=> itemDate(a, notime)
601     }
602   end
603
604   def list_rss(m, params)
605     wanted = params[:handle]
606     reply = String.new
607     @feeds.each { |handle, feed|
608       next if wanted and !handle.match(/#{wanted}/i)
609       reply << "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
610       (reply << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
611       (reply << " (watched)") if feed.watched_by?(m.replyto)
612       reply << "\n"
613     }
614     if reply.empty?
615       reply = "no feeds found"
616       reply << " matching #{wanted}" if wanted
617     end
618     m.reply reply, :max_lines => reply.length
619   end
620
621   def watched_rss(m, params)
622     wanted = params[:handle]
623     chan = params[:chan] || m.replyto
624     reply = String.new
625     watchlist.each { |handle, feed|
626       next if wanted and !handle.match(/#{wanted}/i)
627       next unless feed.watched_by?(chan)
628       reply << "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
629       (reply << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
630       reply << "\n"
631     }
632     if reply.empty?
633       reply = "no watched feeds"
634       reply << " matching #{wanted}" if wanted
635     end
636     m.reply reply
637   end
638
639   def who_watches(m, params)
640     wanted = params[:handle]
641     reply = String.new
642     watchlist.each { |handle, feed|
643       next if wanted and !handle.match(/#{wanted}/i)
644       reply << "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
645       (reply << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
646       reply << ": watched by #{feed.watchers.join(', ')}"
647       reply << "\n"
648     }
649     if reply.empty?
650       reply = "no watched feeds"
651       reply << " matching #{wanted}" if wanted
652     end
653     m.reply reply
654   end
655
656   def add_rss(m, params, force=false)
657     handle = params[:handle]
658     url = params[:url]
659     unless url.match(/https?/)
660       m.reply "I only deal with feeds from HTTP sources, so I can't use #{url} (maybe you forgot the handle?)"
661       return
662     end
663     type = params[:type]
664     if @feeds.fetch(handle.downcase, nil) && !force
665       m.reply "There is already a feed named #{handle} (URL: #{@feeds[handle.downcase].url})"
666       return
667     end
668     unless url
669       m.reply "You must specify both a handle and an url to add an RSS feed"
670       return
671     end
672     @feeds[handle.downcase] = RssBlob.new(url,handle,type)
673     reply = "Added RSS #{url} named #{handle}"
674     if type
675       reply << " (format: #{type})"
676     end
677     m.reply reply
678     return handle
679   end
680
681   def change_rss(m, params)
682     handle = params[:handle].downcase
683     feed = @feeds.fetch(handle, nil)
684     unless feed
685       m.reply "No such feed with handle #{handle}"
686       return
687     end
688     case params[:what].intern
689     when :handle
690       new = params[:new].downcase
691       if @feeds.key?(new) and @feeds[new]
692         m.reply "There already is a feed with handle #{new}"
693         return
694       else
695         feed.mutex.synchronize do
696           @feeds[new] = feed
697           @feeds.delete(handle)
698           feed.handle = new
699         end
700         handle = new
701       end
702     when :url
703       new = params[:new]
704       feed.mutex.synchronize do
705         feed.url = new
706       end
707     when :format, :type
708       new = params[:new]
709       new = nil if new == 'default'
710       feed.mutex.synchronize do
711         feed.type = new
712       end
713     when :refresh
714       new = params[:new].to_i
715       new = nil if new == 0
716       feed.mutex.synchronize do
717         feed.refresh_rate = new
718       end
719     else
720       m.reply "Don't know how to change #{params[:what]} for feeds"
721       return
722     end
723     m.reply "Feed changed:"
724     list_rss(m, {:handle => handle})
725   end
726
727   def del_rss(m, params, pass=false)
728     feed = unwatch_rss(m, params, true)
729     return unless feed
730     if feed.watched?
731       m.reply "someone else is watching #{feed.handle}, I won't remove it from my list"
732       return
733     end
734     @feeds.delete(feed.handle.downcase)
735     m.okay unless pass
736     return
737   end
738
739   def replace_rss(m, params)
740     handle = params[:handle]
741     if @feeds.key?(handle.downcase)
742       del_rss(m, {:handle => handle}, true)
743     end
744     if @feeds.key?(handle.downcase)
745       m.reply "can't replace #{feed.handle}"
746     else
747       add_rss(m, params, true)
748     end
749   end
750
751   def forcereplace_rss(m, params)
752     add_rss(m, params, true)
753   end
754
755   def watch_rss(m, params)
756     handle = params[:handle]
757     chan = params[:chan] || m.replyto
758     url = params[:url]
759     type = params[:type]
760     if url
761       add_rss(m, params)
762     end
763     feed = @feeds.fetch(handle.downcase, nil)
764     if feed
765       if feed.add_watch(chan)
766         watchRss(feed, m)
767         m.okay
768       else
769         m.reply "Already watching #{feed.handle} in #{chan}"
770       end
771     else
772       m.reply "Couldn't watch feed #{handle} (no such feed found)"
773     end
774   end
775
776   def unwatch_rss(m, params, pass=false)
777     handle = params[:handle].downcase
778     chan = params[:chan] || m.replyto
779     unless @feeds.has_key?(handle)
780       m.reply("dunno that feed")
781       return
782     end
783     feed = @feeds[handle]
784     if feed.rm_watch(chan)
785       m.reply "#{chan} has been removed from the watchlist for #{feed.handle}"
786     else
787       m.reply("#{chan} wasn't watching #{feed.handle}") unless pass
788     end
789     if !feed.watched?
790       stop_watch(handle)
791     end
792     return feed
793   end
794
795   def rewatch_rss(m=nil, params=nil)
796     if params and handle = params[:handle]
797       feed = @feeds.fetch(handle.downcase, nil)
798       if feed
799         @bot.timer.reschedule(@watch[feed.handle], 0)
800         m.okay if m
801       else
802         m.reply _("no such feed %{handle}") % { :handle => handle } if m
803       end
804     else
805       stop_watches
806
807       # Read watches from list.
808       watchlist.each{ |handle, feed|
809         watchRss(feed, m)
810       }
811       m.okay if m
812     end
813   end
814
815   private
816   def watchRss(feed, m=nil)
817     if @watch.has_key?(feed.handle)
818       report_problem("watcher thread for #{feed.handle} is already running", nil, m)
819       return
820     end
821     status = Hash.new
822     status[:failures] = 0
823     tmout = 0
824     if feed.last_fetched
825       tmout = feed.last_fetched + calculate_timeout(feed) - Time.now
826       tmout = 0 if tmout < 0
827     end
828     debug "scheduling a watcher for #{feed} in #{tmout} seconds"
829     @watch[feed.handle] = @bot.timer.add(tmout) {
830       debug "watcher for #{feed} wakes up"
831       failures = status[:failures]
832       begin
833         debug "fetching #{feed}"
834         first_run = !feed.last_fetched
835         oldxml = feed.xml ? feed.xml.dup : nil
836         unless fetchRss(feed)
837           failures += 1
838         else
839           if first_run
840             debug "first run for #{feed}, getting items"
841             parseRss(feed)
842           elsif oldxml and oldxml == feed.xml
843             debug "xml for #{feed} didn't change"
844             failures -= 1 if failures > 0
845           else
846             if not feed.items
847               debug "no previous items in feed #{feed}"
848               parseRss(feed)
849               failures -= 1 if failures > 0
850             else
851               # This one is used for debugging
852               otxt = []
853
854               # These are used for checking new items vs old ones
855               uid_opts = { :show_updated => @bot.config['rss.show_updated'] }
856               oids = Set.new feed.items.map { |item|
857                 uid = RSS.item_uid_for_bot(item, uid_opts)
858                 otxt << item.to_s
859                 debug [uid, item].inspect
860                 debug [uid, otxt.last].inspect
861                 uid
862               }
863
864               unless parseRss(feed)
865                 debug "no items in feed #{feed}"
866                 failures += 1
867               else
868                 debug "Checking if new items are available for #{feed}"
869                 failures -= 1 if failures > 0
870                 # debug "Old:"
871                 # debug oldxml
872                 # debug "New:"
873                 # debug feed.xml
874
875                 dispItems = feed.items.reject { |item|
876                   uid = RSS.item_uid_for_bot(item, uid_opts)
877                   txt = item.to_s
878                   if oids.include?(uid)
879                     debug "rejecting old #{uid} #{item.inspect}"
880                     debug [uid, txt].inspect
881                     true
882                   else
883                     debug "accepting new #{uid} #{item.inspect}"
884                     debug [uid, txt].inspect
885                     warning "same text! #{txt}" if otxt.include?(txt)
886                     false
887                   end
888                 }
889
890                 if dispItems.length > 0
891                   debug "Found #{dispItems.length} new items in #{feed}"
892                   # When displaying watched feeds, publish them from older to newer
893                   dispItems.reverse.each { |item|
894                     printFormattedRss(feed, item)
895                   }
896                 else
897                   debug "No new items found in #{feed}"
898                 end
899               end
900             end
901           end
902         end
903       rescue Exception => e
904         error "Error watching #{feed}: #{e.inspect}"
905         debug e.backtrace.join("\n")
906         failures += 1
907       end
908
909       status[:failures] = failures
910
911       seconds = calculate_timeout(feed, failures)
912       debug "watcher for #{feed} going to sleep #{seconds} seconds.."
913       begin
914         @bot.timer.reschedule(@watch[feed.handle], seconds)
915       rescue
916         warning "watcher for #{feed} failed to reschedule: #{$!.inspect}"
917       end
918     }
919     debug "watcher for #{feed} added"
920   end
921
922   def calculate_timeout(feed, failures = 0)
923       seconds = @bot.config['rss.thread_sleep']
924       feed.mutex.synchronize do
925         seconds = feed.refresh_rate if feed.refresh_rate
926       end
927       seconds *= failures + 1
928       seconds += seconds * (rand(100)-50)/100
929       return seconds
930   end
931
932   def select_nonempty(*ar)
933     debug ar
934     ret = ar.map { |i| (i && i.empty?) ? nil : i }.compact.first
935     (ret && ret.empty?) ? nil : ret
936   end
937
938   def printFormattedRss(feed, item, opts=nil)
939     debug item
940     places = feed.watchers
941     handle = feed.handle.empty? ? "" : "::#{feed.handle}:: "
942     date = String.new
943     if opts
944       places = opts[:places] if opts.key?(:places)
945       handle = opts[:handle].to_s if opts.key?(:handle)
946       if opts.key?(:date) && opts[:date]
947         if item.respond_to?(:updated)
948           if item.updated.content.class <= Time
949             date = item.updated.content.strftime("%Y/%m/%d %H:%M")
950           else
951             date = item.updated.content.to_s
952           end
953         elsif item.respond_to?(:source) and item.source.respond_to?(:updated)
954           if item.source.updated.content.class <= Time
955             date = item.source.updated.content.strftime("%Y/%m/%d %H:%M")
956           else
957             date = item.source.updated.content.to_s
958           end
959         elsif item.respond_to?(:pubDate) 
960           if item.pubDate.class <= Time
961             date = item.pubDate.strftime("%Y/%m/%d %H:%M")
962           else
963             date = item.pubDate.to_s
964           end
965         elsif item.respond_to?(:date)
966           if item.date.class <= Time
967             date = item.date.strftime("%Y/%m/%d %H:%M")
968           else
969             date = item.date.to_s
970           end
971         else
972           date = "(no date)"
973         end
974         date += " :: "
975       end
976     end
977
978     tit_opt = {}
979     # Twitters don't need a cap on the title length since they have a hard
980     # limit to 160 characters, and most of them are under 140 characters
981     tit_opt[:limit] = @bot.config['rss.head_max'] unless feed.type == 'twitter'
982
983     if item.title
984       base_title = item.title.to_s.dup
985       # git changesets are SHA1 hashes (40 hex digits), way too long, get rid of them, as they are
986       # visible in the URL anyway
987       # TODO make this optional?
988       base_title.sub!(/^Changeset \[([\da-f]{40})\]:/) { |c| "(git commit)"} if feed.type == 'trac'
989       title = "#{Bold}#{base_title.ircify_html(tit_opt)}#{Bold}"
990     end
991
992     desc_opt = {}
993     desc_opt[:limit] = @bot.config['rss.text_max']
994     desc_opt[:a_href] = :link_out if @bot.config['rss.show_links']
995
996     # We prefer content_encoded here as it tends to provide more html formatting 
997     # for use with ircify_html.
998     if item.respond_to?(:content_encoded) && item.content_encoded
999       desc = item.content_encoded.ircify_html(desc_opt)
1000     elsif item.respond_to?(:description) && item.description
1001       desc = item.description.ircify_html(desc_opt)
1002     elsif item.respond_to?(:content) && item.content
1003       if item.content.type == "html"
1004         desc = item.content.content.ircify_html(desc_opt)
1005       else
1006         desc = item.content.content
1007         if desc.size > desc_opt[:limit]
1008           desc = desc.slice(0, desc_opt[:limit]) + "#{Reverse}...#{Reverse}"
1009         end
1010       end
1011     else
1012       desc = "(?)"
1013     end
1014
1015     link = item.link.href rescue item.link.chomp rescue nil
1016
1017     category = select_nonempty((item.category.content rescue nil), (item.dc_subject rescue nil))
1018     author = select_nonempty((item.author.name.content rescue nil), (item.dc_creator rescue nil), (item.author rescue nil))
1019
1020     line1 = nil
1021     line2 = nil
1022
1023     at = ((item.title && item.link) ? ' @ ' : '')
1024
1025     key = @bot.global_filter_name(feed.type, @outkey)
1026     key = @bot.global_filter_name(:default, @outkey) unless @bot.has_filter?(key)
1027
1028     output = @bot.filter(key, :item => item, :handle => handle, :date => date,
1029                          :title => title, :desc => desc, :link => link,
1030                          :category => category, :author => author, :at => at)
1031
1032     return output if places.empty?
1033
1034     places.each { |loc|
1035       output.to_s.each_line { |line|
1036         @bot.say loc, line, :overlong => :truncate
1037       }
1038     }
1039   end
1040
1041   def fetchRss(feed, m=nil, cache=true)
1042     feed.last_fetched = Time.now
1043     begin
1044       # Use 60 sec timeout, cause the default is too low
1045       xml = @bot.httputil.get(feed.url,
1046                               :read_timeout => 60,
1047                               :open_timeout => 60,
1048                               :cache => cache)
1049     rescue URI::InvalidURIError, URI::BadURIError => e
1050       report_problem("invalid rss feed #{feed.url}", e, m)
1051       return nil
1052     rescue => e
1053       report_problem("error getting #{feed.url}", e, m)
1054       return nil
1055     end
1056     debug "fetched #{feed}"
1057     unless xml
1058       report_problem("reading feed #{feed} failed", nil, m)
1059       return nil
1060     end
1061     # Ok, 0.9 feeds are not supported, maybe because
1062     # Netscape happily removed the DTD. So what we do is just to
1063     # reassign the 0.9 RDFs to 1.0, and hope it goes right.
1064     xml.gsub!("xmlns=\"http://my.netscape.com/rdf/simple/0.9/\"",
1065               "xmlns=\"http://purl.org/rss/1.0/\"")
1066     feed.mutex.synchronize do
1067       feed.xml = xml
1068     end
1069     return true
1070   end
1071
1072   def parseRss(feed, m=nil)
1073     return nil unless feed.xml
1074     feed.mutex.synchronize do
1075       xml = feed.xml
1076       begin
1077         ## do validate parse
1078         rss = RSS::Parser.parse(xml)
1079         debug "parsed and validated #{feed}"
1080       rescue RSS::InvalidRSSError
1081         ## do non validate parse for invalid RSS 1.0
1082         begin
1083           rss = RSS::Parser.parse(xml, false)
1084           debug "parsed but not validated #{feed}"
1085         rescue RSS::Error => e
1086           report_problem("parsing rss stream failed, whoops =(", e, m)
1087           return nil
1088         end
1089       rescue RSS::Error => e
1090         report_problem("parsing rss stream failed, oioi", e, m)
1091         return nil
1092       rescue => e
1093         report_problem("processing error occured, sorry =(", e, m)
1094         return nil
1095       end
1096       items = []
1097       if rss.nil?
1098         report_problem("#{feed} does not include RSS 1.0 or 0.9x/2.0", nil, m)
1099       else
1100         begin
1101           rss.output_encoding = 'UTF-8'
1102         rescue RSS::UnknownConvertMethod => e
1103           report_problem("bah! something went wrong =(", e, m)
1104           return nil
1105         end
1106         if rss.respond_to? :channel
1107           rss.channel.title ||= "(?)"
1108           title = rss.channel.title
1109         else
1110           title = rss.title.content
1111         end
1112         rss.items.each do |item|
1113           item.title ||= "(?)"
1114           items << item
1115         end
1116       end
1117
1118       if items.empty?
1119         report_problem("no items found in the feed, maybe try weed?", e, m)
1120         return nil
1121       end
1122       feed.title = title
1123       feed.items = items
1124       return true
1125     end
1126   end
1127 end
1128
1129 plugin = RSSFeedsPlugin.new
1130
1131 plugin.default_auth( 'edit', false )
1132 plugin.default_auth( 'edit:add', true)
1133
1134 plugin.map 'rss show :handle :limit',
1135   :action => 'show_rss',
1136   :requirements => {:limit => /^\d+(?:\.\.\d+)?$/},
1137   :defaults => {:limit => 5}
1138 plugin.map 'rss list :handle',
1139   :action => 'list_rss',
1140   :defaults => {:handle => nil}
1141 plugin.map 'rss watched :handle [in :chan]',
1142   :action => 'watched_rss',
1143   :defaults => {:handle => nil}
1144 plugin.map 'rss who watches :handle',
1145   :action => 'who_watches',
1146   :defaults => {:handle => nil}
1147 plugin.map 'rss add :handle :url :type',
1148   :action => 'add_rss',
1149   :auth_path => 'edit',
1150   :defaults => {:type => nil}
1151 plugin.map 'rss change :what of :handle to :new',
1152   :action => 'change_rss',
1153   :auth_path => 'edit',
1154   :requirements => { :what => /handle|url|format|type|refresh/ }
1155 plugin.map 'rss change :what for :handle to :new',
1156   :action => 'change_rss',
1157   :auth_path => 'edit',
1158   :requirements => { :what => /handle|url|format|type|refesh/ }
1159 plugin.map 'rss del :handle',
1160   :auth_path => 'edit:rm!',
1161   :action => 'del_rss'
1162 plugin.map 'rss delete :handle',
1163   :auth_path => 'edit:rm!',
1164   :action => 'del_rss'
1165 plugin.map 'rss rm :handle',
1166   :auth_path => 'edit:rm!',
1167   :action => 'del_rss'
1168 plugin.map 'rss replace :handle :url :type',
1169   :auth_path => 'edit',
1170   :action => 'replace_rss',
1171   :defaults => {:type => nil}
1172 plugin.map 'rss forcereplace :handle :url :type',
1173   :auth_path => 'edit',
1174   :action => 'forcereplace_rss',
1175   :defaults => {:type => nil}
1176 plugin.map 'rss watch :handle [in :chan]',
1177   :action => 'watch_rss',
1178   :defaults => {:url => nil, :type => nil}
1179 plugin.map 'rss watch :handle :url :type [in :chan]',
1180   :action => 'watch_rss',
1181   :defaults => {:url => nil, :type => nil}
1182 plugin.map 'rss unwatch :handle [in :chan]',
1183   :action => 'unwatch_rss'
1184 plugin.map 'rss rmwatch :handle [in :chan]',
1185   :action => 'unwatch_rss'
1186 plugin.map 'rss rewatch [:handle]',
1187   :action => 'rewatch_rss'
1188 plugin.map 'rss types',
1189   :action => 'rss_types'