Sha256: c082b23a5e8435a97724ba5e55aba8e5c327f414e4f84082c00ad66683d33b43
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
# Password 是密码。 class Unidom::Visitor::Password < Unidom::Visitor::ApplicationRecord self.table_name = 'unidom_passwords' include Unidom::Common::Concerns::ModelExtension include Unidom::Visitor::Concerns::AsCredential validates :clear_text, presence: true, length: { in: 6..200 } validates :pepper_content, presence: true, length: { is: columns_hash['pepper_content'].limit } before_validation :generate_pepper_content def generate_pepper_content self.pepper_content = self.pepper_content||SecureRandom.hex(self.class.columns_hash['pepper_content'].limit/2) end def clear_text @clear_text end def clear_text=(password) @clear_text = password generate_pepper_content self.hashed_content = hash password end def matched?(password) hash(password)==self.hashed_content end def hash(clear_text) Digest::SHA512.hexdigest "#{::Rails.application.secrets[:secret_key_base]}#{clear_text}#{self.pepper_content}" end def change_to(new_password) visitor = authenticating.visitor soft_destroy authenticating.soft_destroy password = self.class.new clear_text: new_password, opened_at: Time.now if password.save Unidom::Visitor::Authenticating.authenticate visitor, password else nil end end private :hash end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unidom-visitor-1.12 | app/models/unidom/visitor/password.rb |
unidom-visitor-1.11.2 | app/models/unidom/visitor/password.rb |
unidom-visitor-1.11.1 | app/models/unidom/visitor/password.rb |