2010-12-18 16:38:05 -05:00
|
|
|
module ActiveModel
|
|
|
|
module SecurePassword
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2014-06-14 03:05:31 -04:00
|
|
|
# BCrypt hash function can handle maximum 72 characters, and if we pass
|
|
|
|
# password of length more than 72 characters it ignores extra characters.
|
|
|
|
# Hence need to put a restriction on password length.
|
|
|
|
MAX_PASSWORD_LENGTH_ALLOWED = 72
|
|
|
|
|
2013-08-28 13:21:16 -04:00
|
|
|
class << self
|
|
|
|
attr_accessor :min_cost # :nodoc:
|
|
|
|
end
|
2012-11-17 12:21:47 -05:00
|
|
|
self.min_cost = false
|
2012-11-14 10:42:54 -05:00
|
|
|
|
2010-12-18 16:38:05 -05:00
|
|
|
module ClassMethods
|
2010-12-18 22:09:07 -05:00
|
|
|
# Adds methods to set and authenticate against a BCrypt password.
|
2013-12-24 06:39:41 -05:00
|
|
|
# This mechanism requires you to have a +password_digest+ attribute.
|
2010-12-19 04:39:54 -05:00
|
|
|
#
|
2014-06-14 09:48:24 -04:00
|
|
|
# The following validations are added automatically:
|
|
|
|
# * Password must be present on creation
|
|
|
|
# * Password length should be less than or equal to 72 characters
|
|
|
|
# * Confirmation of password (using a +password_confirmation+ attribute)
|
2010-12-18 16:38:05 -05:00
|
|
|
#
|
2014-06-14 09:48:24 -04:00
|
|
|
# If validations are not needed, pass <tt>validations: false</tt> as an
|
|
|
|
# argument. More validations can be added if required.
|
|
|
|
#
|
|
|
|
# If password confirmation validation is not needed, do not set any
|
2013-06-25 06:25:03 -04:00
|
|
|
# value to the password_confirmation attribute and the validation
|
2012-11-13 18:31:46 -05:00
|
|
|
# will not be triggered.
|
|
|
|
#
|
2014-06-14 09:48:24 -04:00
|
|
|
# Add bcrypt (~> 3.1.7) to Gemfile to use #has_secure_password:
|
2011-09-03 01:27:07 -04:00
|
|
|
#
|
2014-02-21 15:58:09 -05:00
|
|
|
# gem 'bcrypt', '~> 3.1.7'
|
2011-09-03 01:27:07 -04:00
|
|
|
#
|
2010-12-18 16:38:05 -05:00
|
|
|
# Example using Active Record (which automatically includes ActiveModel::SecurePassword):
|
|
|
|
#
|
2010-12-18 22:09:07 -05:00
|
|
|
# # Schema: User(name:string, password_digest:string)
|
2010-12-18 16:38:05 -05:00
|
|
|
# class User < ActiveRecord::Base
|
|
|
|
# has_secure_password
|
|
|
|
# end
|
|
|
|
#
|
2012-07-29 13:04:43 -04:00
|
|
|
# user = User.new(name: 'david', password: '', password_confirmation: 'nomatch')
|
2013-04-02 15:09:15 -04:00
|
|
|
# user.save # => false, password required
|
2012-07-29 13:04:43 -04:00
|
|
|
# user.password = 'mUc3m00RsqyRe'
|
2013-04-02 15:09:15 -04:00
|
|
|
# user.save # => false, confirmation doesn't match
|
2012-07-29 13:04:43 -04:00
|
|
|
# user.password_confirmation = 'mUc3m00RsqyRe'
|
2013-04-02 15:09:15 -04:00
|
|
|
# user.save # => true
|
|
|
|
# user.authenticate('notright') # => false
|
|
|
|
# user.authenticate('mUc3m00RsqyRe') # => user
|
|
|
|
# User.find_by(name: 'david').try(:authenticate, 'notright') # => false
|
|
|
|
# User.find_by(name: 'david').try(:authenticate, 'mUc3m00RsqyRe') # => user
|
2012-05-08 18:54:25 -04:00
|
|
|
def has_secure_password(options = {})
|
2014-02-21 15:58:09 -05:00
|
|
|
# Load bcrypt gem only when has_secure_password is used.
|
2012-07-29 13:04:43 -04:00
|
|
|
# This is to avoid ActiveModel (and by extension the entire framework)
|
|
|
|
# being dependent on a binary library.
|
2013-03-21 23:51:08 -04:00
|
|
|
begin
|
|
|
|
require 'bcrypt'
|
2013-03-22 13:00:06 -04:00
|
|
|
rescue LoadError
|
2014-02-21 15:58:09 -05:00
|
|
|
$stderr.puts "You don't have bcrypt installed in your application. Please add it to your Gemfile and run bundle install"
|
2013-03-22 13:00:06 -04:00
|
|
|
raise
|
2013-03-21 23:51:08 -04:00
|
|
|
end
|
2011-09-02 00:54:17 -04:00
|
|
|
|
2013-03-04 12:56:05 -05:00
|
|
|
include InstanceMethodsOnActivation
|
|
|
|
|
2012-05-08 18:54:25 -04:00
|
|
|
if options.fetch(:validations, true)
|
2014-01-20 08:04:19 -05:00
|
|
|
# This ensures the model has a password by checking whether the password_digest
|
|
|
|
# is present, so that this works with both new and existing records. However,
|
|
|
|
# when there is an error, the message is added to the password attribute instead
|
2014-01-24 22:57:07 -05:00
|
|
|
# so that the error message will make sense to the end-user.
|
2014-01-20 08:04:19 -05:00
|
|
|
validate do |record|
|
|
|
|
record.errors.add(:password, :blank) unless record.password_digest.present?
|
|
|
|
end
|
2012-10-18 02:22:55 -04:00
|
|
|
|
2014-06-14 03:05:31 -04:00
|
|
|
validates_length_of :password, maximum: ActiveModel::SecurePassword::MAX_PASSWORD_LENGTH_ALLOWED
|
2014-01-24 22:57:07 -05:00
|
|
|
validates_confirmation_of :password, if: ->{ password.present? }
|
2012-05-08 18:54:25 -04:00
|
|
|
end
|
2011-04-11 00:18:12 -04:00
|
|
|
|
2014-05-17 20:01:11 -04:00
|
|
|
# This code is necessary as long as the protected_attributes gem is supported.
|
2011-01-25 21:35:02 -05:00
|
|
|
if respond_to?(:attributes_protected_by_default)
|
2012-07-29 13:04:43 -04:00
|
|
|
def self.attributes_protected_by_default #:nodoc:
|
2011-01-25 21:35:02 -05:00
|
|
|
super + ['password_digest']
|
|
|
|
end
|
|
|
|
end
|
2010-12-19 04:39:54 -05:00
|
|
|
end
|
2010-12-18 16:38:05 -05:00
|
|
|
end
|
|
|
|
|
2010-12-29 13:18:14 -05:00
|
|
|
module InstanceMethodsOnActivation
|
2012-07-29 13:04:43 -04:00
|
|
|
# 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('notright') # => false
|
2012-10-18 02:22:55 -04:00
|
|
|
# user.authenticate('mUc3m00RsqyRe') # => user
|
2010-12-29 13:18:14 -05:00
|
|
|
def authenticate(unencrypted_password)
|
2012-04-24 13:03:59 -04:00
|
|
|
BCrypt::Password.new(password_digest) == unencrypted_password && self
|
2010-12-18 16:38:05 -05:00
|
|
|
end
|
|
|
|
|
2014-05-17 15:45:35 -04:00
|
|
|
attr_reader :password
|
|
|
|
|
2012-07-29 13:04:43 -04:00
|
|
|
# Encrypts the password into the +password_digest+ attribute, only if the
|
2012-04-24 13:08:57 -04:00
|
|
|
# new password is not blank.
|
2012-07-29 13:04:43 -04:00
|
|
|
#
|
|
|
|
# class User < ActiveRecord::Base
|
|
|
|
# has_secure_password validations: false
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# user = User.new
|
|
|
|
# user.password = nil
|
|
|
|
# user.password_digest # => nil
|
|
|
|
# user.password = 'mUc3m00RsqyRe'
|
2012-10-18 02:22:55 -04:00
|
|
|
# user.password_digest # => "$2a$10$4LEA7r4YmNHtvlAvHhsYAeZmk/xeUVtMTYqwIvYY76EW5GUqDiP4."
|
2010-12-29 13:18:14 -05:00
|
|
|
def password=(unencrypted_password)
|
2014-01-20 07:27:42 -05:00
|
|
|
if unencrypted_password.nil?
|
|
|
|
self.password_digest = nil
|
|
|
|
elsif unencrypted_password.present?
|
2012-04-24 13:16:01 -04:00
|
|
|
@password = unencrypted_password
|
2013-09-23 14:46:41 -04:00
|
|
|
cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST : BCrypt::Engine.cost
|
2012-11-14 10:42:54 -05:00
|
|
|
self.password_digest = BCrypt::Password.create(unencrypted_password, cost: cost)
|
2011-04-14 17:54:25 -04:00
|
|
|
end
|
2010-12-29 13:18:14 -05:00
|
|
|
end
|
2013-03-04 12:56:05 -05:00
|
|
|
|
|
|
|
def password_confirmation=(unencrypted_password)
|
2013-05-20 15:13:21 -04:00
|
|
|
@password_confirmation = unencrypted_password
|
2013-03-04 12:56:05 -05:00
|
|
|
end
|
2010-12-19 03:30:46 -05:00
|
|
|
end
|
2010-12-18 16:38:05 -05:00
|
|
|
end
|
2010-12-19 11:58:14 -05:00
|
|
|
end
|