Sha256: 71b097f09833d29dc76ce61d4084f7a87007888b9a5281f94ce554b147d0ff97

Contents?: true

Size: 972 Bytes

Versions: 6

Compression:

Stored size: 972 Bytes

Contents

#
# Allow authenticate users to log in and log out.
#
class Authenticate::SessionsController < Authenticate::AuthenticateController
  before_action :redirect_signed_in_users, only: [:new]
  skip_before_action :require_authentication, only: [:create, :new, :destroy], raise: false

  def new
    render template: 'sessions/new'
  end

  def create
    @user = authenticate(params)
    login(@user) do |status|
      if status.success?
        redirect_back_or url_after_create
      else
        flash.now.notice = status.message
        render template: 'sessions/new', status: :unauthorized
      end
    end
  end

  def destroy
    logout
    redirect_to url_after_destroy
  end

  private

  def redirect_signed_in_users
    redirect_to url_for_signed_in_users if authenticated?
  end

  def url_after_create
    Authenticate.configuration.redirect_url
  end

  def url_after_destroy
    sign_in_url
  end

  def url_for_signed_in_users
    url_after_create
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
authenticate-0.6.1 app/controllers/authenticate/sessions_controller.rb
authenticate-0.6.0 app/controllers/authenticate/sessions_controller.rb
authenticate-0.5.0 app/controllers/authenticate/sessions_controller.rb
authenticate-0.4.0 app/controllers/authenticate/sessions_controller.rb
authenticate-0.3.3 app/controllers/authenticate/sessions_controller.rb
authenticate-0.3.2 app/controllers/authenticate/sessions_controller.rb