]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
* plugins/grouphug: cache the results from a page request, don't re-request until...
authorCasey Link <kc@binaryelysium.com>
Wed, 18 Jun 2008 09:37:45 +0000 (05:37 -0400)
committerdmitry kim <jason@nichego.net>
Wed, 18 Jun 2008 10:05:56 +0000 (14:05 +0400)
data/rbot/plugins/grouphug.rb

index 55e9a34503b694976a34cf49c09c231a26d8fe80..4e7eaf5d97dc3495aab68cf3488f4b4be35cb1ad 100644 (file)
@@ -4,10 +4,17 @@
 # :title: Grouphug Plugin for rbot
 #
 # Author:: Mark Kretschmann <markey@web.de>
+# Author:: Casey Link <unnamedrambler@gmail.com>
 # Copyright:: (C) 2005 Mark Kretschmann
+# Copyright:: (C) 2008 Casey Link
 # License:: GPL v2
 
 class GrouphugPlugin < Plugin
+  def initialize
+    super
+    @confessions = Array.new
+  end
+
   def help( plugin, topic="" )
     return "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess <number>' for specific one."
   end
@@ -15,20 +22,30 @@ class GrouphugPlugin < Plugin
   def confess(m, params)
     opts = { :cache => false }
     path = "random"
-    if params[:num]
-      path = "confessions/#{params[:num]}"
-      opts.delete(:cache)
-    end
-
     begin
-      data = @bot.httputil.get("http://grouphug.us/#{path}", opts)
-
-      reg = Regexp.new('(<div class="content")(.*?)(<p>)(.*?)(</p>)',
-                       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)
+
+        reg = Regexp.new('<div class="content">.*?<p>(.*?)</p>', Regexp::MULTILINE)
+        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)
+          reg = Regexp.new('<div class="content">.*?<p>(.*?)</p>', Regexp::MULTILINE)
+          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