omniauth--omniauth/lib/omniauth/builder.rb

63 lines
1.4 KiB
Ruby
Raw Normal View History

2011-09-03 18:08:07 +00:00
module OmniAuth
class Builder < ::Rack::Builder
def initialize(app, &block)
@options = nil
if rack14?
super
else
@app = app
super(&block)
@ins << @app
end
end
def rack14?
Rack.release.split('.')[1].to_i >= 4
end
2011-09-03 18:08:07 +00:00
def on_failure(&block)
OmniAuth.config.on_failure = block
end
2013-09-03 15:16:18 +00:00
def before_options_phase(&block)
OmniAuth.config.before_options_phase = block
end
2013-09-03 15:16:18 +00:00
def before_request_phase(&block)
OmniAuth.config.before_request_phase = block
end
2013-09-03 15:16:18 +00:00
def before_callback_phase(&block)
OmniAuth.config.before_callback_phase = block
end
2011-09-03 18:08:07 +00:00
def configure(&block)
OmniAuth.configure(&block)
end
def options(options = false)
return @options || {} if options == false
@options = options
end
2011-09-03 18:08:07 +00:00
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
2011-09-03 18:08:07 +00:00
end
args.last.is_a?(Hash) ? args.push(options.merge(args.pop)) : args.push(options)
2011-09-03 18:08:07 +00:00
use middleware, *args, &block
end
def call(env)
to_app.call(env)
end
end
end