/app/models/user.rb
https://github.com/abalasu3/bc_app · Ruby · 65 lines · 52 code · 13 blank · 0 comment · 6 complexity · f647be412899d142421affefd849028b MD5 · raw file
- require 'digest'
- class User < ActiveRecord::Base
- has_many :posts, :dependent => :destroy
- has_many :replies, :dependent => :destroy
- has_many :vote_posts
- has_many :votereplies
- attr_accessor :password
- attr_accessible :name, :email, :password, :password_confirmation
-
- email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
- validates :name, :presence => true,
- :length => { :maximum => 50 }
- validates :email, :presence => true,
- :format => { :with => email_regex },
- :uniqueness => { :case_sensitive => false }
- validates :password, :presence => true,
- :confirmation => true,
- :length => { :within => 6..40 }
- before_save :encrypt_password
-
- def has_password?(submitted_password)
- encrypted_password == encrypt(submitted_password)
- end
- def self.authenticate(email, submitted_password)
- user = find_by_email(email)
- return nil if user.nil?
- return user if user.has_password?(submitted_password)
- end
- def self.authenticate_with_salt(id, cookie_salt)
- user = find_by_id(id)
- (user && user.salt == cookie_salt) ? user : nil
- end
- def self.search(search)
- if search
- find(:all, :conditions => ['name LIKE ?',"%#{search}%"])
- else
- find(:all)
- end
- end
- private
- def encrypt_password
- self.salt = make_salt unless has_password?(password)
- self.encrypted_password = encrypt(password)
- end
- def encrypt(string)
- secure_hash("#{salt}--#{string}")
- end
- def make_salt
- secure_hash("#{Time.now.utc}--#{password}")
- end
- def secure_hash(string)
- Digest::SHA2.hexdigest(string)
- end
-
- end