summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/external/mapper.rb
blob: 74bd927da398318d757d319212e20a0175f2e5be (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module External
        class Mapper
          include Gitlab::Utils::StrongMemoize

          FILE_CLASSES = [
            External::File::Remote,
            External::File::Template,
            External::File::Local
          ].freeze

          AmbigiousSpecificationError = Class.new(StandardError)

          def initialize(values, project:, sha:)
            @locations = Array.wrap(values.fetch(:include, []))
            @project = project
            @sha = sha
          end

          def process
            locations
              .compact
              .map(&method(:normalize_location))
              .map(&method(:select_first_matching))
          end

          private

          attr_reader :locations, :project, :sha, :user

          # convert location if String to canonical form
          def normalize_location(location)
            if location.is_a?(String)
              normalize_location_string(location)
            else
              location.deep_symbolize_keys
            end
          end

          def normalize_location_string(location)
            if ::Gitlab::UrlSanitizer.valid?(location)
              { remote: location }
            else
              { local: location }
            end
          end

          def select_first_matching(location)
            matching = FILE_CLASSES.map do |file_class|
              file_class.new(location, context)
            end.select(&:matching?)

            raise AmbigiousSpecificationError, "Include `#{location.to_json}` needs to match exactly one accessor!" unless matching.one?

            matching.first
          end

          def context
            strong_memoize(:context) do
              External::File::Base::Context.new(project, sha)
            end
          end
        end
      end
    end
  end
end