Module: Devise::Models::Lockable::ClassMethods
- Defined in:
- lib/devise/models/lockable.rb
Constant Summary collapse
- BOTH_STRATEGIES =
List of strategies that are enabled/supported if :both is used.
[:time, :email]
Instance Method Summary collapse
-
#lock_strategy_enabled?(strategy) ⇒ Boolean
Is the lock enabled for the given lock strategy?.
-
#send_unlock_instructions(attributes = {}) ⇒ Object
Attempt to find a user by its unlock keys.
-
#unlock_access_by_token(unlock_token) ⇒ Object
Find a user by its unlock token and try to unlock it.
-
#unlock_strategy_enabled?(strategy) ⇒ Boolean
Is the unlock enabled for the given unlock strategy?.
Instance Method Details
#lock_strategy_enabled?(strategy) ⇒ Boolean
Is the lock enabled for the given lock strategy?
198 199 200 |
# File 'lib/devise/models/lockable.rb', line 198 def lock_strategy_enabled?(strategy) self.lock_strategy == strategy end |
#send_unlock_instructions(attributes = {}) ⇒ Object
Attempt to find a user by its unlock keys. If a record is found, send new unlock instructions to it. If not user is found, returns a new user with an email not found error. Options must contain the user’s unlock keys
171 172 173 174 175 |
# File 'lib/devise/models/lockable.rb', line 171 def send_unlock_instructions(attributes={}) lockable = find_or_initialize_with_errors(unlock_keys, attributes, :not_found) lockable.resend_unlock_instructions if lockable.persisted? lockable end |
#unlock_access_by_token(unlock_token) ⇒ Object
Find a user by its unlock token and try to unlock it. If no user is found, returns a new user with an error. If the user is not locked, creates an error for the user Options must have the unlock_token
181 182 183 184 185 186 187 188 189 |
# File 'lib/devise/models/lockable.rb', line 181 def unlock_access_by_token(unlock_token) original_token = unlock_token unlock_token = Devise.token_generator.digest(self, :unlock_token, unlock_token) lockable = find_or_initialize_with_error_by(:unlock_token, unlock_token) lockable.unlock_access! if lockable.persisted? lockable.unlock_token = original_token lockable end |
#unlock_strategy_enabled?(strategy) ⇒ Boolean
Is the unlock enabled for the given unlock strategy?
192 193 194 195 |
# File 'lib/devise/models/lockable.rb', line 192 def unlock_strategy_enabled?(strategy) self.unlock_strategy == strategy || (self.unlock_strategy == :both && BOTH_STRATEGIES.include?(strategy)) end |