diff options
author | Casey Link <unnamedrambler@gmail.com> | 2008-07-01 00:05:22 -0400 |
---|---|---|
committer | Casey Link <unnamedrambler@gmail.com> | 2008-07-03 11:27:03 -0400 |
commit | c5405bf797fb5081fe4ddcb65945e6f12c6337f4 (patch) | |
tree | f38d91c55b0df78cf527176bc678edc1cd23fb58 /data/rbot/plugins/search.rb | |
parent | 1d066955296f137ca0ef16335033ac2867aecc11 (diff) |
search plugin: added a gcount function to return the number of results in a google query
Diffstat (limited to 'data/rbot/plugins/search.rb')
-rw-r--r-- | data/rbot/plugins/search.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/rbot/plugins/search.rb b/data/rbot/plugins/search.rb index b0decd51..dc0c2ca9 100644 --- a/data/rbot/plugins/search.rb +++ b/data/rbot/plugins/search.rb @@ -19,6 +19,7 @@ GOOGLE_SEARCH = "http://www.google.com/search?oe=UTF-8&q=" GOOGLE_WAP_SEARCH = "http://www.google.com/wml/search?hl=en&q=" GOOGLE_WAP_LINK = /<a accesskey="(\d)" href=".*?u=(.*?)">(.*?)<\/a>/im GOOGLE_CALC_RESULT = %r{<img src=/images/calc_img\.gif(?: width=40 height=30 alt="")?></td><td> </td><td nowrap(?: dir=ltr)?>(?:<h2 class=r>)?<font size=\+1><b>(.+)</b>(?:</h2>)?</td>} +GOOGLE_COUNT_RESULT = %r{<font size=-1>Results <b>1<\/b> - <b>10<\/b> of about <b>(.*)<\/b> for} GOOGLE_DEF_RESULT = %r{<p> (Web definitions for .*?)<br/>(.*?)<br/>(.*?)\s-\s+<a href} class SearchPlugin < Plugin @@ -137,6 +138,36 @@ class SearchPlugin < Plugin debug "replying with: #{result.inspect}" m.reply "#{result}" end + + def gcount(m, params) + what = params[:words].to_s + searchfor = CGI.escape(what) + + debug "Getting gcount thing: #{searchfor.inspect}" + url = GOOGLE_SEARCH + searchfor + + begin + html = @bot.httputil.get(url) + rescue => e + m.reply "error googlecounting #{what}" + return + end + + debug "#{html.size} bytes of html recieved" + + results = html.scan(GOOGLE_COUNT_RESULT) + debug "results: #{results.inspect}" + + if results.length != 1 + m.reply "couldn't count #{what}" + return + end + + result = results[0][0].ircify_html + debug "replying with: #{result.inspect}" + m.reply "total results: #{result}" + + end def gdef(m, params) what = params[:words].to_s @@ -193,6 +224,7 @@ plugin = SearchPlugin.new plugin.map "search *words", :action => 'google', :threaded => true plugin.map "google *words", :action => 'google', :threaded => true +plugin.map "gcount *words", :action => 'gcount', :threaded => true plugin.map "gcalc *words", :action => 'gcalc', :threaded => true plugin.map "gdef *words", :action => 'gdef', :threaded => true plugin.map "wp :lang *words", :action => 'wikipedia', :requirements => { :lang => /^\w\w\w?$/ }, :threaded => true |