]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/grouphug.rb
imdb plugin: bring help up to speed with what the plugin offers
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / grouphug.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: Grouphug Plugin for rbot
5 #
6 # Author:: Mark Kretschmann <markey@web.de>
7 # Copyright:: (C) 2005 Mark Kretschmann
8 # License:: GPL v2
9
10 class GrouphugPlugin < Plugin
11   def help( plugin, topic="" )
12     return "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess <number>' for specific one."
13   end
14
15   def confess(m, params)
16     opts = { :cache => false }
17     path = "random"
18     if params[:num]
19       path = "confessions/#{params[:num]}"
20       opts.delete(:cache)
21     end
22
23     begin
24       data = @bot.httputil.get("http://grouphug.us/#{path}", opts)
25
26       reg = Regexp.new( '(<td class="conf-text")(.*?)(<p>)(.*?)(</p>)', Regexp::MULTILINE )
27       confession = reg.match( data )[4].ircify_html
28       confession = "no confession ##{params[:num]} found" if confession.empty? and params[:num]
29
30       m.reply confession
31     rescue
32       m.reply "failed to connect to grouphug.us"
33     end
34   end
35 end
36
37
38 plugin = GrouphugPlugin.new
39
40 plugin.map "grouphug [:num]", :action => :confess, :requirements => { :num => /\d+/ }
41 plugin.map "confess [:num]", :action => :confess, :requirements => { :num => /\d+/ }
42