mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
51 lines
1.2 KiB
Ruby
51 lines
1.2 KiB
Ruby
require 'omniauth'
|
|
|
|
module OmniAuth
|
|
class Builder < ::Rack::Builder
|
|
def initialize(app, &block)
|
|
if rack14?
|
|
super
|
|
else
|
|
@app = app
|
|
super(&block)
|
|
end
|
|
end
|
|
|
|
def rack14?
|
|
Rack.release.split('.')[1].to_i >= 4
|
|
end
|
|
|
|
def on_failure(&block)
|
|
OmniAuth.config.on_failure = block
|
|
end
|
|
|
|
def configure(&block)
|
|
OmniAuth.configure(&block)
|
|
end
|
|
|
|
def options(options = false)
|
|
return @options || {} if options == false
|
|
@options = options
|
|
end
|
|
|
|
def provider(klass, *args, &block)
|
|
if klass.is_a?(Class)
|
|
middleware = klass
|
|
else
|
|
begin
|
|
middleware = OmniAuth::Strategies.const_get("#{OmniAuth::Utils.camelize(klass.to_s)}")
|
|
rescue NameError
|
|
raise LoadError, "Could not find matching strategy for #{klass.inspect}. You may need to install an additional gem (such as omniauth-#{klass})."
|
|
end
|
|
end
|
|
|
|
args.last.is_a?(Hash) ? args.push(options.merge(args.pop)) : args.push(options)
|
|
use middleware, *args, &block
|
|
end
|
|
|
|
def call(env)
|
|
@ins << @app unless rack14? || @ins.include?(@app)
|
|
to_app.call(env)
|
|
end
|
|
end
|
|
end
|