]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - data/rbot/plugins/grouphug.rb
hangman plugin: rudimentary stats tracking along with some other enhancements
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / grouphug.rb
index f08f57533829dfd3943615a2e881691dbf11870f..90527fb7f61db1cd75bc67bfd98fc614daf58249 100644 (file)
 
 class GrouphugPlugin < Plugin
   REG  = Regexp.new('<div class="content">\s*<p>(.*?)</p>\s+</div>', Regexp::MULTILINE)
+  REGPOST = Regexp.new('title>(.*?) \| Group Hug')
   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."
+    return _("Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess <number>' for specific one, 'confess <confession>' to share your own confession. Confessions must be at least 10 words.")
   end
 
+  def post_confession(m, params)
+    c = params[:confession]
+    if c.length < 10
+      diff = 10 - c.length
+      m.reply _("Confession must be at least 10 words. You need %{m} more.") % {:m => diff}
+      return
+    end
+    uri = "http://beta.grouphug.us/confess"
+    form_id = "form_id=confession_node_form"
+    op = "op=Submit"
+    changed = "changed="
+    body = "body=#{c}"
+    msg = [form_id,body,changed,op].join("&")
+
+    response = bot.httputil.post(uri, msg)
+    debug response.body
+    if response.class == Net::HTTPOK
+      num = response.body.scan(REGPOST)
+      m.reply _("Confession posted: http://beta.grouphug.us/confessions/%{n}") % {:n => num}
+    else
+      m.reply _("I couldn't share your confession.")
+    end
+  end
+
+
   def confess(m, params)
     opts = { :cache => false }
     path = "random"
@@ -31,7 +57,7 @@ class GrouphugPlugin < Plugin
         data = @bot.httputil.get("http://grouphug.us/#{path}", opts)
 
         res = data.scan(REG)
-        confession = res[0][0].ircify_html
+        confession = res[2][0].ircify_html # use res[2] to skip the new sidebar "Group Hug is run by one person..." and other text.
         confession = "no confession ##{params[:num]} found" if confession.empty? and params[:num]
         m.reply confession
       else # Cache random confessions
@@ -54,8 +80,11 @@ end
 
 plugin = GrouphugPlugin.new
 
+plugin.default_auth('create', false)
+
 plugin.map "grouphug [:num]",
   :thread => true, :action => :confess, :requirements => { :num => /\d+/ }
 plugin.map "confess [:num]",
   :thread => true, :action => :confess, :requirements => { :num => /\d+/ }
+plugin.map "confess *confession", :thread => true, :action => :post_confession, :auth_path => 'create'