Class: ActionDispatch::MiddlewareStack

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
actionpack/lib/action_dispatch/middleware/stack.rb

Defined Under Namespace

Classes: InstrumentationProxy, Middleware

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Enumerable

#as_json

Constructor Details

#initialize(*args) {|_self| ... } ⇒ MiddlewareStack

Returns a new instance of MiddlewareStack.

Yields:

  • (_self)

Yield Parameters:



70
71
72
73
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 70

def initialize(*args)
  @middlewares = []
  yield(self) if block_given?
end

Instance Attribute Details

#middlewaresObject

Returns the value of attribute middlewares



68
69
70
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 68

def middlewares
  @middlewares
end

Instance Method Details

#[](i) ⇒ Object



87
88
89
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 87

def [](i)
  middlewares[i]
end

#build(app = nil, &block) ⇒ Object



160
161
162
163
164
165
166
167
168
169
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 160

def build(app = nil, &block)
  instrumenting = ActiveSupport::Notifications.notifier.listening?(InstrumentationProxy::EVENT_NAME)
  middlewares.freeze.reverse.inject(app || block) do |a, e|
    if instrumenting
      e.build_instrumented(a)
    else
      e.build(a)
    end
  end
end

#delete(target) ⇒ Object

Deletes a middleware from the middleware stack.

Returns the array of middlewares not including the deleted item, or returns nil if the target is not found.



125
126
127
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 125

def delete(target)
  middlewares.reject! { |m| m.name == target.name }
end

#delete!(target) ⇒ Object

Deletes a middleware from the middleware stack.

Returns the array of middlewares not including the deleted item, or raises RuntimeError if the target is not found.



133
134
135
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 133

def delete!(target)
  delete(target) || (raise "No such middleware to remove: #{target.inspect}")
end

#each(&block) ⇒ Object



75
76
77
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 75

def each(&block)
  @middlewares.each(&block)
end

#initialize_copy(other) ⇒ Object



96
97
98
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 96

def initialize_copy(other)
  self.middlewares = other.middlewares.dup
end

#insert(index, klass, *args, &block) ⇒ Object Also known as: insert_before



100
101
102
103
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 100

def insert(index, klass, *args, &block)
  index = assert_index(index, :before)
  middlewares.insert(index, build_middleware(klass, args, block))
end

#insert_after(index, *args, &block) ⇒ Object



108
109
110
111
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 108

def insert_after(index, *args, &block)
  index = assert_index(index, :after)
  insert(index + 1, *args, &block)
end

#lastObject



83
84
85
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 83

def last
  middlewares.last
end

#move(target, source) ⇒ Object Also known as: move_before



137
138
139
140
141
142
143
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 137

def move(target, source)
  source_index = assert_index(source, :before)
  source_middleware = middlewares.delete_at(source_index)

  target_index = assert_index(target, :before)
  middlewares.insert(target_index, source_middleware)
end

#move_after(target, source) ⇒ Object



147
148
149
150
151
152
153
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 147

def move_after(target, source)
  source_index = assert_index(source, :after)
  source_middleware = middlewares.delete_at(source_index)

  target_index = assert_index(target, :after)
  middlewares.insert(target_index + 1, source_middleware)
end

#sizeObject



79
80
81
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 79

def size
  middlewares.size
end

#swap(target, *args, &block) ⇒ Object



114
115
116
117
118
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 114

def swap(target, *args, &block)
  index = assert_index(target, :before)
  insert(index, *args, &block)
  middlewares.delete_at(index + 1)
end

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



91
92
93
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 91

def unshift(klass, *args, &block)
  middlewares.unshift(build_middleware(klass, args, block))
end

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



155
156
157
# File 'actionpack/lib/action_dispatch/middleware/stack.rb', line 155

def use(klass, *args, &block)
  middlewares.push(build_middleware(klass, args, block))
end