Class: ActiveModel::SecurePassword::InstanceMethodsOnActivation
- Inherits:
-
Module
- Object
- Module
- ActiveModel::SecurePassword::InstanceMethodsOnActivation
- Defined in:
- lib/active_model/secure_password.rb
Instance Method Summary collapse
-
#initialize(attribute) ⇒ InstanceMethodsOnActivation
constructor
A new instance of InstanceMethodsOnActivation.
Constructor Details
#initialize(attribute) ⇒ InstanceMethodsOnActivation
Returns a new instance of InstanceMethodsOnActivation.
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/active_model/secure_password.rb', line 149 def initialize(attribute) attr_reader attribute define_method("#{attribute}=") do |unencrypted_password| if unencrypted_password.nil? instance_variable_set("@#{attribute}", nil) self.public_send("#{attribute}_digest=", nil) elsif !unencrypted_password.empty? instance_variable_set("@#{attribute}", unencrypted_password) cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST : BCrypt::Engine.cost self.public_send("#{attribute}_digest=", BCrypt::Password.create(unencrypted_password, cost: cost)) end end attr_accessor :"#{attribute}_confirmation", :"#{attribute}_challenge" # Returns +self+ if the password is correct, otherwise +false+. # # class User < ActiveRecord::Base # has_secure_password validations: false # end # # user = User.new(name: 'david', password: 'mUc3m00RsqyRe') # user.save # user.authenticate_password('notright') # => false # user.authenticate_password('mUc3m00RsqyRe') # => user define_method("authenticate_#{attribute}") do |unencrypted_password| attribute_digest = public_send("#{attribute}_digest") attribute_digest.present? && BCrypt::Password.new(attribute_digest).is_password?(unencrypted_password) && self end # Returns the salt, a small chunk of random data added to the password before it's hashed. define_method("#{attribute}_salt") do attribute_digest = public_send("#{attribute}_digest") attribute_digest.present? ? BCrypt::Password.new(attribute_digest).salt : nil end alias_method :authenticate, :authenticate_password if attribute == :password end |