summaryrefslogtreecommitdiff
path: root/app/controllers/sessions_controller.rb
blob: 18e5216c55d19bf921cdaa87d17be0a491b124df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class SessionsController < ApplicationController

  before_filter :redirect_if_logged_in, :only => [:new]
  respond_to :html, :json

  def new
    @session = Session.new
    if authentication_errors
      @errors = authentication_errors
      render :status => 422
    end
  end

  def destroy
    logout
    redirect_to home_url
  end

  #
  # Warden will catch all 401s and triggers this action:
  #
  def unauthenticated
    login_required
  end

  #
  # this is a bad hack, but user_url(user) is not available
  # also, this doesn't work because the redirect happens as a PUT. no idea why.
  #
  #Warden::Manager.after_authentication do |user, auth, opts|
  #  response = Rack::Response.new
  #  response.redirect "/users/#{user.id}"
  # throw :warden, response.finish
  #end

  Warden::Manager.after_set_user do |user, auth, opts|
    scope = opts[:scope]
    unless user.enabled?
      auth.logout(scope)
      throw(:warden, scope: scope, reason: "User not active")
    end
  end


end