Class: OmniAuth::Builder

Inherits:
Rack::Builder
  • Object
show all
Defined in:
lib/omniauth/builder.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, &block) ⇒ Builder

Returns a new instance of Builder.



3
4
5
6
7
8
9
10
11
12
# File 'lib/omniauth/builder.rb', line 3

def initialize(app, &block)
  @options = nil
  if rack14?
    super
  else
    @app = app
    super(&block)
    @ins << @app
  end
end

Instance Method Details

#before_callback_phase(&block) ⇒ Object



30
31
32
# File 'lib/omniauth/builder.rb', line 30

def before_callback_phase(&block)
  OmniAuth.config.before_callback_phase = block
end

#before_options_phase(&block) ⇒ Object



22
23
24
# File 'lib/omniauth/builder.rb', line 22

def before_options_phase(&block)
  OmniAuth.config.before_options_phase = block
end

#before_request_phase(&block) ⇒ Object



26
27
28
# File 'lib/omniauth/builder.rb', line 26

def before_request_phase(&block)
  OmniAuth.config.before_request_phase = block
end

#call(env) ⇒ Object



58
59
60
# File 'lib/omniauth/builder.rb', line 58

def call(env)
  to_app.call(env)
end

#configure(&block) ⇒ Object



34
35
36
# File 'lib/omniauth/builder.rb', line 34

def configure(&block)
  OmniAuth.configure(&block)
end

#on_failure(&block) ⇒ Object



18
19
20
# File 'lib/omniauth/builder.rb', line 18

def on_failure(&block)
  OmniAuth.config.on_failure = block
end

#options(options = false) ⇒ Object



38
39
40
41
# File 'lib/omniauth/builder.rb', line 38

def options(options = false)
  return @options || {} if options == false
  @options = options
end

#provider(klass, *args, &block) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/omniauth/builder.rb', line 43

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.new("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

#rack14?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/omniauth/builder.rb', line 14

def rack14?
  Rack.release.split('.')[1].to_i >= 4
end