-
-
Save opie4624/420490 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This controller handles the login/logout function of the site. | |
class SessionsController < ApplicationController | |
# Be sure to include AuthenticationSystem in Application Controller instead | |
include AuthenticatedSystem | |
layout nil | |
# render new.rhtml | |
def new | |
end | |
def create | |
logout_keeping_session! | |
user = User.authenticate(params[:login], params[:password]) | |
if user | |
# Protects against session fixation attacks, causes request forgery | |
# protection if user resubmits an earlier form using back | |
# button. Uncomment if you understand the tradeoffs. | |
# reset_session | |
self.current_user = user | |
new_cookie_flag = (params[:remember_me] == "1") | |
handle_remember_cookie! new_cookie_flag | |
redirect_back_or_default('/') | |
flash[:notice] = "Logged in successfully" | |
else | |
note_failed_signin | |
@login = params[:login] | |
@remember_me = params[:remember_me] | |
render :action => 'new' | |
end | |
end | |
def destroy | |
logout_killing_session! | |
flash[:notice] = "You have been logged out." | |
redirect_back_or_default('/') | |
end | |
protected | |
# Track failed login attempts | |
def note_failed_signin | |
flash[:error] = "Couldn't log you in as '#{params[:login]}'" | |
logger.warn "Failed login for '#{params[:login]}' from #{request.remote_ip} at #{Time.now.utc}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment