Skip to content

Latest commit

 

History

History
69 lines (55 loc) · 1.95 KB

03-session-handling.md

File metadata and controls

69 lines (55 loc) · 1.95 KB
title description budicon
Session Handling
Learn how to store user data in your session and clean it up upon logout.
448

<%= include('../../_includes/_package', { org: 'auth0-samples', repo: 'auth0-rubyonrails-sample', path: '03-Session-Handling', requirements: [ 'Ruby 2.3.1', 'Rails 5.0.0' ] }) %>

Store Session Data on Login

Upon successful authentication, OmniAuth-Auth0 sets a special hash called the Authentication Hash of a request to /auth/oauth2/callback. To handle this request, add a new route in your routes file:

get "/auth/oauth2/callback" => "auth0#callback"

And store the user information in the session adding the following code to the auth0_controller\callback method:

  def callback
    # This stores all the user information that came from Auth0
    # and the IdP
    session[:userinfo] = request.env['omniauth.auth']

    # Redirect to the URL you want after successful auth
    redirect_to '/dashboard'
  end

Logout Action

To clear out all the objects stored within the session, call the reset_session method within the logout_controller\logout method. Learn more about reset_session here.

A typical logout action would look like this:

class LogoutController < ApplicationController
  include LogoutHelper
  def logout
    reset_session
    redirect_to logout_url.to_s
  end
end

You can take advantage of the SDK for generating the logout URL.

module LogoutHelper
  def logout_url
    creds = { client_id: ENV['AUTH0_CLIENT_ID'],
    client_secret: ENV['AUTH0_CLIENT_SECRET'],
    api_version: 1,
    domain: ENV['AUTH0_DOMAIN'] }
    auth0_client = Auth0Client.new(creds)
    auth0_client.logout_url(root_url)
  end
end

NOTE: The final destination URL (the returnTo value) needs to be in the list of Allowed Logout URLs. Read more about this.