X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Fgrouphug.rb;h=90527fb7f61db1cd75bc67bfd98fc614daf58249;hb=29faf7573130bb0f672f4a9cd3a62bcdd409f4cc;hp=53fc7f0a761a118ee4f41160bc852b111578bc29;hpb=43ac960aa89e5a02291fe875627dac88ae7fda34;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/grouphug.rb b/data/rbot/plugins/grouphug.rb index 53fc7f0a..90527fb7 100644 --- a/data/rbot/plugins/grouphug.rb +++ b/data/rbot/plugins/grouphug.rb @@ -1,36 +1,90 @@ -# Plugin for the Ruby IRC bot (http://linuxbrit.co.uk/rbot/) -# (c) 2005 Mark Kretschmann -# Licensed under GPL V2. +#-- vim:sw=2:et +#++ +# +# :title: Grouphug Plugin for rbot +# +# Author:: Mark Kretschmann +# Author:: Casey Link +# Copyright:: (C) 2005 Mark Kretschmann +# Copyright:: (C) 2008 Casey Link +# License:: GPL v2 -require "net/http" +class GrouphugPlugin < Plugin + REG = Regexp.new('
\s*

(.*?)

\s+
', 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 ' for specific one, 'confess ' to share your own confession. Confessions must be at least 10 words.") + end -class GrouphugPlugin < Plugin - def help( plugin, topic="" ) - "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess ' for specific one." + 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 privmsg( m ) - path = "/random" - path = "/confessions/#{m.params()}" if m.params() - begin - data = bot.httputil.get_cached(URI.parse("http://grouphug.us/#{path}")) - reg = Regexp.new( '()(.*?)(

)', Regexp::MULTILINE ) - confession = reg.match( data )[4] - confession.gsub!( /<.*?>/, "" ) # Remove html tags - confession.gsub!( "\t", "" ) # Remove tab characters + def confess(m, params) + opts = { :cache => false } + path = "random" + begin + # 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) - @bot.say(m.replyto, confession) - rescue - m.reply "failed to connect to grouphug.us" + res = data.scan(REG) + 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 + 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 - end + confession = @confessions.pop + m.reply confession + end + rescue + m.reply "failed to connect to grouphug.us" + end + end end plugin = GrouphugPlugin.new -plugin.register("grouphug") -plugin.register("confess") +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'