class OmniAuth::Builder

Public Instance Methods

before_callback_phase(&block) click to toggle source
# File lib/omniauth/builder.rb, line 15
def before_callback_phase(&block)
  OmniAuth.config.before_callback_phase = block
end
before_options_phase(&block) click to toggle source
# File lib/omniauth/builder.rb, line 7
def before_options_phase(&block)
  OmniAuth.config.before_options_phase = block
end
before_request_phase(&block) click to toggle source
# File lib/omniauth/builder.rb, line 11
def before_request_phase(&block)
  OmniAuth.config.before_request_phase = block
end
call(env) click to toggle source
# File lib/omniauth/builder.rb, line 43
def call(env)
  to_app.call(env)
end
configure(&block) click to toggle source
# File lib/omniauth/builder.rb, line 19
def configure(&block)
  OmniAuth.configure(&block)
end
on_failure(&block) click to toggle source
# File lib/omniauth/builder.rb, line 3
def on_failure(&block)
  OmniAuth.config.on_failure = block
end
options(options = false) click to toggle source
# File lib/omniauth/builder.rb, line 23
def options(options = false)
  return @options ||= {} if options == false

  @options = options
end
provider(klass, *args, **opts, &block) click to toggle source
# File lib/omniauth/builder.rb, line 29
def provider(klass, *args, **opts, &block)
  if klass.is_a?(Class)
    middleware = klass
  else
    begin
      middleware = OmniAuth::Strategies.const_get(OmniAuth::Utils.camelize(klass.to_s).to_s, false)
    rescue NameError
      raise(LoadError.new("Could not find matching strategy for #{klass.inspect}. You may need to install an additional gem (such as omniauth-#{klass})."))
    end
  end

  use middleware, *args, **options.merge(opts), &block
end