Sha256: 57afc7d2cef9881e497d920298ad9d186480b5ecb3cba26dd79a488de439b579
Contents?: true
Size: 1.78 KB
Versions: 3
Compression:
Stored size: 1.78 KB
Contents
class Account include Mongoid::Document attr_accessor :password # Fields field :name, :type => String field :surname, :type => String field :email, :type => String field :crypted_password, :type => String field :salt, :type => String field :role, :type => String # Validations validates_presence_of :email, :role validates_presence_of :password, :if => :password_required validates_presence_of :password_confirmation, :if => :password_required validates_length_of :password, :within => 4..40, :if => :password_required validates_confirmation_of :password, :if => :password_required validates_length_of :email, :within => 3..100 validates_uniqueness_of :email validates_format_of :email, :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i validates_format_of :role, :with => /[A-Za-z]/ # Callbacks before_save :generate_password ## # This method is for authentication purpose # def self.authenticate(email, password) account = first(:conditions => { :email => email }) if email.present? account && account.password_clean == password ? account : nil end ## # This method is used from AuthenticationHelper # def self.find_by_id(id) find(id) rescue nil end ## # This method is used for retrive the original password. # def password_clean crypted_password.decrypt(salt) end private def generate_password return if password.blank? self.salt = Digest::SHA1.hexdigest("--#{Time.now.to_s}--#{email}--") if new_record? self.crypted_password = password.encrypt(self.salt) end def password_required crypted_password.blank? || !password.blank? end end
Version data entries
3 entries across 3 versions & 1 rubygems