]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - lib/rbot/plugins.rb
remove whitespace
[user/henk/code/ruby/rbot.git] / lib / rbot / plugins.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: rbot plugin management
5
6 require 'singleton'
7
8 module Irc
9 class Bot
10     Config.register Config::ArrayValue.new('plugins.blacklist',
11       :default => [], :wizard => false, :requires_rescan => true,
12       :desc => "Plugins that should not be loaded")
13 module Plugins
14   require 'rbot/messagemapper'
15
16 =begin rdoc
17   BotModule is the base class for the modules that enhance the rbot
18   functionality. Rather than subclassing BotModule, however, one should
19   subclass either CoreBotModule (reserved for system modules) or Plugin
20   (for user plugins).
21
22   A BotModule interacts with Irc events by defining one or more of the following
23   methods, which get called as appropriate when the corresponding Irc event
24   happens.
25
26   map(template, options)::
27   map!(template, options)::
28      map is the new, cleaner way to respond to specific message formats without
29      littering your plugin code with regexps, and should be used instead of
30      #register() and #privmsg() (see below) when possible.
31
32      The difference between map and map! is that map! will not register the new
33      command as an alternative name for the plugin.
34
35      Examples:
36
37        plugin.map 'karmastats', :action => 'karma_stats'
38
39        # while in the plugin...
40        def karma_stats(m, params)
41          m.reply "..."
42        end
43
44        # the default action is the first component
45        plugin.map 'karma'
46
47        # attributes can be pulled out of the match string
48        plugin.map 'karma for :key'
49        plugin.map 'karma :key'
50
51        # while in the plugin...
52        def karma(m, params)
53          item = params[:key]
54          m.reply 'karma for #{item}'
55        end
56
57        # you can setup defaults, to make parameters optional
58        plugin.map 'karma :key', :defaults => {:key => 'defaultvalue'}
59
60        # the default auth check is also against the first component
61        # but that can be changed
62        plugin.map 'karmastats', :auth => 'karma'
63
64        # maps can be restricted to public or private message:
65        plugin.map 'karmastats', :private => false
66        plugin.map 'karmastats', :public => false
67
68      See MessageMapper#map for more information on the template format and the
69      allowed options.
70
71   listen(UserMessage)::
72                          Called for all messages of any type. To
73                          differentiate them, use message.kind_of? It'll be
74                          either a PrivMessage, NoticeMessage, KickMessage,
75                          QuitMessage, PartMessage, JoinMessage, NickMessage,
76                          etc.
77
78   ctcp_listen(UserMessage)::
79                          Called for all messages that contain a CTCP command.
80                          Use message.ctcp to get the CTCP command, and
81                          message.message to get the parameter string. To reply,
82                          use message.ctcp_reply, which sends a private NOTICE
83                          to the sender.
84
85   message(PrivMessage)::
86                          Called for all PRIVMSG. Hook on this method if you
87                          need to handle PRIVMSGs regardless of whether they are
88                          addressed to the bot or not, and regardless of
89
90   privmsg(PrivMessage)::
91                          Called for a PRIVMSG if the first word matches one
92                          the plugin #register()ed for. Use m.plugin to get
93                          that word and m.params for the rest of the message,
94                          if applicable.
95
96   unreplied(PrivMessage)::
97                          Called for a PRIVMSG which has not been replied to.
98
99   notice(NoticeMessage)::
100                          Called for all Notices. Please notice that in general
101                          should not be replied to.
102
103   kick(KickMessage)::
104                          Called when a user (or the bot) is kicked from a
105                          channel the bot is in.
106
107   invite(InviteMessage)::
108                          Called when the bot is invited to a channel.
109
110   join(JoinMessage)::
111                          Called when a user (or the bot) joins a channel
112
113   part(PartMessage)::
114                          Called when a user (or the bot) parts a channel
115
116   quit(QuitMessage)::
117                          Called when a user (or the bot) quits IRC
118
119   nick(NickMessage)::
120                          Called when a user (or the bot) changes Nick
121   modechange(ModeChangeMessage)::
122                          Called when a User or Channel mode is changed
123   topic(TopicMessage)::
124                          Called when a user (or the bot) changes a channel
125                          topic
126
127   welcome(WelcomeMessage)::
128                          Called when the welcome message is received on
129                          joining a server succesfully.
130
131   motd(MotdMessage)::
132                          Called when the Message Of The Day is fully
133                          recevied from the server.
134
135   connect::              Called when a server is joined successfully, but
136                          before autojoin channels are joined (no params)
137
138   set_language(String)::
139                          Called when the user sets a new language
140                          whose name is the given String
141
142   save::                 Called when you are required to save your plugin's
143                          state, if you maintain data between sessions
144
145   cleanup::              called before your plugin is "unloaded", prior to a
146                          plugin reload or bot quit - close any open
147                          files/connections or flush caches here
148 =end
149
150   class BotModule
151     # the associated bot
152     attr_reader :bot
153
154     # the plugin registry
155     attr_reader :registry
156
157     # the message map handler
158     attr_reader :handler
159
160     # Initialise your bot module. Always call super if you override this method,
161     # as important variables are set up for you:
162     #
163     # @bot::
164     #   the rbot instance
165     # @registry::
166     #   the botmodule's registry, which can be used to store permanent data
167     #   (see Registry::Accessor for additional documentation)
168     #
169     # Other instance variables which are defined and should not be overwritten
170     # byt the user, but aren't usually accessed directly, are:
171     #
172     # @manager::
173     #   the plugins manager instance
174     # @botmodule_triggers::
175     #   an Array of words this plugin #register()ed itself for
176     # @handler::
177     #   the MessageMapper that handles this plugin's maps
178     #
179     def initialize
180       @manager = Plugins::manager
181       @bot = @manager.bot
182       @priority = nil
183
184       @botmodule_triggers = Array.new
185
186       @handler = MessageMapper.new(self)
187       @registry = Registry::Accessor.new(@bot, self.class.to_s.gsub(/^.*::/, ""))
188
189       @manager.add_botmodule(self)
190       if self.respond_to?('set_language')
191         self.set_language(@bot.lang.language)
192       end
193     end
194
195     # Changing the value of @priority directly will cause problems,
196     # Please use priority=.
197     def priority
198       @priority ||= 1
199     end
200
201     # Returns the symbol :BotModule
202     def botmodule_class
203       :BotModule
204     end
205
206     # Method called to flush the registry, thus ensuring that the botmodule's permanent
207     # data is committed to disk
208     #
209     def flush_registry
210       # debug "Flushing #{@registry}"
211       @registry.flush
212     end
213
214     # Method called to cleanup before the plugin is unloaded. If you overload
215     # this method to handle additional cleanup tasks, remember to call super()
216     # so that the default cleanup actions are taken care of as well.
217     #
218     def cleanup
219       # debug "Closing #{@registry}"
220       @registry.close
221     end
222
223     # Handle an Irc::PrivMessage for which this BotModule has a map. The method
224     # is called automatically and there is usually no need to call it
225     # explicitly.
226     #
227     def handle(m)
228       @handler.handle(m)
229     end
230
231     # Signal to other BotModules that an even happened.
232     #
233     def call_event(ev, *args)
234       @bot.plugins.delegate('event_' + ev.to_s.gsub(/[^\w\?!]+/, '_'), *(args.push Hash.new))
235     end
236
237     # call-seq: map(template, options)
238     #
239     # This is the preferred way to register the BotModule so that it
240     # responds to appropriately-formed messages on Irc.
241     #
242     def map(*args)
243       do_map(false, *args)
244     end
245
246     # call-seq: map!(template, options)
247     #
248     # This is the same as map but doesn't register the new command
249     # as an alternative name for the plugin.
250     #
251     def map!(*args)
252       do_map(true, *args)
253     end
254
255     # Auxiliary method called by #map and #map!
256     def do_map(silent, *args)
257       @handler.map(self, *args)
258       # register this map
259       map = @handler.last
260       name = map.items[0]
261       self.register name, :auth => nil, :hidden => silent
262       @manager.register_map(self, map)
263       unless self.respond_to?('privmsg')
264         def self.privmsg(m) #:nodoc:
265           handle(m)
266         end
267       end
268     end
269
270     # Sets the default auth for command path _cmd_ to _val_ on channel _chan_:
271     # usually _chan_ is either "*" for everywhere, public and private (in which
272     # case it can be omitted) or "?" for private communications
273     #
274     def default_auth(cmd, val, chan="*")
275       case cmd
276       when "*", ""
277         c = nil
278       else
279         c = cmd
280       end
281       Auth::defaultbotuser.set_default_permission(propose_default_path(c), val)
282     end
283
284     # Gets the default command path which would be given to command _cmd_
285     def propose_default_path(cmd)
286       [name, cmd].compact.join("::")
287     end
288
289     # Return an identifier for this plugin, defaults to a list of the message
290     # prefixes handled (used for error messages etc)
291     def name
292       self.class.to_s.downcase.sub(/^#<module:.*?>::/,"").sub(/(plugin|module)?$/,"")
293     end
294
295     # Just calls name
296     def to_s
297       name
298     end
299
300     # Intern the name
301     def to_sym
302       self.name.to_sym
303     end
304
305     # Return a help string for your module. For complex modules, you may wish
306     # to break your help into topics, and return a list of available topics if
307     # +topic+ is nil. +plugin+ is passed containing the matching prefix for
308     # this message - if your plugin handles multiple prefixes, make sure you
309     # return the correct help for the prefix requested
310     def help(plugin, topic)
311       "no help"
312     end
313
314     # Register the plugin as a handler for messages prefixed _cmd_.
315     #
316     # This can be called multiple times for a plugin to handle multiple message
317     # prefixes.
318     #
319     # This command is now superceded by the #map() command, which should be used
320     # instead whenever possible.
321     #
322     def register(cmd, opts={})
323       raise ArgumentError, "Second argument must be a hash!" unless opts.kind_of?(Hash)
324       who = @manager.who_handles?(cmd)
325       if who
326         raise "Command #{cmd} is already handled by #{who.botmodule_class} #{who}" if who != self
327         return
328       end
329       if opts.has_key?(:auth)
330         @manager.register(self, cmd, opts[:auth])
331       else
332         @manager.register(self, cmd, propose_default_path(cmd))
333       end
334       @botmodule_triggers << cmd unless opts.fetch(:hidden, false)
335     end
336
337     # Default usage method provided as a utility for simple plugins. The
338     # MessageMapper uses 'usage' as its default fallback method.
339     #
340     def usage(m, params = {})
341       m.reply(_("incorrect usage, ask for help using '%{command}'") % {:command => "#{@bot.nick}: help #{m.plugin}"})
342     end
343
344     # Define the priority of the module.  During event delegation, lower
345     # priority modules will be called first.  Default priority is 1
346     def priority=(prio)
347       if @priority != prio
348         @priority = prio
349         @bot.plugins.mark_priorities_dirty
350       end
351     end
352
353     # Directory name to be joined to the botclass to access data files. By
354     # default this is the plugin name itself, but may be overridden, for
355     # example by plugins that share their datafiles or for backwards
356     # compatibilty
357     def dirname
358       name
359     end
360
361     # Filename for a datafile built joining the botclass, plugin dirname and
362     # actual file name
363     def datafile(*fname)
364       @bot.path dirname, *fname
365     end
366   end
367
368   # A CoreBotModule is a BotModule that provides core functionality.
369   #
370   # This class should not be used by user plugins, as it's reserved for system
371   # plugins such as the ones that handle authentication, configuration and basic
372   # functionality.
373   #
374   class CoreBotModule < BotModule
375     def botmodule_class
376       :CoreBotModule
377     end
378   end
379
380   # A Plugin is a BotModule that provides additional functionality.
381   #
382   # A user-defined plugin should subclass this, and then define any of the
383   # methods described in the documentation for BotModule to handle interaction
384   # with Irc events.
385   #
386   class Plugin < BotModule
387     def botmodule_class
388       :Plugin
389     end
390   end
391
392   # Singleton to manage multiple plugins and delegate messages to them for
393   # handling
394   class PluginManagerClass
395     include Singleton
396     attr_reader :bot
397     attr_reader :botmodules
398     attr_reader :maps
399
400     # This is the list of patterns commonly delegated to plugins.
401     # A fast delegation lookup is enabled for them.
402     DEFAULT_DELEGATE_PATTERNS = %r{^(?:
403       connect|names|nick|
404       listen|ctcp_listen|privmsg|unreplied|
405       kick|join|part|quit|
406       save|cleanup|flush_registry|
407       set_.*|event_.*
408     )$}x
409
410     def initialize
411       @botmodules = {
412         :CoreBotModule => [],
413         :Plugin => []
414       }
415
416       @names_hash = Hash.new
417       @commandmappers = Hash.new
418       @maps = Hash.new
419
420       # modules will be sorted on first delegate call
421       @sorted_modules = nil
422
423       @delegate_list = Hash.new { |h, k|
424         h[k] = Array.new
425       }
426
427       @dirs = []
428
429       @failed = Array.new
430       @ignored = Array.new
431
432       bot_associate(nil)
433     end
434
435     def inspect
436       ret = self.to_s[0..-2]
437       ret << ' corebotmodules='
438       ret << @botmodules[:CoreBotModule].map { |m|
439         m.name
440       }.inspect
441       ret << ' plugins='
442       ret << @botmodules[:Plugin].map { |m|
443         m.name
444       }.inspect
445       ret << ">"
446     end
447
448     # Reset lists of botmodules
449     def reset_botmodule_lists
450       @botmodules[:CoreBotModule].clear
451       @botmodules[:Plugin].clear
452       @names_hash.clear
453       @commandmappers.clear
454       @maps.clear
455       @failures_shown = false
456       mark_priorities_dirty
457     end
458
459     # Associate with bot _bot_
460     def bot_associate(bot)
461       reset_botmodule_lists
462       @bot = bot
463     end
464
465     # Returns the botmodule with the given _name_
466     def [](name)
467       @names_hash[name.to_sym]
468     end
469
470     # Returns +true+ if _cmd_ has already been registered as a command
471     def who_handles?(cmd)
472       return nil unless @commandmappers.has_key?(cmd.to_sym)
473       return @commandmappers[cmd.to_sym][:botmodule]
474     end
475
476     # Registers botmodule _botmodule_ with command _cmd_ and command path _auth_path_
477     def register(botmodule, cmd, auth_path)
478       raise TypeError, "First argument #{botmodule.inspect} is not of class BotModule" unless botmodule.kind_of?(BotModule)
479       @commandmappers[cmd.to_sym] = {:botmodule => botmodule, :auth => auth_path}
480     end
481
482     # Registers botmodule _botmodule_ with map _map_. This adds the map to the #maps hash
483     # which has three keys:
484     #
485     # botmodule:: the associated botmodule
486     # auth:: an array of auth keys checked by the map; the first is the full_auth_path of the map
487     # map:: the actual MessageTemplate object
488     #
489     #
490     def register_map(botmodule, map)
491       raise TypeError, "First argument #{botmodule.inspect} is not of class BotModule" unless botmodule.kind_of?(BotModule)
492       @maps[map.template] = { :botmodule => botmodule, :auth => [map.options[:full_auth_path]], :map => map }
493     end
494
495     def add_botmodule(botmodule)
496       raise TypeError, "Argument #{botmodule.inspect} is not of class BotModule" unless botmodule.kind_of?(BotModule)
497       kl = botmodule.botmodule_class
498       if @names_hash.has_key?(botmodule.to_sym)
499         case self[botmodule].botmodule_class
500         when kl
501           raise "#{kl} #{botmodule} already registered!"
502         else
503           raise "#{self[botmodule].botmodule_class} #{botmodule} already registered, cannot re-register as #{kl}"
504         end
505       end
506       @botmodules[kl] << botmodule
507       @names_hash[botmodule.to_sym] = botmodule
508       mark_priorities_dirty
509     end
510
511     # Returns an array of the loaded plugins
512     def core_modules
513       @botmodules[:CoreBotModule]
514     end
515
516     # Returns an array of the loaded plugins
517     def plugins
518       @botmodules[:Plugin]
519     end
520
521     # Returns a hash of the registered message prefixes and associated
522     # plugins
523     def commands
524       @commandmappers
525     end
526
527     # Tells the PluginManager that the next time it delegates an event, it
528     # should sort the modules by priority
529     def mark_priorities_dirty
530       @sorted_modules = nil
531     end
532
533     # Makes a string of error _err_ by adding text _str_
534     def report_error(str, err)
535       ([str, err.inspect] + err.backtrace).join("\n")
536     end
537
538     # This method is the one that actually loads a module from the
539     # file _fname_
540     #
541     # _desc_ is a simple description of what we are loading (plugin/botmodule/whatever)
542     #
543     # It returns the Symbol :loaded on success, and an Exception
544     # on failure
545     #
546     def load_botmodule_file(fname, desc=nil)
547       # create a new, anonymous module to "house" the plugin
548       # the idea here is to prevent namespace pollution. perhaps there
549       # is another way?
550       plugin_module = Module.new
551       # each plugin uses its own textdomain, we bind it automatically here
552       bindtextdomain_to(plugin_module, "rbot-#{File.basename(fname, '.rb')}")
553
554       desc = desc.to_s + " " if desc
555
556       begin
557         plugin_string = IO.read(fname)
558         debug "loading #{desc}#{fname}"
559         plugin_module.module_eval(plugin_string, fname)
560         return :loaded
561       rescue Exception => err
562         # rescue TimeoutError, StandardError, NameError, LoadError, SyntaxError => err
563         error report_error("#{desc}#{fname} load failed", err)
564         bt = err.backtrace.select { |line|
565           line.match(/^(\(eval\)|#{fname}):\d+/)
566         }
567         bt.map! { |el|
568           el.gsub(/^\(eval\)(:\d+)(:in `.*')?(:.*)?/) { |m|
569             "#{fname}#{$1}#{$3}"
570           }
571         }
572         msg = err.to_str.gsub(/^\(eval\)(:\d+)(:in `.*')?(:.*)?/) { |m|
573           "#{fname}#{$1}#{$3}"
574         }
575         newerr = err.class.new(msg)
576         newerr.set_backtrace(bt)
577         return newerr
578       end
579     end
580     private :load_botmodule_file
581
582     # add one or more directories to the list of directories to
583     # load botmodules from
584     #
585     # TODO find a way to specify necessary plugins which _must_ be loaded
586     #
587     def add_botmodule_dir(*dirlist)
588       @dirs += dirlist
589       debug "Botmodule loading path: #{@dirs.join(', ')}"
590     end
591
592     def clear_botmodule_dirs
593       @dirs.clear
594       debug "Botmodule loading path cleared"
595     end
596
597     # load plugins from pre-assigned list of directories
598     def scan
599       @failed.clear
600       @ignored.clear
601       @delegate_list.clear
602
603       processed = Hash.new
604
605       @bot.config['plugins.blacklist'].each { |p|
606         pn = p + ".rb"
607         processed[pn.intern] = :blacklisted
608       }
609
610       dirs = @dirs
611       dirs.each {|dir|
612         if(FileTest.directory?(dir))
613           d = Dir.new(dir)
614           d.sort.each {|file|
615
616             next if(file =~ /^\./)
617
618             if processed.has_key?(file.intern)
619               @ignored << {:name => file, :dir => dir, :reason => processed[file.intern]}
620               next
621             end
622
623             if(file =~ /^(.+\.rb)\.disabled$/)
624               # GB: Do we want to do this? This means that a disabled plugin in a directory
625               #     will disable in all subsequent directories. This was probably meant
626               #     to be used before plugins.blacklist was implemented, so I think
627               #     we don't need this anymore
628               processed[$1.intern] = :disabled
629               @ignored << {:name => $1, :dir => dir, :reason => processed[$1.intern]}
630               next
631             end
632
633             next unless(file =~ /\.rb$/)
634
635             did_it = load_botmodule_file("#{dir}/#{file}", "plugin")
636             case did_it
637             when Symbol
638               processed[file.intern] = did_it
639             when Exception
640               @failed <<  { :name => file, :dir => dir, :reason => did_it }
641             end
642
643           }
644         end
645       }
646       debug "finished loading plugins: #{status(true)}"
647       (core_modules + plugins).each { |p|
648        p.methods.grep(DEFAULT_DELEGATE_PATTERNS).each { |m|
649          @delegate_list[m.intern] << p
650        }
651       }
652       mark_priorities_dirty
653     end
654
655     # call the save method for each active plugin
656     def save
657       delegate 'flush_registry'
658       delegate 'save'
659     end
660
661     # call the cleanup method for each active plugin
662     def cleanup
663       delegate 'cleanup'
664       reset_botmodule_lists
665     end
666
667     # drop all plugins and rescan plugins on disk
668     # calls save and cleanup for each plugin before dropping them
669     def rescan
670       save
671       cleanup
672       scan
673     end
674
675     def status(short=false)
676       output = []
677       if self.core_length > 0
678         if short
679           output << n_("%{count} core module loaded", "%{count} core modules loaded",
680                     self.core_length) % {:count => self.core_length}
681         else
682           output <<  n_("%{count} core module: %{list}",
683                      "%{count} core modules: %{list}", self.core_length) %
684                      { :count => self.core_length,
685                        :list => core_modules.collect{ |p| p.name}.sort.join(", ") }
686         end
687       else
688         output << _("no core botmodules loaded")
689       end
690       # Active plugins first
691       if(self.length > 0)
692         if short
693           output << n_("%{count} plugin loaded", "%{count} plugins loaded",
694                        self.length) % {:count => self.length}
695         else
696           output << n_("%{count} plugin: %{list}",
697                        "%{count} plugins: %{list}", self.length) %
698                    { :count => self.length,
699                      :list => plugins.collect{ |p| p.name}.sort.join(", ") }
700         end
701       else
702         output << "no plugins active"
703       end
704       # Ignored plugins next
705       unless @ignored.empty? or @failures_shown
706         if short
707           output << n_("%{highlight}%{count} plugin ignored%{highlight}",
708                        "%{highlight}%{count} plugins ignored%{highlight}",
709                        @ignored.length) %
710                     { :count => @ignored.length, :highlight => Underline }
711         else
712           output << n_("%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%{bold} to see why",
713                        "%{highlight}%{count} plugins ignored%{highlight}: use %{bold}%{command}%{bold} to see why",
714                        @ignored.length) %
715                     { :count => @ignored.length, :highlight => Underline,
716                       :bold => Bold, :command => "help ignored plugins"}
717         end
718       end
719       # Failed plugins next
720       unless @failed.empty? or @failures_shown
721         if short
722           output << n_("%{highlight}%{count} plugin failed to load%{highlight}",
723                        "%{highlight}%{count} plugins failed to load%{highlight}",
724                        @failed.length) %
725                     { :count => @failed.length, :highlight => Reverse }
726         else
727           output << n_("%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%{command}%{bold} to see why",
728                        "%{highlight}%{count} plugins failed to load%{highlight}: use %{bold}%{command}%{bold} to see why",
729                        @failed.length) %
730                     { :count => @failed.length, :highlight => Reverse,
731                       :bold => Bold, :command => "help failed plugins"}
732         end
733       end
734       output.join '; '
735     end
736
737     # return list of help topics (plugin names)
738     def helptopics
739       rv = status
740       @failures_shown = true
741       rv
742     end
743
744     def length
745       plugins.length
746     end
747
748     def core_length
749       core_modules.length
750     end
751
752     # return help for +topic+ (call associated plugin's help method)
753     def help(topic="")
754       case topic
755       when /fail(?:ed)?\s*plugins?.*(trace(?:back)?s?)?/
756         # debug "Failures: #{@failed.inspect}"
757         return _("no plugins failed to load") if @failed.empty?
758         return @failed.collect { |p|
759           _('%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %{reason}') % {
760               :highlight => Bold, :plugin => p[:name], :dir => p[:dir],
761               :exception => p[:reason].class, :reason => p[:reason],
762           } + if $1 && !p[:reason].backtrace.empty?
763                 _('at %{backtrace}') % {:backtrace => p[:reason].backtrace.join(', ')}
764               else
765                 ''
766               end
767         }.join("\n")
768       when /ignored?\s*plugins?/
769         return _('no plugins were ignored') if @ignored.empty?
770
771         tmp = Hash.new
772         @ignored.each do |p|
773           reason = p[:loaded] ? _('overruled by previous') : _(p[:reason].to_s)
774           ((tmp[p[:dir]] ||= Hash.new)[reason] ||= Array.new).push(p[:name])
775         end
776
777         return tmp.map do |dir, reasons|
778           # FIXME get rid of these string concatenations to make gettext easier
779           s = reasons.map { |r, list|
780             list.map { |_| _.sub(/\.rb$/, '') }.join(', ') + " (#{r})"
781           }.join('; ')
782           "in #{dir}: #{s}"
783         end.join('; ')
784       when /^(\S+)\s*(.*)$/
785         key = $1
786         params = $2
787
788         # Let's see if we can match a plugin by the given name
789         (core_modules + plugins).each { |p|
790           next unless p.name == key
791           begin
792             return p.help(key, params)
793           rescue Exception => err
794             #rescue TimeoutError, StandardError, NameError, SyntaxError => err
795             error report_error("#{p.botmodule_class} #{p.name} help() failed:", err)
796           end
797         }
798
799         # Nope, let's see if it's a command, and ask for help at the corresponding botmodule
800         k = key.to_sym
801         if commands.has_key?(k)
802           p = commands[k][:botmodule]
803           begin
804             return p.help(key, params)
805           rescue Exception => err
806             #rescue TimeoutError, StandardError, NameError, SyntaxError => err
807             error report_error("#{p.botmodule_class} #{p.name} help() failed:", err)
808           end
809         end
810       end
811       return false
812     end
813
814     def sort_modules
815       @sorted_modules = (core_modules + plugins).sort do |a, b|
816         a.priority <=> b.priority
817       end || []
818
819       @delegate_list.each_value do |list|
820         list.sort! {|a,b| a.priority <=> b.priority}
821       end
822     end
823
824     # call-seq: delegate</span><span class="method-args">(method, m, opts={})</span>
825     # <span class="method-name">delegate</span><span class="method-args">(method, opts={})
826     #
827     # see if each plugin handles _method_, and if so, call it, passing
828     # _m_ as a parameter (if present). BotModules are called in order of
829     # priority from lowest to highest.
830     #
831     # If the passed _m_ is a BasicUserMessage and is marked as #ignored?, it
832     # will only be delegated to plugins with negative priority. Conversely, if
833     # it's a fake message (see BotModule#fake_message), it will only be
834     # delegated to plugins with positive priority.
835     #
836     # Note that _m_ can also be an exploded Array, but in this case the last
837     # element of it cannot be a Hash, or it will be interpreted as the options
838     # Hash for delegate itself. The last element can be a subclass of a Hash, though.
839     # To be on the safe side, you can add an empty Hash as last parameter for delegate
840     # when calling it with an exploded Array:
841     #   @bot.plugins.delegate(method, *(args.push Hash.new))
842     #
843     # Currently supported options are the following:
844     # :above ::
845     #   if specified, the delegation will only consider plugins with a priority
846     #   higher than the specified value
847     # :below ::
848     #   if specified, the delegation will only consider plugins with a priority
849     #   lower than the specified value
850     #
851     def delegate(method, *args)
852       # if the priorities order of the delegate list is dirty,
853       # meaning some modules have been added or priorities have been
854       # changed, then the delegate list will need to be sorted before
855       # delegation.  This should always be true for the first delegation.
856       sort_modules unless @sorted_modules
857
858       opts = {}
859       opts.merge(args.pop) if args.last.class == Hash
860
861       m = args.first
862       if BasicUserMessage === m
863         # ignored messages should not be delegated
864         # to plugins with positive priority
865         opts[:below] ||= 0 if m.ignored?
866         # fake messages should not be delegated
867         # to plugins with negative priority
868         opts[:above] ||= 0 if m.recurse_depth > 0
869       end
870
871       above = opts[:above]
872       below = opts[:below]
873
874       # debug "Delegating #{method.inspect}"
875       ret = Array.new
876       if method.match(DEFAULT_DELEGATE_PATTERNS)
877         debug "fast-delegating #{method}"
878         m = method.to_sym
879         debug "no-one to delegate to" unless @delegate_list.has_key?(m)
880         return [] unless @delegate_list.has_key?(m)
881         @delegate_list[m].each { |p|
882           begin
883             prio = p.priority
884             unless (above and above >= prio) or (below and below <= prio)
885               ret.push p.send(method, *args)
886             end
887           rescue Exception => err
888             raise if err.kind_of?(SystemExit)
889             error report_error("#{p.botmodule_class} #{p.name} #{method}() failed:", err)
890             raise if err.kind_of?(BDB::Fatal)
891           end
892         }
893       else
894         debug "slow-delegating #{method}"
895         @sorted_modules.each { |p|
896           if(p.respond_to? method)
897             begin
898               # debug "#{p.botmodule_class} #{p.name} responds"
899               prio = p.priority
900               unless (above and above >= prio) or (below and below <= prio)
901                 ret.push p.send(method, *args)
902               end
903             rescue Exception => err
904               raise if err.kind_of?(SystemExit)
905               error report_error("#{p.botmodule_class} #{p.name} #{method}() failed:", err)
906               raise if err.kind_of?(BDB::Fatal)
907             end
908           end
909         }
910       end
911       return ret
912       # debug "Finished delegating #{method.inspect}"
913     end
914
915     # see if we have a plugin that wants to handle this message, if so, pass
916     # it to the plugin and return true, otherwise false
917     def privmsg(m)
918       debug "Delegating privmsg #{m.inspect} with pluginkey #{m.plugin.inspect}"
919       return unless m.plugin
920       k = m.plugin.to_sym
921       if commands.has_key?(k)
922         p = commands[k][:botmodule]
923         a = commands[k][:auth]
924         # We check here for things that don't check themselves
925         # (e.g. mapped things)
926         debug "Checking auth ..."
927         if a.nil? || @bot.auth.allow?(a, m.source, m.replyto)
928           debug "Checking response ..."
929           if p.respond_to?("privmsg")
930             begin
931               debug "#{p.botmodule_class} #{p.name} responds"
932               p.privmsg(m)
933             rescue Exception => err
934               raise if err.kind_of?(SystemExit)
935               error report_error("#{p.botmodule_class} #{p.name} privmsg() failed:", err)
936               raise if err.kind_of?(BDB::Fatal)
937             end
938             debug "Successfully delegated #{m.inspect}"
939             return true
940           else
941             debug "#{p.botmodule_class} #{p.name} is registered, but it doesn't respond to privmsg()"
942           end
943         else
944           debug "#{p.botmodule_class} #{p.name} is registered, but #{m.source} isn't allowed to call #{m.plugin.inspect} on #{m.replyto}"
945         end
946       else
947         debug "Command #{k} isn't handled"
948       end
949       return false
950     end
951
952     # delegate IRC messages, by delegating 'listen' first, and the actual method
953     # afterwards. Delegating 'privmsg' also delegates ctcp_listen and message
954     # as appropriate.
955     def irc_delegate(method, m)
956       delegate('listen', m)
957       if method.to_sym == :privmsg
958         delegate('ctcp_listen', m) if m.ctcp
959         delegate('message', m)
960         privmsg(m) if m.address? and not m.ignored?
961         delegate('unreplied', m) unless m.replied
962       else
963         delegate(method, m)
964       end
965     end
966   end
967
968   # Returns the only PluginManagerClass instance
969   def Plugins.manager
970     return PluginManagerClass.instance
971   end
972
973 end
974 end
975 end