summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/external/file/template.rb
blob: 9469f09ce130d2807a8a1a0628a8a4b7788de39c (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
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module External
        module File
          class Template < Base
            attr_reader :location

            SUFFIX = '.gitlab-ci.yml'

            def initialize(params, context)
              @location = params[:template]

              super
            end

            def content
              strong_memoize(:content) { fetch_template_content }
            end

            def metadata
              super.merge(
                type: :template,
                location: masked_location,
                extra: {}
              )
            end

            private

            def validate_location!
              super

              unless template_name_valid?
                errors.push("Template file `#{masked_location}` is not a valid location!")
              end
            end

            def template_name
              return unless template_name_valid?

              location.delete_suffix(SUFFIX)
            end

            def template_name_valid?
              location.to_s.end_with?(SUFFIX)
            end

            def fetch_template_content
              Gitlab::Template::GitlabCiYmlTemplate.find(template_name, context.project)&.content
            end
          end
        end
      end
    end
  end
end