Welcome to mirror list, hosted at ThFree Co, Russian Federation.

labkit_middleware.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 748666b6cd728fa52729c06a3d2403cecf4f7501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

# partial backport of https://github.com/rails/rails/pull/38169
# this is in order to be able to re-order rack middlewares.

if ActionDispatch::MiddlewareStack.method_defined?(:move)
  warn "`move` is now defined in in ActionDispatch itself: https://github.com/rails/rails/pull/38169, please remove this patch from #{__FILE__}"
else
  module ActionDispatch
    class MiddlewareStack
      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
    end
  end
end

unless Rails::Configuration::MiddlewareStackProxy.method_defined?(:move)
  module Rails
    module Configuration
      class MiddlewareStackProxy
        def move(*args, &block)
          @operations << ->(middleware) { middleware.send(__method__, *args, &block) }
        end
        ruby2_keywords(:move) if respond_to?(:ruby2_keywords, true)
      end
    end
  end
end

Rails.application.config.middleware.move(1, ActionDispatch::RequestId)
Rails.application.config.middleware.insert_after(ActionDispatch::RequestId, Labkit::Middleware::Rack)