我有这堂课:
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation
attr_accessor :password
before_save :encrypt_password
validates_confirmation_of :password
validates_presence_of :password, :on => :create
validates_presence_of :email
validates_uniqueness_of :email
def encrypt_password
if password.present?
self.password_salt = BCrypt::Engine.generate_salt
self.password_hash = BCrypt::Engine.hash_secret(password, password_salt)
end
end
def self.authenticate(email, password)
user = find_by_email(email)
if user && user.password_hash == BCrypt::Engine.hash_secret(password, user.password_salt)
user
else
nil
end
end
end
我是一名 C# 开发人员,并且知道这个类与 ActiveRecord 和 BCrypt 紧密耦合。如果我使用 C#,我会将 BCrypt 的使用提取到另一个类中,并通过依赖注入传递新类。至于 ActiveRecord 的使用,我会定义一个接受这个类作为参数的类来持久化。
我应该尝试对 Ruby 采取相同的路线,还是有更好的方法来消除对 ActiveRecord 和 BCrypt 的依赖?