Refactor code related to authentication:

* User model
* SessionsController
This commit is contained in:
Thibault Jouan 2011-08-25 21:46:29 +00:00
parent 07c2b5f525
commit 4f66db2682
4 changed files with 53 additions and 71 deletions

View File

@ -2,15 +2,12 @@ class SessionsController < ApplicationController
skip_before_filter :authenticate!, :only => [:new, :create] skip_before_filter :authenticate!, :only => [:new, :create]
def create def create
user = User.authenticate( user = User.find_by_email(params[:session][:email])
params[:session][:email], if user.try(:authenticate?, params[:session][:password])
params[:session][:password]
)
if ! user
render 'new'
else
self.current_user = user self.current_user = user
redirect_to :root redirect_to :root
else
render 'new'
end end
end end
end end

View File

@ -3,31 +3,18 @@ require 'bcrypt'
class User < ActiveRecord::Base class User < ActiveRecord::Base
include BCrypt include BCrypt
attr_accessor :password attr_reader :password
attr_accessible :email, :password, :password_confirmation attr_accessible :email, :password, :password_confirmation
validates_presence_of :email validates_presence_of :email, :password_hash
validates_confirmation_of :password
validates :password, def password=(plain_password)
:presence => true, @password = plain_password
:confirmation => true self.password_hash = Password.create(plain_password)
before_save :hash_password
def self.authenticate(email, password)
user = find_by_email(email)
return false if user.nil?
return user if Password.new(user.password_hash) == password
end end
def authenticate?(password)
private Password.new(password_hash) == password
def hash_password
self.password_hash = bcrypt(password)
end
def bcrypt(string)
Password.create(string)
end end
end end

View File

@ -8,31 +8,39 @@ describe SessionsController do
end end
describe 'POST create' do describe 'POST create' do
context 'when the user submit invalid credentials' do
it 'renders the new template' do
User.stub(:authenticate).and_return(false)
post :create,
:session => Factory.attributes_for(:user)
response.should render_template('new')
end
end
context 'when the user submit valid credentials' do
let(:user) { Factory.create(:user) } let(:user) { Factory.create(:user) }
before do
User.stub(:authenticate).and_return(user) def do_create
post :create, :session => {
:email => user.email,
:password => user.password
}
end end
context 'with valid credentials' do
it 'signs the user in' do it 'signs the user in' do
post :create, :session => Factory.attributes_for(:user) do_create
controller.current_user.should == user controller.current_user.should == user
end end
it 'redirects to the home page' do it 'redirects to the home page' do
post :create, :session => Factory.attributes_for(:user) do_create
response.should redirect_to(:root) response.should redirect_to(:root)
end end
end end
[:email, :password].each do |attr|
context "with invalid credentials (#{attr})" do
before do
user.stub(attr => user.send(attr) + '_INVALID')
end
it 'renders the new template' do
do_create
response.should render_template('new')
end
end
end
end end
describe 'DELETE destroy' do describe 'DELETE destroy' do

View File

@ -16,49 +16,39 @@ describe User do
it { should_not be_valid } it { should_not be_valid }
end end
context 'when password empty' do
before do
user.password = ''
end
it { should_not be_valid }
end
context 'when password_confirmation does not match password' do context 'when password_confirmation does not match password' do
before do before do
user.password_confirmation = 'WRONG' user.password_confirmation = user.password + 'INVALID'
end end
it { should_not be_valid } it { should_not be_valid }
end end
describe '#hash_password' do context 'when password_hash empty' do
it 'is received when #save is sent' do before do
user.should_receive(:hash_password) user.password_hash = ''
user.save
end end
it 'stores a bcrypt hash of the password' do it { should_not be_valid }
user.save end
describe '#password=' do
it 'stores a bcrypt hash of the password in password_hash' do
BCrypt::Password.new(user.password_hash).should == user.password BCrypt::Password.new(user.password_hash).should == user.password
end end
end end
describe '.authenticate' do describe '#authenticate?' do
let (:user) { Factory.create(:user) } context 'with a valid password' do
it 'returns true' do
it 'returns the user with valid credentials' do user.authenticate?(user.password).should be_true
User.authenticate( end
user.email,
user.password
).should == user
end end
it 'returns false with invalid credentials' do context 'with an invalid password' do
User.authenticate( it 'returns false' do
user.email, user.authenticate?(user.password + '_INVALID').should be_false
'WRONG' end
).should be_false
end end
end end
end end