]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/commitdiff
url plugin: urls info should work regardless of config
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Tue, 27 Jan 2009 01:14:33 +0000 (02:14 +0100)
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Tue, 27 Jan 2009 01:14:33 +0000 (02:14 +0100)
The 'urls info' command to manually query for link information should
always work, regardless of the setting of the url.only_on_channels
config setting.

Fix by making the channels list for handle_urls() into an option
(defaulting to url.only_on_channels) and passing an empty list from
info().

data/rbot/plugins/url.rb

index 022553182e763660d01f1916af448e6675ad40f3..8d12f303f62cc8c3792fcffcf81879cd972e8544 100644 (file)
@@ -124,11 +124,13 @@ class UrlPlugin < Plugin
 
   def handle_urls(m, params={})
     opts = {
-      :display_info => @bot.config['url.display_link_info']
+      :display_info => @bot.config['url.display_link_info'],
+      :channels => @bot.config['url.only_on_channels']
     }.merge params
     urls = opts[:urls]
     display_info= opts[:display_info]
-    unless (channels = @bot.config['url.only_on_channels']).empty?
+    channels = opts[:channels]
+    unless channels.empty?
       return unless channels.map { |c| c.downcase }.include?(m.channel.downcase)
     end
 
@@ -189,7 +191,12 @@ class UrlPlugin < Plugin
   def info(m, params)
     escaped = URI.escape(params[:urls].to_s, OUR_UNSAFE)
     urls = URI.extract(escaped)
-    Thread.new { handle_urls(m, :urls => urls, :display_info => params[:urls].length) }
+    Thread.new do
+      handle_urls(m,
+                  :urls => urls,
+                  :display_info => params[:urls].length,
+                  :channels => [])
+    end
   end
 
   def message(m)