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

normalizer.rb « mapper « external « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fc798e78a0cc2a27e23c5ad08020dd940fae8c1 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module External
        class Mapper
          # Converts locations to canonical form (local:/remote:) if String
          class Normalizer < Base
            def initialize(context)
              super

              @variables_expander = VariablesExpander.new(context)
            end

            private

            attr_reader :variables_expander

            def process_without_instrumentation(locations)
              locations.map do |location|
                if location.is_a?(String)
                  # We need to expand before normalizing because the information of
                  # whether if it's a remote or local path may be hidden inside the variable.
                  location = variables_expander.expand(location)

                  normalize_location_string(location)
                else
                  location.deep_symbolize_keys
                end
              end
            end

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