X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Fgrouphug.rb;h=f08f57533829dfd3943615a2e881691dbf11870f;hb=aac060923bb64774d4a54a1dd8e5c1dfc2a70a4f;hp=75093665067f7036d237e9f2d77ca01467d3adf0;hpb=edd1cf77be07ae507014574141e920ad23eb164d;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/grouphug.rb b/data/rbot/plugins/grouphug.rb index 75093665..f08f5753 100644 --- a/data/rbot/plugins/grouphug.rb +++ b/data/rbot/plugins/grouphug.rb @@ -4,25 +4,47 @@ # :title: Grouphug Plugin for rbot # # Author:: Mark Kretschmann +# Author:: Casey Link # Copyright:: (C) 2005 Mark Kretschmann +# Copyright:: (C) 2008 Casey Link # License:: GPL v2 class GrouphugPlugin < Plugin + REG = Regexp.new('
\s*

(.*?)

\s+
', Regexp::MULTILINE) + def initialize + super + @confessions = Array.new + end + def help( plugin, topic="" ) return "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess ' for specific one." end def confess(m, params) + opts = { :cache => false } path = "random" - path = "confessions/#{params[:num]}" if params[:num] begin - data = @bot.httputil.get_cached(URI.parse("http://grouphug.us/#{path}")) - - reg = Regexp.new( '()(.*?)(

)', Regexp::MULTILINE ) - confession = reg.match( data )[4].ircify_html - confession = "no confession ##{params[:num]} found" if confession.empty? and params[:num] - - m.reply confession + # Fetch a specific question - separate from cache + if params[:num] + path = "confessions/#{params[:num]}" + opts.delete(:cache) + data = @bot.httputil.get("http://grouphug.us/#{path}", opts) + + res = data.scan(REG) + confession = res[0][0].ircify_html + confession = "no confession ##{params[:num]} found" if confession.empty? and params[:num] + m.reply confession + else # Cache random confessions + if @confessions.empty? + data = @bot.httputil.get("http://grouphug.us/#{path}", opts) + res = data.scan(REG) + res.each do |quote| + @confessions << quote[0].ircify_html + end + end + confession = @confessions.pop + m.reply confession + end rescue m.reply "failed to connect to grouphug.us" end @@ -32,6 +54,8 @@ end plugin = GrouphugPlugin.new -plugin.map "grouphug [:num]", :action => :confess, :requirements => { :num => /\d+/ } -plugin.map "confess [:num]", :action => :confess, :requirements => { :num => /\d+/ } +plugin.map "grouphug [:num]", + :thread => true, :action => :confess, :requirements => { :num => /\d+/ } +plugin.map "confess [:num]", + :thread => true, :action => :confess, :requirements => { :num => /\d+/ }