Class: Devise::FailureApp

Inherits:
ActionController::Metal
  • Object
show all
Includes:
ActionController::RackDelegation, ActionController::Redirecting, ActionController::UrlFor
Defined in:
lib/devise/failure_app.rb

Overview

Failure application that will be called every time :warden is thrown from any strategy or hook. Responsible for redirect the user to the sign in page based on current scope and mapping. If no scope is given, redirect to the default_url.

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) call(env)



18
19
20
21
# File 'lib/devise/failure_app.rb', line 18

def self.call(env)
  @respond ||= action(:respond)
  @respond.call(env)
end

+ (Object) default_url_options(*args)



23
24
25
26
27
28
29
# File 'lib/devise/failure_app.rb', line 23

def self.default_url_options(*args)
  if defined?(ApplicationController)
    ApplicationController.default_url_options(*args)
  else
    {}
  end
end

Instance Method Details

- (Object) http_auth



41
42
43
44
45
46
# File 'lib/devise/failure_app.rb', line 41

def http_auth
  self.status = 401
  self.headers["WWW-Authenticate"] = %(Basic realm=#{Devise.http_authentication_realm.inspect}) if http_auth_header?
  self.content_type = request.format.to_s
  self.response_body = http_auth_body
end

- (Object) recall



48
49
50
51
52
# File 'lib/devise/failure_app.rb', line 48

def recall
  env["PATH_INFO"]  = attempted_path
  flash.now[:alert] = i18n_message(:invalid)
  self.response = recall_app(warden_options[:recall]).call(env)
end

- (Object) redirect



54
55
56
57
58
59
60
61
62
63
# File 'lib/devise/failure_app.rb', line 54

def redirect
  store_location!
  if flash[:timedout] && flash[:alert]
    flash.keep(:timedout)
    flash.keep(:alert)
  else
    flash[:alert] = i18n_message
  end
  redirect_to redirect_url
end

- (Object) respond



31
32
33
34
35
36
37
38
39
# File 'lib/devise/failure_app.rb', line 31

def respond
  if http_auth?
    http_auth
  elsif warden_options[:recall]
    recall
  else
    redirect
  end
end