Sha256: 03df1f16bdea33dc395b7db027549dc5fde016d5dfaa77b35664af74c2cbc423

Contents?: true

Size: 836 Bytes

Versions: 1

Compression:

Stored size: 836 Bytes

Contents

class ExvoAuth::Strategies::NonInteractive < ExvoAuth::Strategies::Base
  def initialize(app, options = {})
    super(app, :non_interactive, options)
  end
  
  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
  
  def callback_url
    key   = ExvoAuth::Config.callback_key
    value = request[key]
    
    if value
      super + "?" + Rack::Utils.build_query(key => value)
    else
      super
    end
  end
  
  def fail!(message_key)
    body = MultiJson.encode(:error => "Please sign in!")
    [401, { 
      "Content-Type"   => "application/json", 
      "Content-Length" => body.length.to_s 
    }, [body]]
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exvo-auth-0.14.0 lib/exvo_auth/strategies/non_interactive.rb