Handles blocking a user access after a certain number of attempts. Lockable accepts two different strategies to unlock a user after it’s blocked: email and time. The former will send an email to the user when the lock happens, containing a link to unlock its account. The second will unlock the user automatically after some configured time (ie 2.hours). It’s also possible to setup lockable to use both email and time strategies.
Lockable adds the following options to
devise
:
* +maximum_attempts+: how many attempts should be accepted before blocking the user. * +lock_strategy+: lock the user account by :failed_attempts or :none. * +unlock_strategy+: unlock the user account by :time, :email, :both or :none. * +unlock_in+: the time you want to lock the user after to lock happens. Only available when unlock_strategy is :time or :both. * +unlock_keys+: the keys you want to use when locking and unlocking an account
Verifies whether a user is locked or not.
# File lib/devise/models/lockable.rb, line 46 def access_locked? locked_at && !lock_expired? end
Overwrites active_for_authentication? from Devise::Models::Activatable for locking purposes by verifying whether a user is active to sign in or not based on locked?
# File lib/devise/models/lockable.rb, line 62 def active_for_authentication? super && !access_locked? end
Overwrites invalid_message from Devise::Models::Authenticatable to define the correct reason for blocking the sign in.
# File lib/devise/models/lockable.rb, line 68 def inactive_message access_locked? ? :locked : super end
Lock a user setting its locked_at to actual time.
# File lib/devise/models/lockable.rb, line 26 def lock_access! self.locked_at = Time.now.utc if unlock_strategy_enabled?(:email) generate_unlock_token send_unlock_instructions end save(:validate => false) end
Resend the unlock instructions if the user is locked.
# File lib/devise/models/lockable.rb, line 56 def resend_unlock_token if_access_locked { send_unlock_instructions } end
Send unlock instructions by email
# File lib/devise/models/lockable.rb, line 51 def send_unlock_instructions self.devise_mailer.unlock_instructions(self).deliver end
Unlock a user by cleaning locket_at and failed_attempts.
# File lib/devise/models/lockable.rb, line 38 def unlock_access! self.locked_at = nil self.failed_attempts = 0 if respond_to?(:failed_attempts=) self.unlock_token = nil if respond_to?(:unlock_token=) save(:validate => false) end
Overwrites valid_for_authentication? from Devise::Models::Authenticatable for verifying whether a user is allowed to sign in or not. If the user is locked, it should never be allowed.
# File lib/devise/models/lockable.rb, line 75 def valid_for_authentication? return super unless persisted? && lock_strategy_enabled?(:failed_attempts) # Unlock the user if the lock is expired, no matter # if the user can login or not (wrong password, etc) unlock_access! if lock_expired? if super && !access_locked? self.failed_attempts = 0 save(:validate => false) true else self.failed_attempts ||= 0 self.failed_attempts += 1 if attempts_exceeded? lock_access! unless access_locked? return :locked else save(:validate => false) end false end end
# File lib/devise/models/lockable.rb, line 101 def attempts_exceeded? self.failed_attempts > self.class.maximum_attempts end
Generates unlock token
# File lib/devise/models/lockable.rb, line 106 def generate_unlock_token self.unlock_token = self.class.unlock_token end
Checks whether the record is locked or not, yielding to the block if it’s locked, otherwise adds an error to email.
# File lib/devise/models/lockable.rb, line 121 def if_access_locked if access_locked? yield else self.errors.add(:email, :not_locked) false end end
Tells if the lock is expired if :time unlock strategy is active
# File lib/devise/models/lockable.rb, line 111 def lock_expired? if unlock_strategy_enabled?(:time) locked_at && locked_at < self.class.unlock_in.ago else false end end