BCryptパスワードを設定して認証するためのメソッド
適応バージョン
- 3.1.0
- 3.2.3
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
BCryptパスワードを設定して認証するためのメソッド
使い方
has_secure_password(属性=:password, validations: バリデーション=true)
例
class User < ActiveRecord::Base
has_secure_password
has_secure_password :recovery_password, validations: false
end
user = User.new(name: 'david', password: '', password_confirmation: 'nomatch')
user.save #=> false, password required
user.password = 'mUc3m00RsqyRe'
user.save #=> false, confirmation doesn't match
user.password_confirmation = 'mUc3m00RsqyRe'
user.save #=> true
user.recovery_password = "42password"
user.recovery_password_digest #=> "$2a$04$iOfhwahFymCs5weB3BNH/uXkTG65HR.qpW.bNhEjFP3ftli3o5DQC"
user.save #=> true
user.authenticate('notright') #=> false
user.authenticate('mUc3m00RsqyRe') #=> user
user.authenticate_recovery_password('42password') #=> user
User.find_by(name: 'david')&.authenticate('notright') #=> false
User.find_by(name: 'david')&.authenticate('mUc3m00RsqyRe') #=> user