summaryrefslogtreecommitdiff
path: root/data/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-05-23 18:26:05 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-05-23 18:26:05 +0000
commit5ad543d921116629dcfb9abc9bf25bdfbd53dbfd (patch)
tree800bc8cc9af71ac981bbe887ee2ca855bf378dfa /data/rbot
parentb035320d69d2144765645b9f3143101b003e547d (diff)
search plugin: add support for uncyclopedia
Diffstat (limited to 'data/rbot')
-rw-r--r--data/rbot/plugins/search.rb17
1 files changed, 16 insertions, 1 deletions
diff --git a/data/rbot/plugins/search.rb b/data/rbot/plugins/search.rb
index c733c815..e94d915b 100644
--- a/data/rbot/plugins/search.rb
+++ b/data/rbot/plugins/search.rb
@@ -12,6 +12,8 @@
# TODO:: use lr=lang_<code> or whatever is most appropriate to let google know
# it shouldn't use the bot's location to find the preferred language
+# TODO:: support localized uncyclopedias -- not easy because they have different names
+# for most languages
GOOGLE_WAP_LINK = /<a accesskey="(\d)" href=".*?u=(.*?)">(.*?)<\/a>/im
GOOGLE_CALC_RESULT = %r{<p><table><tr><td><img src=/images/calc_img\.gif></td><td>&nbsp;</td><td nowrap><font size=\+1><b>(.+)</b></td></tr><tr><td>}
@@ -38,8 +40,10 @@ class SearchPlugin < Plugin
"gcalc <equation> => use the google calculator to find the answer to <equation>"
when "wp"
"wp [<code>] <string> => search for <string> on Wikipedia. You can select a national <code> to only search the national Wikipedia"
+ when "unpedia"
+ "unpedia <string> => search for <string> on Uncyclopedia"
else
- "search <string> (or: google <string>) => search google for <string> | wp <string> => search for <string> on Wikipedia"
+ "search <string> (or: google <string>) => search google for <string> | wp <string> => search for <string> on Wikipedia | unpedia <string> => search for <string> on Uncyclopedia"
end
end
@@ -130,6 +134,16 @@ class SearchPlugin < Plugin
params[:firstpar] = @bot.config['wikipedia.first_par']
return google(m, params)
end
+
+ def unpedia(m, params)
+ site = "uncyclopedia.org"
+ debug "Looking up things on #{site}"
+ params[:site] = site
+ params[:filter] = / - Uncyclopedia.*$/
+ params[:hits] = @bot.config['wikipedia.hits']
+ params[:firstpar] = @bot.config['wikipedia.first_par']
+ return google(m, params)
+ end
end
plugin = SearchPlugin.new
@@ -139,4 +153,5 @@ plugin.map "google *words", :action => 'google'
plugin.map "gcalc *words", :action => 'gcalc'
plugin.map "wp :lang *words", :action => 'wikipedia', :requirements => { :lang => /^\w\w\w?$/ }
plugin.map "wp *words", :action => 'wikipedia'
+plugin.map "unpedia *words", :action => 'unpedia'