Class: ActionDispatch::Routing::Mapper::Constraints

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/routing/mapper.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app, constraints, request) ⇒ Constraints

Returns a new instance of Constraints.



20
21
22
# File 'lib/action_dispatch/routing/mapper.rb', line 20

def initialize(app, constraints, request)
  @app, @constraints, @request = app, constraints, request
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



18
19
20
# File 'lib/action_dispatch/routing/mapper.rb', line 18

def app
  @app
end

Class Method Details

.new(app, constraints, request = Rack::Request) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/action_dispatch/routing/mapper.rb', line 10

def self.new(app, constraints, request = Rack::Request)
  if constraints.any?
    super(app, constraints, request)
  else
    app
  end
end

Instance Method Details

#call(env) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/action_dispatch/routing/mapper.rb', line 24

def call(env)
  req = @request.new(env)

  @constraints.each { |constraint|
    if constraint.respond_to?(:matches?) && !constraint.matches?(req)
      return [ 404, {'X-Cascade' => 'pass'}, [] ]
    elsif constraint.respond_to?(:call) && !constraint.call(*constraint_args(constraint, req))
      return [ 404, {'X-Cascade' => 'pass'}, [] ]
    end
  }

  @app.call(env)
end