irclog: uniformize logging style
[rbot] / lib / rbot / botuser.rb
1 #-- vim:sw=2:et
2 #++
3 # :title: User management
4 #
5 # rbot user management
6 # Author:: Giuseppe Bilotta (giuseppe.bilotta@gmail.com)
7 # Copyright:: Copyright (c) 2006 Giuseppe Bilotta
8 # License:: GPLv2
9
10 require 'singleton'
11 require 'set'
12 require 'rbot/maskdb'
13
14 # This would be a good idea if it was failproof, but the truth
15 # is that other methods can indirectly modify the hash. *sigh*
16 #
17 # class AuthNotifyingHash < Hash
18 #   %w(clear default= delete delete_if replace invert
19 #      merge! update rehash reject! replace shift []= store).each { |m|
20 #     class_eval {
21 #       define_method(m) { |*a|
22 #         r = super(*a)
23 #         Irc::Bot::Auth.manager.set_changed
24 #         r
25 #       }
26 #     }
27 #   }
28 # end
29
30
31 module Irc
32 class Bot
33
34
35   # This module contains the actual Authentication stuff
36   #
37   module Auth
38
39     Config.register Config::StringValue.new( 'auth.password',
40       :default => 'rbotauth', :wizard => true,
41       :on_change => Proc.new {|bot, v| bot.auth.botowner.password = v},
42       :desc => _('Password for the bot owner'))
43     Config.register Config::BooleanValue.new( 'auth.login_by_mask',
44       :default => 'true',
45       :desc => _('Set false to prevent new botusers from logging in without a password when the user netmask is known'))
46     Config.register Config::BooleanValue.new( 'auth.autologin',
47       :default => 'true',
48       :desc => _('Set false to prevent new botusers from recognizing IRC users without a need to manually login'))
49     Config.register Config::BooleanValue.new( 'auth.autouser',
50       :default => 'false',
51       :desc => _('Set true to allow new botusers to be created automatically'))
52     # Config.register Config::IntegerValue.new( 'auth.default_level',
53     #   :default => 10, :wizard => true,
54     #   :desc => 'The default level for new/unknown users' )
55
56     # Generate a random password of length _l_
57     #
58     def Auth.random_password(l=8)
59       pwd = ""
60       l.times do
61         pwd << (rand(26) + (rand(2) == 0 ? 65 : 97) ).chr
62       end
63       return pwd
64     end
65
66
67     # An Irc::Bot::Auth::Command defines a command by its "path":
68     #
69     #   base::command::subcommand::subsubcommand::subsubsubcommand
70     #
71     class Command
72
73       attr_reader :command, :path
74
75       # A method that checks if a given _cmd_ is in a form that can be
76       # reduced into a canonical command path, and if so, returns it
77       #
78       def sanitize_command_path(cmd)
79         pre = cmd.to_s.downcase.gsub(/^\*?(?:::)?/,"").gsub(/::$/,"")
80         return pre if pre.empty?
81         return pre if pre =~ /^\S+(::\S+)*$/
82         raise TypeError, "#{cmd.inspect} is not a valid command"
83       end
84
85       # Creates a new Command from a given string; you can then access
86       # the command as a symbol with the :command method and the whole
87       # path as :path
88       #
89       #   Command.new("core::auth::save").path => [:"*", :"core", :"core::auth", :"core::auth::save"]
90       #
91       #   Command.new("core::auth::save").command => :"core::auth::save"
92       #
93       def initialize(cmd)
94         cmdpath = sanitize_command_path(cmd).split('::')
95         seq = cmdpath.inject(["*"]) { |list, cmd|
96           list << (list.length > 1 ? list.last + "::" : "") + cmd
97         }
98         @path = seq.map { |k|
99           k.to_sym
100         }
101         @command = path.last
102         debug "Created command #{@command.inspect} with path #{@path.pretty_inspect}"
103       end
104
105       # Returs self
106       def to_irc_auth_command
107         self
108       end
109
110     end
111
112   end
113
114 end
115 end
116
117
118 class String
119
120   # Returns an Irc::Bot::Auth::Comand from the receiver
121   def to_irc_auth_command
122     Irc::Bot::Auth::Command.new(self)
123   end
124
125 end
126
127
128 class Symbol
129
130   # Returns an Irc::Bot::Auth::Comand from the receiver
131   def to_irc_auth_command
132     Irc::Bot::Auth::Command.new(self)
133   end
134
135 end
136
137
138 module Irc
139 class Bot
140
141
142   module Auth
143
144
145     # This class describes a permission set
146     class PermissionSet
147
148       attr_reader :perm
149       # Create a new (empty) PermissionSet
150       #
151       def initialize
152         @perm = {}
153       end
154
155       # Inspection simply inspects the internal hash
156       def inspect
157         @perm.inspect
158       end
159
160       # Sets the permission for command _cmd_ to _val_,
161       #
162       def set_permission(str, val)
163         cmd = str.to_irc_auth_command
164         case val
165         when true, false
166           @perm[cmd.command] = val
167         when nil
168           @perm.delete(cmd.command)
169         else
170           raise TypeError, "#{val.inspect} must be true or false" unless [true,false].include?(val)
171         end
172       end
173
174       # Resets the permission for command _cmd_
175       #
176       def reset_permission(cmd)
177         set_permission(cmd, nil)
178       end
179
180       # Tells if command _cmd_ is permitted. We do this by returning
181       # the value of the deepest Command#path that matches.
182       #
183       def permit?(str)
184         cmd = str.to_irc_auth_command
185         # TODO user-configurable list of always-allowed commands,
186         # for admins that want to set permissions -* for everybody
187         return true if cmd.command == :login
188         allow = nil
189         cmd.path.reverse.each { |k|
190           if @perm.has_key?(k)
191             allow = @perm[k]
192             break
193           end
194         }
195         return allow
196       end
197
198     end
199
200
201     # This is the error that gets raised when an invalid password is met
202     #
203     class InvalidPassword < RuntimeError
204     end
205
206
207     # This is the basic class for bot users: they have a username, a
208     # password, a list of netmasks to match against, and a list of
209     # permissions. A BotUser can be marked as 'transient', usually meaning
210     # it's not intended for permanent storage. Transient BotUsers have lower
211     # priority than nontransient ones for autologin purposes.
212     #
213     # To initialize a BotUser, you pass a _username_ and an optional
214     # hash of options. Currently, only two options are recognized:
215     #
216     # transient:: true or false, determines if the BotUser is transient or
217     #             permanent (default is false, permanent BotUser).
218     #
219     #             Transient BotUsers are initialized by prepending an
220     #             asterisk (*) to the username, and appending a sanitized
221     #             version of the object_id. The username can be empty.
222     #             A random password is generated.
223     #
224     #             Permanent Botusers need the username as is, and no
225     #             password is generated.
226     #
227     # masks::     an array of Netmasks to initialize the NetmaskList. This
228     #             list is used as-is for permanent BotUsers.
229     #
230     #             Transient BotUsers will alter the list elements which are
231     #             Irc::User by globbing the nick and any initial nonletter
232     #             part of the ident.
233     #
234     #             The masks option is optional for permanent BotUsers, but
235     #             obligatory (non-empty) for transients.
236     #
237     class BotUser
238
239       attr_reader :username
240       attr_reader :password
241       attr_reader :netmasks
242       attr_reader :perm
243       attr_reader :perm_temp
244       attr_writer :login_by_mask
245       attr_writer :transient
246
247       def autologin=(vnew)
248         vold = @autologin
249         @autologin = vnew
250         if vold && !vnew
251           @netmasks.each { |n| Auth.manager.maskdb.remove(self, n) }
252         elsif vnew && !vold
253           @netmasks.each { |n| Auth.manager.maskdb.add(self, n) }
254         end
255       end
256
257       # Checks if the BotUser is transient
258       def transient?
259         @transient
260       end
261
262       # Checks if the BotUser is permanent (not transient)
263       def permanent?
264         !@transient
265       end
266
267       # Sets if the BotUser is permanent or not
268       def permanent=(bool)
269         @transient=!bool
270       end
271
272       # Make the BotUser permanent
273       def make_permanent(name)
274         raise TypeError, "permanent already" if permanent?
275         @username = BotUser.sanitize_username(name)
276         @transient = false
277         reset_autologin
278         reset_password # or not?
279         @netmasks.dup.each do |m|
280           delete_netmask(m)
281           add_netmask(m.generalize)
282         end
283       end
284
285       # Create a new BotUser with given username
286       def initialize(username, options={})
287         opts = {:transient => false}.merge(options)
288         @transient = opts[:transient]
289
290         if @transient
291           @username = "*"
292           @username << BotUser.sanitize_username(username) if username and not username.to_s.empty?
293           @username << BotUser.sanitize_username(object_id)
294           reset_password
295           @login_by_mask=true
296           @autologin=true
297         else
298           @username = BotUser.sanitize_username(username)
299           @password = nil
300           reset_login_by_mask
301           reset_autologin
302         end
303
304         @netmasks = NetmaskList.new
305         if opts.key?(:masks) and opts[:masks]
306           masks = opts[:masks]
307           masks = [masks] unless masks.respond_to?(:each)
308           masks.each { |m|
309             mask = m.to_irc_netmask
310             if @transient and User === m
311               mask.nick = "*"
312               mask.host = m.host.dup
313               mask.user = "*" + m.user.sub(/^\w?[^\w]+/,'')
314             end
315             add_netmask(mask) unless mask.to_s == "*"
316           }
317         end
318         raise "must provide a usable mask for transient BotUser #{@username}" if @transient and @netmasks.empty?
319
320         @perm = {}
321         @perm_temp = {}
322       end
323
324       # Inspection
325       def inspect
326         str = self.__to_s__[0..-2]
327         str << " (transient)" if @transient
328         str << ":"
329         str << " @username=#{@username.inspect}"
330         str << " @netmasks=#{@netmasks.inspect}"
331         str << " @perm=#{@perm.inspect}"
332         str << " @perm_temp=#{@perm_temp.inspect}" unless @perm_temp.empty?
333         str << " @login_by_mask=#{@login_by_mask}"
334         str << " @autologin=#{@autologin}"
335         str << ">"
336       end
337
338       # In strings
339       def to_s
340         @username
341       end
342
343       # Convert into a hash
344       def to_hash
345         {
346           :username => @username,
347           :password => @password,
348           :netmasks => @netmasks,
349           :perm => @perm,
350           :login_by_mask => @login_by_mask,
351           :autologin => @autologin,
352         }
353       end
354
355       # Do we allow logging in without providing the password?
356       #
357       def login_by_mask?
358         @login_by_mask
359       end
360
361       # Reset the login-by-mask option
362       #
363       def reset_login_by_mask
364         @login_by_mask = Auth.manager.bot.config['auth.login_by_mask'] unless defined?(@login_by_mask)
365       end
366
367       # Reset the autologin option
368       #
369       def reset_autologin
370         @autologin = Auth.manager.bot.config['auth.autologin'] unless defined?(@autologin)
371       end
372
373       # Do we allow automatic logging in?
374       #
375       def autologin?
376         @autologin
377       end
378
379       # Restore from hash
380       def from_hash(h)
381         @username = h[:username] if h.has_key?(:username)
382         @password = h[:password] if h.has_key?(:password)
383         @login_by_mask = h[:login_by_mask] if h.has_key?(:login_by_mask)
384         @autologin = h[:autologin] if h.has_key?(:autologin)
385         if h.has_key?(:netmasks)
386           @netmasks = h[:netmasks]
387           debug @netmasks
388           @netmasks.each { |n| Auth.manager.maskdb.add(self, n) } if @autologin
389           debug @netmasks
390         end
391         @perm = h[:perm] if h.has_key?(:perm)
392       end
393
394       # This method sets the password if the proposed new password
395       # is valid
396       def password=(pwd=nil)
397         pass = pwd.to_s
398         if pass.empty?
399           reset_password
400         else
401           begin
402             raise InvalidPassword, "#{pass} contains invalid characters" if pass !~ /^[\x21-\x7e]+$/
403             raise InvalidPassword, "#{pass} too short" if pass.length < 4
404             @password = pass
405           rescue InvalidPassword => e
406             raise e
407           rescue => e
408             raise InvalidPassword, "Exception #{e.inspect} while checking #{pass.inspect} (#{pwd.inspect})"
409           end
410         end
411       end
412
413       # Resets the password by creating a new onw
414       def reset_password
415         @password = Auth.random_password
416       end
417
418       # Sets the permission for command _cmd_ to _val_ on channel _chan_
419       #
420       def set_permission(cmd, val, chan="*")
421         k = chan.to_s.to_sym
422         @perm[k] = PermissionSet.new unless @perm.has_key?(k)
423         @perm[k].set_permission(cmd, val)
424       end
425
426       # Resets the permission for command _cmd_ on channel _chan_
427       #
428       def reset_permission(cmd, chan ="*")
429         set_permission(cmd, nil, chan)
430       end
431
432       # Sets the temporary permission for command _cmd_ to _val_ on channel _chan_
433       #
434       def set_temp_permission(cmd, val, chan="*")
435         k = chan.to_s.to_sym
436         @perm_temp[k] = PermissionSet.new unless @perm_temp.has_key?(k)
437         @perm_temp[k].set_permission(cmd, val)
438       end
439
440       # Resets the temporary permission for command _cmd_ on channel _chan_
441       #
442       def reset_temp_permission(cmd, chan ="*")
443         set_temp_permission(cmd, nil, chan)
444       end
445
446       # Checks if BotUser is allowed to do something on channel _chan_,
447       # or on all channels if _chan_ is nil
448       #
449       def permit?(cmd, chan=nil)
450         if chan
451           k = chan.to_s.to_sym
452         else
453           k = :*
454         end
455         allow = nil
456         pt = @perm.merge @perm_temp
457         if pt.has_key?(k)
458           allow = pt[k].permit?(cmd)
459         end
460         return allow
461       end
462
463       # Adds a Netmask
464       #
465       def add_netmask(mask)
466         m = mask.to_irc_netmask
467         @netmasks << m
468         if self.autologin?
469           Auth.manager.maskdb.add(self, m)
470           Auth.manager.logout_transients(m) if self.permanent?
471         end
472       end
473
474       # Removes a Netmask
475       #
476       def delete_netmask(mask)
477         m = mask.to_irc_netmask
478         @netmasks.delete(m)
479         Auth.manager.maskdb.remove(self, m) if self.autologin?
480       end
481
482       # Reset Netmasks, clearing @netmasks
483       #
484       def reset_netmasks
485         @netmasks.each { |m|
486           Auth.manager.maskdb.remove(self, m) if self.autologin?
487         }
488         @netmasks.clear
489       end
490
491       # This method checks if BotUser has a Netmask that matches _user_
492       #
493       def knows?(usr)
494         user = usr.to_irc_user
495         !!@netmasks.find { |n| user.matches? n }
496       end
497
498       # This method gets called when User _user_ wants to log in.
499       # It returns true or false depending on whether the password
500       # is right. If it is, the Netmask of the user is added to the
501       # list of acceptable Netmask unless it's already matched.
502       def login(user, password=nil)
503         if password == @password or (password.nil? and (@login_by_mask || @autologin) and knows?(user))
504           add_netmask(user) unless knows?(user)
505           debug "#{user} logged in as #{self.inspect}"
506           return true
507         else
508           return false
509         end
510       end
511
512       # # This method gets called when User _user_ has logged out as this BotUser
513       # def logout(user)
514       #   delete_netmask(user) if knows?(user)
515       # end
516
517       # This method sanitizes a username by chomping, downcasing
518       # and replacing any nonalphanumeric character with _
519       #
520       def BotUser.sanitize_username(name)
521         candidate = name.to_s.chomp.downcase.gsub(/[^a-z0-9]/,"_")
522         raise "sanitized botusername #{candidate} too short" if candidate.length < 3
523         return candidate
524       end
525
526     end
527
528     # This is the default BotUser: it's used for all users which haven't
529     # identified with the bot
530     #
531     class DefaultBotUserClass < BotUser
532
533       private :add_netmask, :delete_netmask
534
535       include Singleton
536
537       # The default BotUser is named 'everyone'
538       #
539       def initialize
540         reset_login_by_mask
541         reset_autologin
542         super("everyone")
543         @default_perm = PermissionSet.new
544       end
545
546       # This method returns without changing anything
547       #
548       def login_by_mask=(val)
549         debug "Tried to change the login-by-mask for default bot user, ignoring"
550         return @login_by_mask
551       end
552
553       # The default botuser allows logins by mask
554       #
555       def reset_login_by_mask
556         @login_by_mask = true
557       end
558
559       # This method returns without changing anything
560       #
561       def autologin=(val)
562         debug "Tried to change the autologin for default bot user, ignoring"
563         return
564       end
565
566       # The default botuser doesn't allow autologin (meaningless)
567       #
568       def reset_autologin
569         @autologin = false
570       end
571
572       # Sets the default permission for the default user (i.e. the ones
573       # set by the BotModule writers) on all channels
574       #
575       def set_default_permission(cmd, val)
576         @default_perm.set_permission(Command.new(cmd), val)
577         debug "Default permissions now: #{@default_perm.pretty_inspect}"
578       end
579
580       # default knows everybody
581       #
582       def knows?(user)
583         return true if user.to_irc_user
584       end
585
586       # We always allow logging in as the default user
587       def login(user, password)
588         return true
589       end
590
591       # DefaultBotUser will check the default_perm after checking
592       # the global ones
593       # or on all channels if _chan_ is nil
594       #
595       def permit?(cmd, chan=nil)
596         allow = super(cmd, chan)
597         if allow.nil? && chan.nil?
598           allow = @default_perm.permit?(cmd)
599         end
600         return allow
601       end
602
603     end
604
605     # Returns the only instance of DefaultBotUserClass
606     #
607     def Auth.defaultbotuser
608       return DefaultBotUserClass.instance
609     end
610
611     # This is the BotOwner: he can do everything
612     #
613     class BotOwnerClass < BotUser
614
615       include Singleton
616
617       def initialize
618         @login_by_mask = false
619         @autologin = true
620         super("owner")
621       end
622
623       def permit?(cmd, chan=nil)
624         return true
625       end
626
627     end
628
629     # Returns the only instance of BotOwnerClass
630     #
631     def Auth.botowner
632       return BotOwnerClass.instance
633     end
634
635
636     class BotUser
637       # Check if the current BotUser is the default one
638       def default?
639         return DefaultBotUserClass === self
640       end
641
642       # Check if the current BotUser is the owner
643       def owner?
644         return BotOwnerClass === self
645       end
646     end
647
648
649     # This is the ManagerClass singleton, used to manage
650     # Irc::User/Irc::Bot::Auth::BotUser connections and everything
651     #
652     class ManagerClass
653
654       include Singleton
655
656       attr_reader :maskdb
657       attr_reader :everyone
658       attr_reader :botowner
659       attr_reader :bot
660
661       # The instance manages two <code>Hash</code>es: one that maps
662       # <code>Irc::User</code>s onto <code>BotUser</code>s, and the other that maps
663       # usernames onto <code>BotUser</code>
664       def initialize
665         @everyone = Auth::defaultbotuser
666         @botowner = Auth::botowner
667         bot_associate(nil)
668       end
669
670       def bot_associate(bot)
671         raise "Cannot associate with a new bot! Save first" if defined?(@has_changes) && @has_changes
672
673         reset_hashes
674
675         # Associated bot
676         @bot = bot
677
678         # This variable is set to true when there have been changes
679         # to the botusers list, so that we know when to save
680         @has_changes = false
681       end
682
683       def set_changed
684         @has_changes = true
685       end
686
687       def reset_changed
688         @has_changes = false
689       end
690
691       def changed?
692         @has_changes
693       end
694
695       # resets the hashes
696       def reset_hashes
697         @botusers = Hash.new
698         @maskdb = NetmaskDb.new
699         @allbotusers = Hash.new
700         [everyone, botowner].each do |x|
701           @allbotusers[x.username.to_sym] = x
702         end
703       end
704
705       def load_array(ary, forced)
706         unless ary
707           warning "Tried to load an empty array"
708           return
709         end
710         raise "Won't load with unsaved changes" if @has_changes and not forced
711         reset_hashes
712         ary.each { |x|
713           raise TypeError, "#{x} should be a Hash" unless x.kind_of?(Hash)
714           u = x[:username]
715           unless include?(u)
716             create_botuser(u)
717           end
718           get_botuser(u).from_hash(x)
719           get_botuser(u).transient = false
720         }
721         @has_changes=false
722       end
723
724       def save_array
725         @allbotusers.values.map { |x|
726           x.transient? ? nil : x.to_hash
727         }.compact
728       end
729
730       # checks if we know about a certain BotUser username
731       def include?(botusername)
732         @allbotusers.has_key?(botusername.to_sym)
733       end
734
735       # Maps <code>Irc::User</code> to BotUser
736       def irc_to_botuser(ircuser)
737         logged = @botusers[ircuser.to_irc_user]
738         return logged if logged
739         return autologin(ircuser)
740       end
741
742       # creates a new BotUser
743       def create_botuser(name, password=nil)
744         n = BotUser.sanitize_username(name)
745         k = n.to_sym
746         raise "botuser #{n} exists" if include?(k)
747         bu = BotUser.new(n)
748         bu.password = password
749         @allbotusers[k] = bu
750         return bu
751       end
752
753       # returns the botuser with name _name_
754       def get_botuser(name)
755         @allbotusers.fetch(BotUser.sanitize_username(name).to_sym)
756       end
757
758       # Logs Irc::User _user_ in to BotUser _botusername_ with password _pwd_
759       #
760       # raises an error if _botusername_ is not a known BotUser username
761       #
762       # It is possible to autologin by Netmask, on request
763       #
764       def login(user, botusername, pwd=nil)
765         ircuser = user.to_irc_user
766         n = BotUser.sanitize_username(botusername)
767         k = n.to_sym
768         raise "No such BotUser #{n}" unless include?(k)
769         if @botusers.has_key?(ircuser)
770           return true if @botusers[ircuser].username == n
771           # TODO
772           # @botusers[ircuser].logout(ircuser)
773         end
774         bu = @allbotusers[k]
775         if bu.login(ircuser, pwd)
776           @botusers[ircuser] = bu
777           return true
778         end
779         return false
780       end
781
782       # Tries to auto-login Irc::User _user_ by looking at the known botusers that allow autologin
783       # and trying to login without a password
784       #
785       def autologin(user)
786         ircuser = user.to_irc_user
787         debug "Trying to autologin #{ircuser}"
788         return @botusers[ircuser] if @botusers.has_key?(ircuser)
789         bu = maskdb.find(ircuser)
790         if bu
791           debug "trying #{bu}"
792           bu.login(ircuser) or raise '...what?!'
793           @botusers[ircuser] = bu
794           return bu
795         end
796         # Finally, create a transient if we're set to allow it
797         if @bot.config['auth.autouser']
798           bu = create_transient_botuser(ircuser)
799           @botusers[ircuser] = bu
800           return bu
801         end
802         return everyone
803       end
804
805       # Creates a new transient BotUser associated with Irc::User _user_,
806       # automatically logging him in. Note that transient botuser creation can
807       # fail, typically if we don't have the complete user netmask (e.g. for
808       # messages coming in from a linkbot)
809       #
810       def create_transient_botuser(user)
811         ircuser = user.to_irc_user
812         bu = everyone
813         begin
814           bu = BotUser.new(ircuser, :transient => true, :masks => ircuser)
815           bu.login(ircuser)
816         rescue
817           warning "failed to create transient for #{user}"
818           error $!
819         end
820         return bu
821       end
822
823       # Logs out any Irc::User matching Irc::Netmask _m_ and logged in
824       # to a transient BotUser
825       #
826       def logout_transients(m)
827         debug "to check: #{@botusers.keys.join ' '}"
828         @botusers.keys.each do |iu|
829           debug "checking #{iu.fullform} against #{m.fullform}"
830           bu = @botusers[iu]
831           bu.transient? or next
832           iu.matches?(m) or next
833           @botusers.delete(iu).autologin = false
834         end
835       end
836
837       # Makes transient BotUser _user_ into a permanent BotUser
838       # named _name_; if _user_ is an Irc::User, act on the transient
839       # BotUser (if any) it's logged in as
840       #
841       def make_permanent(user, name)
842         buname = BotUser.sanitize_username(name)
843         # TODO merge BotUser instead?
844         raise "there's already a BotUser called #{name}" if include?(buname)
845
846         tuser = nil
847         case user
848         when String, Irc::User
849           tuser = irc_to_botuser(user)
850         when BotUser
851           tuser = user
852         else
853           raise TypeError, "sorry, don't know how to make #{user.class} into a permanent BotUser"
854         end
855         return nil unless tuser
856         raise TypeError, "#{tuser} is not transient" unless tuser.transient?
857
858         tuser.make_permanent(buname)
859         @allbotusers[tuser.username.to_sym] = tuser
860
861         return tuser
862       end
863
864       # Checks if User _user_ can do _cmd_ on _chan_.
865       #
866       # Permission are checked in this order, until a true or false
867       # is returned:
868       # * associated BotUser on _chan_
869       # * associated BotUser on all channels
870       # * everyone on _chan_
871       # * everyone on all channels
872       #
873       def permit?(user, cmdtxt, channel=nil)
874         if user.class <= BotUser
875           botuser = user
876         else
877           botuser = irc_to_botuser(user)
878         end
879         cmd = cmdtxt.to_irc_auth_command
880
881         chan = channel
882         case chan
883         when User
884           chan = "?"
885         when Channel
886           chan = chan.name
887         end
888
889         allow = nil
890
891         allow = botuser.permit?(cmd, chan) if chan
892         return allow unless allow.nil?
893         allow = botuser.permit?(cmd)
894         return allow unless allow.nil?
895
896         unless botuser == everyone
897           allow = everyone.permit?(cmd, chan) if chan
898           return allow unless allow.nil?
899           allow = everyone.permit?(cmd)
900           return allow unless allow.nil?
901         end
902
903         raise "Could not check permission for user #{user.inspect} to run #{cmdtxt.inspect} on #{chan.inspect}"
904       end
905
906       # Checks if command _cmd_ is allowed to User _user_ on _chan_, optionally
907       # telling if the user is authorized
908       #
909       def allow?(cmdtxt, user, chan=nil)
910         if permit?(user, cmdtxt, chan)
911           return true
912         else
913           # cmds = cmdtxt.split('::')
914           # @bot.say chan, "you don't have #{cmds.last} (#{cmds.first}) permissions here" if chan
915           @bot.say chan, _("%{user}, you don't have '%{command}' permissions here") %
916                         {:user=>user, :command=>cmdtxt} if chan
917           return false
918         end
919       end
920
921     end
922
923     # Returns the only instance of ManagerClass
924     #
925     def Auth.manager
926       return ManagerClass.instance
927     end
928
929   end
930 end
931
932   class User
933
934     # A convenience method to automatically found the botuser
935     # associated with the receiver
936     #
937     def botuser
938       Irc::Bot::Auth.manager.irc_to_botuser(self)
939     end
940   end
941
942 end