X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Frss.rb;h=1d141f3b10dff1e4ecd521630ae0ae58fd90d400;hb=1e841175468b3e0357ab278a226a237fe4d7687e;hp=dd35978168cbf7ae328c64cbd71185f226ab4786;hpb=726b5c7b4973a9e1ab478b7a3ef1bed084749bf8;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index dd359781..1d141f3b 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -288,7 +288,8 @@ class RSSFeedsPlugin < Plugin # running substitutions against DataStream _s_ optionally joined # with hash _h_ def make_stream(line1, line2, s, h={}) - DataStream.new([line1, line2].compact.join("\n") % s.merge(h)) + ss = s.merge(h) + DataStream.new([line1, line2].compact.join("\n") % ss, ss) end # Define default RSS filters @@ -354,6 +355,34 @@ class RSSFeedsPlugin < Plugin line1 << " (by %{author})" if s[:author] make_stream(line1, nil, s) } + + # Define an HTML info filter too + @bot.register_filter(:rss, :htmlinfo) { |s| htmlinfo_filter(s) } + + # This is the output format used by the input filter + @bot.register_filter(:htmlinfo, @outkey) { |s| + line1 = "%{title}%{at}%{link}" + make_stream(line1, nil, s) + } + end + + FEED_NS = %r{xmlns.*http://(purl\.org/rss|www.w3c.org/1999/02/22-rdf)} + def htmlinfo_filter(s) + return nil unless s[:headers] and s[:headers]['x-rbot-location'] + return nil unless s[:headers]['content-type'].first.match(/xml|rss|atom|rdf/i) or + (s[:text].include?(" blob.title, :content => output.join(" | ")} end # Display the known rss types @@ -774,7 +803,7 @@ class RSSFeedsPlugin < Plugin if params and handle = params[:handle] feed = @feeds.fetch(handle.downcase, nil) if feed - @bot.timer.reschedule(@watch[feed.handle], 0) + @bot.timer.reschedule(@watch[feed.handle], (params[:delay] || 0).to_f) m.okay if m else m.reply _("no such feed %{handle}") % { :handle => handle } if m @@ -916,7 +945,7 @@ class RSSFeedsPlugin < Plugin def printFormattedRss(feed, item, opts=nil) debug item places = feed.watchers - handle = "::#{feed.handle}:: " + handle = feed.handle.empty? ? "" : "::#{feed.handle}:: " date = String.new if opts places = opts[:places] if opts.key?(:places) @@ -1007,6 +1036,8 @@ class RSSFeedsPlugin < Plugin :title => title, :desc => desc, :link => link, :category => category, :author => author, :at => at) + return output if places.empty? + places.each { |loc| output.to_s.each_line { |line| @bot.say loc, line, :overlong => :truncate @@ -1159,7 +1190,7 @@ plugin.map 'rss unwatch :handle [in :chan]', :action => 'unwatch_rss' plugin.map 'rss rmwatch :handle [in :chan]', :action => 'unwatch_rss' -plugin.map 'rss rewatch [:handle]', +plugin.map 'rss rewatch [:handle] [:delay]', :action => 'rewatch_rss' plugin.map 'rss types', :action => 'rss_types'