Module: Authlogic::ActsAsAuthentic::Password::Methods::InstanceMethods

Defined in:
lib/authlogic/acts_as_authentic/password.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#passwordObject

The password



178
179
180
181
# File 'lib/authlogic/acts_as_authentic/password.rb', line 178

def password
  return nil unless defined?(@password)
  @password
end

#password=(pass) ⇒ Object

This is a virtual method. Once a password is passed to it, it will create new password salt as well as encrypt the password.



185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/authlogic/acts_as_authentic/password.rb', line 185

def password=(pass)
  return if ignore_blank_passwords? && pass.blank?
  run_callbacks :password_set do
    @password = pass
    if password_salt_field
      send("#{password_salt_field}=", Authlogic::Random.friendly_token)
    end
    send(
      "#{crypted_password_field}=",
      crypto_provider.encrypt(*encrypt_arguments(@password, false))
    )
    @password_changed = true
  end
end

#reset_passwordObject Also known as: randomize_password

Resets the password to a random friendly token.



233
234
235
236
237
# File 'lib/authlogic/acts_as_authentic/password.rb', line 233

def reset_password
  friendly_token = Authlogic::Random.friendly_token
  self.password = friendly_token
  self.password_confirmation = friendly_token if self.class.require_password_confirmation
end

#reset_password!Object Also known as: randomize_password!

Resets the password to a random friendly token and then saves the record.



241
242
243
244
# File 'lib/authlogic/acts_as_authentic/password.rb', line 241

def reset_password!
  reset_password
  save_without_session_maintenance(validate: false)
end

#valid_password?(attempted_password, check_against_database = check_passwords_against_database? ) ⇒ Boolean

Accepts a raw password to determine if it is the correct password.

  • attempted_password [String] - password entered by user

  • check_against_database [boolean] - Should we check the password against the value in the database or the value in the object? Default taken from config option check_passwords_against_database. See config method for more information.

Returns:

  • (Boolean)


207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/authlogic/acts_as_authentic/password.rb', line 207

def valid_password?(
  attempted_password,
  check_against_database = check_passwords_against_database?
)
  crypted = crypted_password_to_validate_against(check_against_database)
  return false if attempted_password.blank? || crypted.blank?
  run_callbacks :password_verification do
    crypto_providers.each_with_index.any? do |encryptor, index|
      if encryptor_matches?(
        crypted,
        encryptor,
        attempted_password,
        check_against_database
      )
        if transition_password?(index, encryptor, check_against_database)
          transition_password(attempted_password)
        end
        true
      else
        false
      end
    end
  end
end