summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/seed/build.rb
blob: 5f7721ecb2c21a6e75d454e879b65a5282ebedb5 (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
module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Build < Seed::Base
          include Gitlab::Utils::StrongMemoize

          attr_reader :pipeline, :attributes

          delegate :dig, to: :attributes

          def initialize(pipeline, attributes)
            @pipeline = pipeline
            @attributes = attributes

            @only = attributes.delete(:only)
            @except = attributes.delete(:except)
          end

          # TODO find a different solution
          #
          def user=(current_user)
            @attributes.merge!(user: current_user)
          end

          def attributes
            @attributes.merge(
              pipeline: @pipeline,
              project: @pipeline.project,
              ref: @pipeline.ref,
              tag: @pipeline.tag,
              trigger_request: @pipeline.legacy_trigger,
              protected: @pipeline.protected_ref?
            )
          end

          def included?
            strong_memoize(:inclusion) do
              only_specs = Gitlab::Ci::Build::Policy.fabricate(@only)
              except_specs = Gitlab::Ci::Build::Policy.fabricate(@except)

              only_specs.all? { |spec| spec.satisfied_by?(pipeline) } &&
                except_specs.none? { |spec| spec.satisfied_by?(pipeline) }
            end
          end

          def to_resource
            ::Ci::Build.new(attributes)
          end
        end
      end
    end
  end
end