3 # :title: User management
\r
5 # rbot user management
\r
6 # Author:: Giuseppe Bilotta (giuseppe.bilotta@gmail.com)
\r
7 # Copyright:: Copyright (c) 2006 Giuseppe Bilotta
\r
16 # This module contains the actual Authentication stuff
\r
20 BotConfig.register BotConfigStringValue.new( 'auth.password',
\r
21 :default => 'rbotauth', :wizard => true,
\r
22 :desc => 'Password for the bot owner' )
\r
23 BotConfig.register BotConfigBooleanValue.new( 'auth.login_by_mask',
\r
25 :desc => 'Set false to prevent new botusers from logging in without a password when the user netmask is known')
\r
26 BotConfig.register BotConfigBooleanValue.new( 'auth.autologin',
\r
28 :desc => 'Set false to prevent new botusers from recognizing IRC users without a need to manually login')
\r
29 # BotConfig.register BotConfigIntegerValue.new( 'auth.default_level',
\r
30 # :default => 10, :wizard => true,
\r
31 # :desc => 'The default level for new/unknown users' )
\r
33 # Generate a random password of length _l_
\r
35 def Auth.random_password(l=8)
\r
38 pwd += (rand(26) + (rand(2) == 0 ? 65 : 97) ).chr
\r
44 # An Irc::Auth::Command defines a command by its "path":
\r
46 # base::command::subcommand::subsubcommand::subsubsubcommand
\r
50 attr_reader :command, :path
\r
52 # A method that checks if a given _cmd_ is in a form that can be
\r
53 # reduced into a canonical command path, and if so, returns it
\r
55 def sanitize_command_path(cmd)
\r
56 pre = cmd.to_s.downcase.gsub(/^\*?(?:::)?/,"").gsub(/::$/,"")
\r
57 return pre if pre.empty?
\r
58 return pre if pre =~ /^\S+(::\S+)*$/
\r
59 raise TypeError, "#{cmd.inspect} is not a valid command"
\r
62 # Creates a new Command from a given string; you can then access
\r
63 # the command as a symbol with the :command method and the whole
\r
66 # Command.new("core::auth::save").path => [:"*", :"core", :"core::auth", :"core::auth::save"]
\r
68 # Command.new("core::auth::save").command => :"core::auth::save"
\r
71 cmdpath = sanitize_command_path(cmd).split('::')
\r
72 seq = cmdpath.inject(["*"]) { |list, cmd|
\r
73 list << (list.length > 1 ? list.last + "::" : "") + cmd
\r
75 @path = seq.map { |k|
\r
78 @command = path.last
\r
79 debug "Created command #{@command.inspect} with path #{@path.join(', ')}"
\r
83 def to_irc_auth_command
\r
96 # Returns an Irc::Auth::Comand from the receiver
\r
97 def to_irc_auth_command
\r
98 Irc::Auth::Command.new(self)
\r
110 # This class describes a permission set
\r
111 class PermissionSet
\r
114 # Create a new (empty) PermissionSet
\r
120 # Inspection simply inspects the internal hash
\r
125 # Sets the permission for command _cmd_ to _val_,
\r
127 def set_permission(str, val)
\r
128 cmd = str.to_irc_auth_command
\r
131 @perm[cmd.command] = val
\r
133 @perm.delete(cmd.command)
\r
135 raise TypeError, "#{val.inspect} must be true or false" unless [true,false].include?(val)
\r
139 # Resets the permission for command _cmd_
\r
141 def reset_permission(cmd)
\r
142 set_permission(cmd, nil)
\r
145 # Tells if command _cmd_ is permitted. We do this by returning
\r
146 # the value of the deepest Command#path that matches.
\r
149 cmd = str.to_irc_auth_command
\r
151 cmd.path.reverse.each { |k|
\r
152 if @perm.has_key?(k)
\r
163 # This is the error that gets raised when an invalid password is met
\r
165 class InvalidPassword < RuntimeError
\r
169 # This is the basic class for bot users: they have a username, a password,
\r
170 # a list of netmasks to match against, and a list of permissions.
\r
174 attr_reader :username
\r
175 attr_reader :password
\r
176 attr_reader :netmasks
\r
178 attr_writer :login_by_mask
\r
179 attr_writer :autologin
\r
181 # Create a new BotUser with given username
\r
182 def initialize(username)
\r
183 @username = BotUser.sanitize_username(username)
\r
185 @netmasks = NetmaskList.new
\r
187 reset_login_by_mask
\r
193 str = "<#{self.class}:#{'0x%08x' % self.object_id}:"
\r
194 str << " @username=#{@username.inspect}"
\r
195 str << " @netmasks=#{@netmasks.inspect}"
\r
196 str << " @perm=#{@perm.inspect}"
\r
197 str << " @login_by_mask=#{@login_by_mask}"
\r
198 str << " @autologin=#{@autologin}"
\r
207 # Convert into a hash
\r
210 :username => @username,
\r
211 :password => @password,
\r
212 :netmasks => @netmasks,
\r
214 :login_by_mask => @login_by_mask,
\r
215 :autologin => @autologin
\r
219 # Do we allow logging in without providing the password?
\r
225 # Reset the login-by-mask option
\r
227 def reset_login_by_mask
\r
228 @login_by_mask = Auth.authmanager.bot.config['auth.login_by_mask'] unless defined?(@login_by_mask)
\r
231 # Reset the autologin option
\r
233 def reset_autologin
\r
234 @autologin = Auth.authmanager.bot.config['auth.autologin'] unless defined?(@autologin)
\r
237 # Do we allow automatic logging in?
\r
243 # Restore from hash
\r
245 @username = h[:username] if h.has_key?(:username)
\r
246 @password = h[:password] if h.has_key?(:password)
\r
247 @netmasks = h[:netmasks] if h.has_key?(:netmasks)
\r
248 @perm = h[:perm] if h.has_key?(:perm)
\r
249 @login_by_mask = h[:login_by_mask] if h.has_key?(:login_by_mask)
\r
250 @autologin = h[:autologin] if h.has_key?(:autologin)
\r
253 # This method sets the password if the proposed new password
\r
255 def password=(pwd=nil)
\r
258 raise InvalidPassword, "#{pwd} contains invalid characters" if pwd !~ /^[A-Za-z0-9]+$/
\r
259 raise InvalidPassword, "#{pwd} too short" if pwd.length < 4
\r
261 rescue InvalidPassword => e
\r
264 raise InvalidPassword, "Exception #{e.inspect} while checking #{pwd}"
\r
271 # Resets the password by creating a new onw
\r
273 @password = Auth.random_password
\r
276 # Sets the permission for command _cmd_ to _val_ on channel _chan_
\r
278 def set_permission(cmd, val, chan="*")
\r
279 k = chan.to_s.to_sym
\r
280 @perm[k] = PermissionSet.new unless @perm.has_key?(k)
\r
281 @perm[k].set_permission(cmd, val)
\r
284 # Resets the permission for command _cmd_ on channel _chan_
\r
286 def reset_permission(cmd, chan ="*")
\r
287 set_permission(cmd, nil, chan)
\r
290 # Checks if BotUser is allowed to do something on channel _chan_,
\r
291 # or on all channels if _chan_ is nil
\r
293 def permit?(cmd, chan=nil)
\r
295 k = chan.to_s.to_sym
\r
300 if @perm.has_key?(k)
\r
301 allow = @perm[k].permit?(cmd)
\r
308 def add_netmask(mask)
\r
309 @netmasks << mask.to_irc_netmask
\r
312 # Removes a Netmask
\r
314 def delete_netmask(mask)
\r
315 m = mask.to_irc_netmask
\r
316 @netmasks.delete(m)
\r
319 # Removes all <code>Netmask</code>s
\r
322 @netmasks = NetmaskList.new
\r
325 # This method checks if BotUser has a Netmask that matches _user_
\r
328 user = usr.to_irc_user
\r
330 @netmasks.each { |n|
\r
331 if user.matches?(n)
\r
339 # This method gets called when User _user_ wants to log in.
\r
340 # It returns true or false depending on whether the password
\r
341 # is right. If it is, the Netmask of the user is added to the
\r
342 # list of acceptable Netmask unless it's already matched.
\r
343 def login(user, password)
\r
344 if password == @password or (password.nil? and (@login_by_mask || @autologin) and knows?(user))
\r
345 add_netmask(user) unless knows?(user)
\r
346 debug "#{user} logged in as #{self.inspect}"
\r
353 # # This method gets called when User _user_ has logged out as this BotUser
\r
355 # delete_netmask(user) if knows?(user)
\r
358 # This method sanitizes a username by chomping, downcasing
\r
359 # and replacing any nonalphanumeric character with _
\r
361 def BotUser.sanitize_username(name)
\r
362 candidate = name.to_s.chomp.downcase.gsub(/[^a-z0-9]/,"_")
\r
363 raise "sanitized botusername #{candidate} too short" if candidate.length < 3
\r
370 # This is the default BotUser: it's used for all users which haven't
\r
371 # identified with the bot
\r
373 class DefaultBotUserClass < BotUser
\r
375 private :add_netmask, :delete_netmask
\r
379 # The default BotUser is named 'everyone'
\r
382 reset_login_by_mask
\r
385 @default_perm = PermissionSet.new
\r
388 # This method returns without changing anything
\r
390 def login_by_mask=(val)
\r
391 debug "Tried to change the login-by-mask for default bot user, ignoring"
\r
392 return @login_by_mask
\r
395 # The default botuser allows logins by mask
\r
397 def reset_login_by_mask
\r
398 @login_by_mask = true
\r
401 # This method returns without changing anything
\r
403 def autologin=(val)
\r
404 debug "Tried to change the autologin for default bot user, ignoring"
\r
408 # The default botuser doesn't allow autologin (meaningless)
\r
410 def reset_autologin
\r
414 # Sets the default permission for the default user (i.e. the ones
\r
415 # set by the BotModule writers) on all channels
\r
417 def set_default_permission(cmd, val)
\r
418 @default_perm.set_permission(Command.new(cmd), val)
\r
419 debug "Default permissions now:\n#{@default_perm.inspect}"
\r
422 # default knows everybody
\r
425 return true if user.to_irc_user
\r
428 # We always allow logging in as the default user
\r
429 def login(user, password)
\r
433 # Resets the NetmaskList
\r
436 add_netmask("*!*@*")
\r
439 # DefaultBotUser will check the default_perm after checking
\r
441 # or on all channels if _chan_ is nil
\r
443 def permit?(cmd, chan=nil)
\r
444 allow = super(cmd, chan)
\r
445 if allow.nil? && chan.nil?
\r
446 allow = @default_perm.permit?(cmd)
\r
453 # Returns the only instance of DefaultBotUserClass
\r
455 def Auth.defaultbotuser
\r
456 return DefaultBotUserClass.instance
\r
459 # This is the BotOwner: he can do everything
\r
461 class BotOwnerClass < BotUser
\r
466 @login_by_mask = false
\r
471 def permit?(cmd, chan=nil)
\r
477 # Returns the only instance of BotOwnerClass
\r
480 return BotOwnerClass.instance
\r
484 # This is the AuthManagerClass singleton, used to manage User/BotUser connections and
\r
487 class AuthManagerClass
\r
491 attr_reader :everyone
\r
492 attr_reader :botowner
\r
495 # The instance manages two <code>Hash</code>es: one that maps
\r
496 # <code>Irc::User</code>s onto <code>BotUser</code>s, and the other that maps
\r
497 # usernames onto <code>BotUser</code>
\r
499 @everyone = Auth::defaultbotuser
\r
500 @botowner = Auth::botowner
\r
504 def bot_associate(bot)
\r
505 raise "Cannot associate with a new bot! Save first" if defined?(@has_changes) && @has_changes
\r
512 # This variable is set to true when there have been changes
\r
513 # to the botusers list, so that we know when to save
\r
514 @has_changes = false
\r
518 @has_changes = true
\r
522 @has_changes = false
\r
529 # resets the hashes
\r
531 @botusers = Hash.new
\r
532 @allbotusers = Hash.new
\r
533 [everyone, botowner].each { |x|
\r
534 @allbotusers[x.username.to_sym] = x
\r
538 def load_array(ary, forced)
\r
539 raise "Won't load with unsaved changes" if @has_changes and not forced
\r
542 raise TypeError, "#{x} should be a Hash" unless x.kind_of?(Hash)
\r
547 get_botuser(u).from_hash(x)
\r
553 @allbotusers.values.map { |x|
\r
558 # checks if we know about a certain BotUser username
\r
559 def include?(botusername)
\r
560 @allbotusers.has_key?(botusername.to_sym)
\r
563 # Maps <code>Irc::User</code> to BotUser
\r
564 def irc_to_botuser(ircuser)
\r
565 logged = @botusers[ircuser.to_irc_user]
\r
566 return logged if logged
\r
567 return autologin(ircuser)
\r
570 # creates a new BotUser
\r
571 def create_botuser(name, password=nil)
\r
572 n = BotUser.sanitize_username(name)
\r
574 raise "botuser #{n} exists" if include?(k)
\r
575 bu = BotUser.new(n)
\r
576 bu.password = password
\r
577 @allbotusers[k] = bu
\r
581 # returns the botuser with name _name_
\r
582 def get_botuser(name)
\r
583 @allbotusers.fetch(BotUser.sanitize_username(name).to_sym)
\r
586 # Logs Irc::User _user_ in to BotUser _botusername_ with password _pwd_
\r
588 # raises an error if _botusername_ is not a known BotUser username
\r
590 # It is possible to autologin by Netmask, on request
\r
592 def login(user, botusername, pwd=nil)
\r
593 ircuser = user.to_irc_user
\r
594 n = BotUser.sanitize_username(botusername)
\r
596 raise "No such BotUser #{n}" unless include?(k)
\r
597 if @botusers.has_key?(ircuser)
\r
598 return true if @botusers[ircuser].username == n
\r
600 # @botusers[ircuser].logout(ircuser)
\r
602 bu = @allbotusers[k]
\r
603 if bu.login(ircuser, pwd)
\r
604 @botusers[ircuser] = bu
\r
610 # Tries to auto-login Irc::User _user_ by looking at the known botusers that allow autologin
\r
611 # and trying to login without a password
\r
613 def autologin(user)
\r
614 ircuser = user.to_irc_user
\r
615 debug "Trying to autlogin #{ircuser}"
\r
616 return @botusers[ircuser] if @botusers.has_key?(ircuser)
\r
617 @allbotusers.each { |n, bu|
\r
618 debug "Checking with #{n}"
\r
619 return bu if bu.autologin? and login(ircuser, n)
\r
624 # Checks if User _user_ can do _cmd_ on _chan_.
\r
626 # Permission are checked in this order, until a true or false
\r
628 # * associated BotUser on _chan_
\r
629 # * associated BotUser on all channels
\r
630 # * everyone on _chan_
\r
631 # * everyone on all channels
\r
633 def permit?(user, cmdtxt, channel=nil)
\r
634 if user.class <= BotUser
\r
637 botuser = irc_to_botuser(user)
\r
639 cmd = cmdtxt.to_irc_auth_command
\r
651 allow = botuser.permit?(cmd, chan) if chan
\r
652 return allow unless allow.nil?
\r
653 allow = botuser.permit?(cmd)
\r
654 return allow unless allow.nil?
\r
656 unless botuser == everyone
\r
657 allow = everyone.permit?(cmd, chan) if chan
\r
658 return allow unless allow.nil?
\r
659 allow = everyone.permit?(cmd)
\r
660 return allow unless allow.nil?
\r
663 raise "Could not check permission for user #{user.inspect} to run #{cmdtxt.inspect} on #{chan.inspect}"
\r
666 # Checks if command _cmd_ is allowed to User _user_ on _chan_, optionally
\r
667 # telling if the user is authorized
\r
669 def allow?(cmdtxt, user, chan=nil)
\r
670 if permit?(user, cmdtxt, chan)
\r
673 # cmds = cmdtxt.split('::')
\r
674 # @bot.say chan, "you don't have #{cmds.last} (#{cmds.first}) permissions here" if chan
\r
675 @bot.say chan, "#{user}, you don't have '#{cmdtxt}' permissions here" if chan
\r
682 # Returns the only instance of AuthManagerClass
\r
684 def Auth.authmanager
\r
685 return AuthManagerClass.instance
\r