From 43ef0f794c062325be03a30ca609d4fcbeb5ae41 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sun, 8 Feb 2009 15:05:59 +0100 Subject: grouphug: htmlinfo filter --- data/rbot/plugins/grouphug.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'data') diff --git a/data/rbot/plugins/grouphug.rb b/data/rbot/plugins/grouphug.rb index fa35803c..1b08de2c 100644 --- a/data/rbot/plugins/grouphug.rb +++ b/data/rbot/plugins/grouphug.rb @@ -16,6 +16,7 @@ class GrouphugPlugin < Plugin def initialize super @confessions = Array.new + @bot.register_filter(:grouphug, :htmlinfo) { |s| grouphug_filter(s) } end def help( plugin, topic="" ) @@ -85,6 +86,23 @@ class GrouphugPlugin < Plugin m.reply "failed to connect to grouphug.us" end end + + def grouphug_filter(s) + # check if we like the location of the page + loc = Utils.check_location(s, %r{http://(?:.*\.)?grouphug\.us}) + return unless loc + # check if there are any conefssions + confessions = get_confessions(s[:text]) + return if confessions.empty? + title = s[:text].ircify_html_title + # return the first confession + return { + :title => title, + :content => confessions.first, + :grouphug_confessions => confessions + } + end + end -- cgit v1.2.3