Skip to content

Instantly share code, notes, and snippets.

@kbparagua
Last active November 23, 2015 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kbparagua/d820ac012514c7fa428b to your computer and use it in GitHub Desktop.
Save kbparagua/d820ac012514c7fa428b to your computer and use it in GitHub Desktop.
VALID_EMAIL_REGEX = /\A([\w+\-].?)+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/i
def authenticate email, password
user = User.find_by_email email
if password.present? && valid_email?(email) && user.present? && correct_password?(user, password)
user
else
false
end
end
def valid_email? email
email =~ VALID_EMAIL_REGEX
end
def correct_password? user, password
encrypted_password = BCrypt::Password.new password
user.encrypted_password == encrypted_password
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment