aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application/metal_loader.rb
blob: 2a43fa7892ff41fe5806258901a6d61d09493e8a (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require 'action_dispatch'

module Rails
  class Application
    class MetalLoader
      attr_reader :paths, :metals

      def initialize
        @paths, @metals = [], []
      end

      def build_middleware(list=nil)
        load_metals!(list)
        self
      end

      def new(app)
        ActionDispatch::Cascade.new(@metals, app)
      end

      def name
        ActionDispatch::Cascade.name
      end
      alias :to_s :name

    protected

      def load_metals!(list)
        metals = []
        list = Array(list || :all).map(&:to_sym)

        paths.each do |path|
          matcher = /\A#{Regexp.escape(path)}\/(.*)\.rb\Z/
          Dir.glob("#{path}/**/*.rb").sort.each do |metal_path|
            metal = metal_path.sub(matcher, '\1').to_sym
            next unless list.include?(metal) || list.include?(:all)
            require_dependency metal.to_s
            metals << metal
          end
        end

        metals = metals.sort_by do |m|
          [list.index(m) || list.index(:all), m.to_s]
        end

        @metals = metals.map { |m| m.to_s.camelize.constantize }
      end
    end
  end
end