Class: ExvoAuth::Strategies::NonInteractive

Inherits:
Base
  • Object
show all
Defined in:
lib/exvo_auth/strategies/non_interactive.rb

Instance Method Summary collapse

Methods inherited from Base

#auth_hash, #user_data, #user_info

Constructor Details

#initialize(app, options = {}) ⇒ NonInteractive

Returns a new instance of NonInteractive.



2
3
4
# File 'lib/exvo_auth/strategies/non_interactive.rb', line 2

def initialize(app, options = {})
  super(app, :non_interactive, options)
end

Instance Method Details

#callback_urlObject



14
15
16
17
18
19
20
21
22
23
# File 'lib/exvo_auth/strategies/non_interactive.rb', line 14

def callback_url
  key   = ExvoAuth::Config.callback_key
  value = request[key]

  if value
    super + "?" + Rack::Utils.build_query(key => value)
  else
    super
  end
end

#fail!(message_key, exception = nil) ⇒ Object

FIXME this does not bubble up the 401 response code, although the error message is returned



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/exvo_auth/strategies/non_interactive.rb', line 26

def fail!(message_key, exception = nil)
  error =
    case message_key
    when :invalid_credentials, :session_expired
      "Please sign in."
    when :invalid_response
      "Invalid response from the authorization server. Please try again."
    when :timeout
      "Timeout occured. Please try again."
    when :service_unavailable
      "Authorization service is not available. Please try again later."
    else
      "Unknown error. Please try again."
    end

  body = MultiJson.encode(:error => error)
  [401, {
    "Content-Type"   => "application/json",
    "Content-Length" => body.length.to_s
  }, [body]]
end

#request_phaseObject



6
7
8
9
10
11
12
# File 'lib/exvo_auth/strategies/non_interactive.rb', line 6

def request_phase
  options[:redirect_uri] = callback_url if callback_url
  options[:scope] = request["scope"] if request["scope"]
  options[:state] = request["state"] if request["state"]

  redirect client.non_interactive.authorize_url(options)
end