Skip to Content Skip to Search

class ActionDispatch::MiddlewareStack

Action Dispatch MiddlewareStack

Read more about Rails middleware stack in the guides.

Inherits From

Attributes

[RW] middlewares

Public class methods

new(*args)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 75
def initialize(*args)
  @middlewares = []
  yield(self) if block_given?
end

Public instance methods

[](i)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 92
def [](i)
  middlewares[i]
end

build(app = nil, &block)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 165
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)

Permalink

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.

Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 130
def delete(target)
  middlewares.reject! { |m| m.name == target.name }
end

delete!(target)

Permalink

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.

Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 138
def delete!(target)
  delete(target) || (raise "No such middleware to remove: #{target.inspect}")
end

each(&block)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 80
def each(&block)
  @middlewares.each(&block)
end

initialize_copy(other)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 101
def initialize_copy(other)
  self.middlewares = other.middlewares.dup
end

insert(index, klass, *args, &block)

Permalink

Also aliased as: insert_before.

Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 105
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)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 113
def insert_after(index, *args, &block)
  index = assert_index(index, :after)
  insert(index + 1, *args, &block)
end

insert_before(index, klass, *args, &block)

Permalink

Alias for: insert.

last()

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 88
def last
  middlewares.last
end

move(target, source)

Permalink

Also aliased as: move_before.

Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 142
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)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 152
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

move_before(target, source)

Permalink

Alias for: move.

size()

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 84
def size
  middlewares.size
end

swap(target, *args, &block)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 119
def swap(target, *args, &block)
  index = assert_index(target, :before)
  insert(index, *args, &block)
  middlewares.delete_at(index + 1)
end

unshift(klass, *args, &block)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 96
def unshift(klass, *args, &block)
  middlewares.unshift(build_middleware(klass, args, block))
end

use(klass, *args, &block)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 160
def use(klass, *args, &block)
  middlewares.push(build_middleware(klass, args, block))
end

Namespace

Definition files