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

artifact.rb « file « external « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8f78b62d8d385044ecc70b614d35c87ba028540 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module External
        module File
          class Artifact < Base
            extend ::Gitlab::Utils::Override
            include Gitlab::Utils::StrongMemoize

            attr_reader :job_name

            def initialize(params, context)
              @location = params[:artifact]
              @job_name = params[:job]

              super
            end

            def content
              strong_memoize(:content) do
                next unless artifact_job

                Gitlab::Ci::ArtifactFileReader.new(artifact_job).read(location)
              rescue Gitlab::Ci::ArtifactFileReader::Error => error
                errors.push(error.message)
              end
            end

            def matching?
              super &&
                Feature.enabled?(:ci_dynamic_child_pipeline, project, default_enabled: true)
            end

            private

            def project
              context&.parent_pipeline&.project
            end

            def validate_content!
              return unless ensure_preconditions_satisfied!

              errors.push("File `#{location}` is empty!") unless content.present?
            end

            def ensure_preconditions_satisfied!
              unless creating_child_pipeline?
                errors.push('Including configs from artifacts is only allowed when triggering child pipelines')
                return false
              end

              unless job_name.present?
                errors.push("Job must be provided when including configs from artifacts")
                return false
              end

              unless artifact_job.present?
                errors.push("Job `#{job_name}` not found in parent pipeline or does not have artifacts!")
                return false
              end

              true
            end

            def artifact_job
              strong_memoize(:artifact_job) do
                next unless creating_child_pipeline?

                context.parent_pipeline.find_job_with_archive_artifacts(job_name)
              end
            end

            def creating_child_pipeline?
              context.parent_pipeline.present?
            end

            override :expand_context_attrs
            def expand_context_attrs
              {
                project: context.project,
                sha: context.sha,
                user: context.user,
                parent_pipeline: context.parent_pipeline
              }
            end
          end
        end
      end
    end
  end
end