build.rb 27.5 KB
Newer Older
1 2
# frozen_string_literal: true

D
Douwe Maan 已提交
3
module Ci
K
Kamil Trzcinski 已提交
4
  class Build < CommitStatus
Z
Zeger-Jan van de Weg 已提交
5
    prepend ArtifactMigratable
6
    include TokenAuthenticatable
7
    include AfterCommitQueue
8
    include ObjectStorage::BackgroundMove
R
Rémy Coutable 已提交
9
    include Presentable
S
Shinya Maeda 已提交
10
    include Importable
11
    include Gitlab::Utils::StrongMemoize
S
Shinya Maeda 已提交
12
    include Deployable
13

14
    belongs_to :project, inverse_of: :builds
15 16
    belongs_to :runner
    belongs_to :trigger_request
17
    belongs_to :erased_by, class_name: 'User'
D
Douwe Maan 已提交
18

19 20 21 22
    RUNNER_FEATURES = {
      upload_multiple_artifacts: -> (build) { build.publishes_artifacts_reports? }
    }.freeze

S
Shinya Maeda 已提交
23
    has_one :deployment, as: :deployable, class_name: 'Deployment'
24
    has_many :trace_sections, class_name: 'Ci::BuildTraceSection'
25
    has_many :trace_chunks, class_name: 'Ci::BuildTraceChunk', foreign_key: :build_id
26

27
    has_many :job_artifacts, class_name: 'Ci::JobArtifact', foreign_key: :job_id, dependent: :destroy, inverse_of: :job # rubocop:disable Cop/ActiveRecordDependent
S
Shinya Maeda 已提交
28 29 30 31

    Ci::JobArtifact.file_types.each do |key, value|
      has_one :"job_artifacts_#{key}", -> { where(file_type: value) }, class_name: 'Ci::JobArtifact', inverse_of: :job, foreign_key: :job_id
    end
32

33
    has_one :metadata, class_name: 'Ci::BuildMetadata'
F
Francisco Javier López 已提交
34 35 36 37
    has_one :runner_session, class_name: 'Ci::BuildRunnerSession', validate: true, inverse_of: :build

    accepts_nested_attributes_for :runner_session

T
Tomasz Maczukin 已提交
38
    delegate :timeout, to: :metadata, prefix: true, allow_nil: true
F
Francisco Javier López 已提交
39 40
    delegate :url, to: :runner_session, prefix: true, allow_nil: true
    delegate :terminal_specification, to: :runner_session, allow_nil: true
41
    delegate :gitlab_deploy_token, to: :project
42
    delegate :trigger_short_token, to: :trigger_request, allow_nil: true
T
Tomasz Maczukin 已提交
43

44 45 46
    ##
    # The "environment" field for builds is a String, and is the unexpanded name!
    #
47
    def persisted_environment
48 49 50 51 52
      return unless has_environment?

      strong_memoize(:persisted_environment) do
        Environment.find_by(name: expanded_environment_name, project: project)
      end
53 54
    end

55 56
    serialize :options # rubocop:disable Cop/ActiveRecordSerialize
    serialize :yaml_variables, Gitlab::Serializer::Ci::Variables # rubocop:disable Cop/ActiveRecordSerialize
D
Douwe Maan 已提交
57

D
Douwe Maan 已提交
58 59
    delegate :name, to: :project, prefix: true

D
Douwe Maan 已提交
60
    validates :coverage, numericality: true, allow_blank: true
D
Douwe Maan 已提交
61
    validates :ref, presence: true
D
Douwe Maan 已提交
62 63

    scope :unstarted, ->() { where(runner_id: nil) }
K
Kamil Trzcinski 已提交
64
    scope :ignore_failures, ->() { where(allow_failure: false) }
65
    scope :with_artifacts_archive, ->() do
66
      where('(artifacts_file IS NOT NULL AND artifacts_file <> ?) OR EXISTS (?)',
67
        '', Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').archive)
68
    end
69

70 71 72 73
    scope :with_existing_job_artifacts, ->(query) do
      where('EXISTS (?)', ::Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').merge(query))
    end

74
    scope :with_archived_trace, ->() do
75
      with_existing_job_artifacts(Ci::JobArtifact.trace)
76 77
    end

78 79 80 81
    scope :without_archived_trace, ->() do
      where('NOT EXISTS (?)', Ci::JobArtifact.select(1).where('ci_builds.id = ci_job_artifacts.job_id').trace)
    end

S
Shinya Maeda 已提交
82
    scope :with_test_reports, ->() do
83 84
      with_existing_job_artifacts(Ci::JobArtifact.test_reports)
        .eager_load_job_artifacts
S
Shinya Maeda 已提交
85 86
    end

87 88
    scope :eager_load_job_artifacts, -> { includes(:job_artifacts) }

89
    scope :with_artifacts_stored_locally, -> { with_artifacts_archive.where(artifacts_file_store: [nil, LegacyArtifactUploader::Store::LOCAL]) }
90
    scope :with_archived_trace_stored_locally, -> { with_archived_trace.where(artifacts_file_store: [nil, LegacyArtifactUploader::Store::LOCAL]) }
91 92
    scope :with_artifacts_not_expired, ->() { with_artifacts_archive.where('artifacts_expire_at IS NULL OR artifacts_expire_at > ?', Time.now) }
    scope :with_expired_artifacts, ->() { with_artifacts_archive.where('artifacts_expire_at < ?', Time.now) }
93
    scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
94 95
    scope :manual_actions, ->() { where(when: :manual, status: COMPLETED_STATUSES + %i[manual]) }
    scope :scheduled_actions, ->() { where(when: :delayed, status: COMPLETED_STATUSES + %i[scheduled]) }
96
    scope :ref_protected, -> { where(protected: true) }
97
    scope :with_live_trace, -> { where('EXISTS (?)', Ci::BuildTraceChunk.where('ci_builds.id = ci_build_trace_chunks.build_id').select(1)) }
98

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
    scope :matches_tag_ids, -> (tag_ids) do
      matcher = ::ActsAsTaggableOn::Tagging
        .where(taggable_type: CommitStatus)
        .where(context: 'tags')
        .where('taggable_id = ci_builds.id')
        .where.not(tag_id: tag_ids).select('1')

      where("NOT EXISTS (?)", matcher)
    end

    scope :with_any_tags, -> do
      matcher = ::ActsAsTaggableOn::Tagging
        .where(taggable_type: CommitStatus)
        .where(context: 'tags')
        .where('taggable_id = ci_builds.id').select('1')

      where("EXISTS (?)", matcher)
    end

118 119
    mount_uploader :legacy_artifacts_file, LegacyArtifactUploader, mount_on: :artifacts_file
    mount_uploader :legacy_artifacts_metadata, LegacyArtifactUploader, mount_on: :artifacts_metadata
K
Kamil Trzcinski 已提交
120

D
Douwe Maan 已提交
121 122
    acts_as_taggable

123 124
    add_authentication_token_field :token

L
Lin Jen-Shin 已提交
125
    before_save :update_artifacts_size, if: :artifacts_file_changed?
126
    before_save :ensure_token
127
    before_destroy { unscoped_project }
G
Grzegorz Bizon 已提交
128

129
    before_create :ensure_metadata
130
    after_create unless: :importing? do |build|
131
      run_after_commit { BuildHooksWorker.perform_async(build.id) }
132 133
    end

134 135
    after_save :update_project_statistics_after_save, if: :artifacts_size_changed?
    after_destroy :update_project_statistics_after_destroy, unless: :project_destroyed?
D
Douwe Maan 已提交
136 137

    class << self
138 139 140 141 142 143
      # This is needed for url_for to work,
      # as the controller is JobsController
      def model_name
        ActiveModel::Name.new(self, nil, 'job')
      end

D
Douwe Maan 已提交
144 145 146 147
      def first_pending
        pending.unstarted.order('created_at ASC').first
      end

148
      def retry(build, current_user)
149
        # rubocop: disable CodeReuse/ServiceClass
150 151 152
        Ci::RetryBuildService
          .new(build.project, current_user)
          .execute(build)
153
        # rubocop: enable CodeReuse/ServiceClass
D
Douwe Maan 已提交
154 155 156
      end
    end

157
    state_machine :status do
158 159
      event :actionize do
        transition created: :manual
K
Kamil Trzcinski 已提交
160 161
      end

162 163 164 165 166 167 168 169
      event :schedule do
        transition created: :scheduled
      end

      event :unschedule do
        transition scheduled: :manual
      end

S
Shinya Maeda 已提交
170
      event :enqueue_scheduled do
171 172
        transition scheduled: :pending, if: ->(build) do
          build.scheduled_at && build.scheduled_at < Time.now
S
Shinya Maeda 已提交
173
        end
174 175 176
      end

      before_transition scheduled: any do |build|
S
Shinya Maeda 已提交
177 178 179 180
        build.scheduled_at = nil
      end

      before_transition created: :scheduled do |build|
S
Shinya Maeda 已提交
181
        build.scheduled_at = build.options_scheduled_at
S
Shinya Maeda 已提交
182 183 184 185 186 187
      end

      after_transition created: :scheduled do |build|
        build.run_after_commit do
          Ci::BuildScheduleWorker.perform_at(build.scheduled_at, build.id)
        end
188 189
      end

190 191
      after_transition any => [:pending] do |build|
        build.run_after_commit do
K
linting  
Kim "BKC" Carlbäcker 已提交
192
          BuildQueueWorker.perform_async(id)
193 194 195
        end
      end

196
      after_transition pending: :running do |build|
S
Shinya Maeda 已提交
197 198
        build.deployment&.run

199 200 201
        build.run_after_commit do
          BuildHooksWorker.perform_async(id)
        end
202 203
      end

204
      after_transition any => [:success, :failed, :canceled] do |build|
205
        build.run_after_commit do
206
          BuildFinishedWorker.perform_async(id)
207
        end
D
Douwe Maan 已提交
208
      end
209

210
      after_transition any => [:success] do |build|
S
Shinya Maeda 已提交
211 212
        build.deployment&.succeed

213
        build.run_after_commit do
214
          BuildSuccessWorker.perform_async(id)
215
          PagesWorker.perform_async(:deploy, id) if build.pages_generator?
216 217
        end
      end
218

219
      before_transition any => [:failed] do |build|
220
        next unless build.project
S
Shinya Maeda 已提交
221 222 223

        build.deployment&.drop

224
        if build.retry_failure?
225 226 227 228 229
          begin
            Ci::Build.retry(build, build.user)
          rescue Gitlab::Access::AccessDeniedError => ex
            Rails.logger.error "Unable to auto-retry job #{build.id}: #{ex}"
          end
230 231
        end
      end
232

233
      after_transition pending: :running do |build|
234
        build.ensure_metadata.update_timeout_state
T
Tomasz Maczukin 已提交
235
      end
F
Francisco Javier López 已提交
236 237 238 239

      after_transition running: any do |build|
        Ci::BuildRunnerSession.where(build: build).delete_all
      end
S
Shinya Maeda 已提交
240 241 242 243

      after_transition any => [:skipped, :canceled] do |build|
        build.deployment&.cancel
      end
D
Douwe Maan 已提交
244 245
    end

246
    def ensure_metadata
T
Tomasz Maczukin 已提交
247
      metadata || build_metadata(project: project)
D
Douwe Maan 已提交
248 249
    end

250
    def detailed_status(current_user)
251 252 253
      Gitlab::Ci::Status::Build::Factory
        .new(self, current_user)
        .fabricate!
K
Kamil Trzcinski 已提交
254 255
    end

256
    def other_manual_actions
257
      pipeline.manual_actions.where.not(name: name)
258 259
    end

260 261
    def other_scheduled_actions
      pipeline.scheduled_actions.where.not(name: name)
262 263
    end

264 265 266 267 268
    def pages_generator?
      Gitlab.config.pages.enabled &&
        self.name == 'pages'
    end

269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    # degenerated build is one that cannot be run by Runner
    def degenerated?
      self.options.nil?
    end

    def degenerate!
      self.update!(options: nil, yaml_variables: nil, commands: nil)
    end

    def archived?
      return true if degenerated?

      archive_builds_older_than = Gitlab::CurrentSettings.current_application_settings.archive_builds_older_than
      archive_builds_older_than.present? && created_at < archive_builds_older_than
    end

285
    def playable?
286
      action? && !archived? && (manual? || scheduled? || retryable?)
K
Kamil Trzcinski 已提交
287 288
    end

S
Shinya Maeda 已提交
289
    def schedulable?
290
      self.when == 'delayed' && options[:start_in].present?
S
Shinya Maeda 已提交
291 292
    end

S
Shinya Maeda 已提交
293
    def options_scheduled_at
S
Shinya Maeda 已提交
294
      ChronicDuration.parse(options[:start_in])&.seconds&.from_now
K
Kamil Trzcinski 已提交
295 296
    end

297
    def action?
298
      %w[manual delayed].include?(self.when)
299 300
    end

301
    # rubocop: disable CodeReuse/ServiceClass
302
    def play(current_user)
303 304 305
      Ci::PlayBuildService
        .new(project, current_user)
        .execute(self)
306
    end
307
    # rubocop: enable CodeReuse/ServiceClass
308

K
Kamil Trzcinski 已提交
309
    def cancelable?
J
Jacopo 已提交
310
      active? || created?
K
Kamil Trzcinski 已提交
311 312
    end

K
Kamil Trzcinski 已提交
313
    def retryable?
314
      !archived? && (success? || failed? || canceled?)
K
Kamil Trzcinski 已提交
315
    end
316 317 318 319 320 321

    def retries_count
      pipeline.builds.retried.where(name: self.name).count
    end

    def retries_max
M
Markus Doits 已提交
322
      normalized_retry.fetch(:max, 0)
323
    end
K
Kamil Trzcinski 已提交
324

325
    def retry_when
M
Markus Doits 已提交
326
      normalized_retry.fetch(:when, ['always'])
327 328
    end

329 330 331
    def retry_failure?
      return false if retries_max.zero? || retries_count >= retries_max

332
      retry_when.include?('always') || retry_when.include?(failure_reason.to_s)
333
    end
K
Kamil Trzcinski 已提交
334

335 336
    def latest?
      !retried?
K
Kamil Trzcinski 已提交
337 338
    end

339
    def expanded_environment_name
340 341 342
      return unless has_environment?

      strong_memoize(:expanded_environment_name) do
343 344
        ExpandVariables.expand(environment, simple_variables)
      end
345 346
    end

347
    def has_environment?
348
      environment.present?
349 350
    end

351
    def starts_environment?
352
      has_environment? && self.environment_action == 'start'
353 354 355
    end

    def stops_environment?
356
      has_environment? && self.environment_action == 'stop'
357 358 359
    end

    def environment_action
360
      self.options.fetch(:environment, {}).fetch(:action, 'start') if self.options
361 362
    end

S
Shinya Maeda 已提交
363 364 365 366
    def has_deployment?
      !!self.deployment
    end

367
    def outdated_deployment?
S
Shinya Maeda 已提交
368
      success? && !deployment.try(:last?)
369
    end
370

371 372
    def depends_on_builds
      # Get builds of the same type
373
      latest_builds = self.pipeline.builds.latest
374 375 376 377 378

      # Return builds from previous stages
      latest_builds.where('stage_idx < ?', stage_idx)
    end

379
    def triggered_by?(current_user)
S
Shinya Maeda 已提交
380 381 382
      user == current_user
    end

S
Shinya Maeda 已提交
383 384 385 386
    def on_stop
      options&.dig(:environment, :on_stop)
    end

N
Nick Thomas 已提交
387 388 389 390 391 392
    # A slugified version of the build ref, suitable for inclusion in URLs and
    # domain names. Rules:
    #
    #   * Lowercased
    #   * Anything not matching [a-z0-9-] is replaced with a -
    #   * Maximum length is 63 bytes
S
Shinya Maeda 已提交
393
    #   * First/Last Character is not a hyphen
N
Nick Thomas 已提交
394
    def ref_slug
V
vanadium23 已提交
395
      Gitlab::Utils.slugify(ref.to_s)
N
Nick Thomas 已提交
396 397
    end

398
    ##
399
    # Variables in the environment name scope.
400
    #
401 402
    def scoped_variables(environment: expanded_environment_name)
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
403 404 405 406
        variables.concat(predefined_variables)
        variables.concat(project.predefined_variables)
        variables.concat(pipeline.predefined_variables)
        variables.concat(runner.predefined_variables) if runner
407
        variables.concat(project.deployment_variables(environment: environment)) if environment
408 409
        variables.concat(yaml_variables)
        variables.concat(user_variables)
410 411
        variables.concat(secret_group_variables)
        variables.concat(secret_project_variables(environment: environment))
412 413 414 415
        variables.concat(trigger_request.user_variables) if trigger_request
        variables.concat(pipeline.variables)
        variables.concat(pipeline.pipeline_schedule.job_variables) if pipeline.pipeline_schedule
      end
416
    end
417

418 419 420 421
    ##
    # Variables that do not depend on the environment name.
    #
    def simple_variables
422 423 424
      strong_memoize(:simple_variables) do
        scoped_variables(environment: nil).to_runner_variables
      end
425 426 427 428 429 430
    end

    ##
    # All variables, including persisted environment variables.
    #
    def variables
431 432 433
      Gitlab::Ci::Variables::Collection.new
        .concat(persisted_variables)
        .concat(scoped_variables)
434 435 436 437
        .concat(persisted_environment_variables)
        .to_runner_variables
    end

438 439 440 441 442
    ##
    # Regular Ruby hash of scoped variables, without duplicates that are
    # possible to be present in an array of hashes returned from `variables`.
    #
    def scoped_variables_hash
443
      scoped_variables.to_hash
444 445
    end

446 447 448 449
    def features
      { trace_sections: true }
    end

450
    def merge_request
Z
Z.J. van de Weg 已提交
451
      return @merge_request if defined?(@merge_request)
Z
Z.J. van de Weg 已提交
452

453 454
      @merge_request ||=
        begin
455
          merge_requests = MergeRequest.includes(:latest_merge_request_diff)
456 457
            .where(source_branch: ref,
                   source_project: pipeline.project)
Z
Z.J. van de Weg 已提交
458
            .reorder(iid: :desc)
459 460

          merge_requests.find do |merge_request|
461
            merge_request.commit_shas.include?(pipeline.sha)
462 463
          end
        end
464 465
    end

D
Douwe Maan 已提交
466
    def repo_url
K
Kamil Trzcinski 已提交
467
      auth = "gitlab-ci-token:#{ensure_token!}@"
468
      project.http_url_to_repo.sub(%r{^https?://}) do |prefix|
K
Kamil Trzcinski 已提交
469 470
        prefix + auth
      end
D
Douwe Maan 已提交
471 472 473
    end

    def allow_git_fetch
K
Kamil Trzcinski 已提交
474
      project.build_allow_git_fetch
D
Douwe Maan 已提交
475 476 477
    end

    def update_coverage
478
      coverage = trace.extract_coverage(coverage_regex)
L
Lin Jen-Shin 已提交
479
      update(coverage: coverage) if coverage.present?
D
Douwe Maan 已提交
480 481
    end

482
    # rubocop: disable CodeReuse/ServiceClass
483
    def parse_trace_sections!
484
      ExtractSectionsFromBuildTraceService.new(project, user).execute(self)
485
    end
486
    # rubocop: enable CodeReuse/ServiceClass
487

488 489
    def trace
      Gitlab::Ci::Trace.new(self)
490 491
    end

492
    def has_trace?
493
      trace.exist?
T
Tomasz Maczukin 已提交
494 495
    end

496 497
    def has_job_artifacts?
      job_artifacts.any?
S
Shinya Maeda 已提交
498 499
    end

S
Shinya Maeda 已提交
500 501 502 503
    def has_old_trace?
      old_trace.present?
    end

504 505
    def trace=(data)
      raise NotImplementedError
T
Tomasz Maczukin 已提交
506 507
    end

508 509
    def old_trace
      read_attribute(:trace)
510 511
    end

512
    def erase_old_trace!
513
      return unless has_old_trace?
S
Shinya Maeda 已提交
514

515
      update_column(:trace, nil)
D
Douwe Maan 已提交
516 517
    end

518 519 520 521
    def needs_touch?
      Time.now - updated_at > 15.minutes.to_i
    end

L
Lin Jen-Shin 已提交
522
    def valid_token?(token)
523
      self.token && ActiveSupport::SecurityUtils.variable_size_secure_compare(token, self.token)
K
Kamil Trzcinski 已提交
524 525
    end

526 527 528 529
    def has_tags?
      tag_list.any?
    end

530
    def any_runners_online?
531
      project.any_runners? { |runner| runner.active? && runner.online? && runner.can_pick?(self) }
532 533
    end

K
Kamil Trzcinski 已提交
534
    def stuck?
535 536 537
      pending? && !any_runners_online?
    end

538
    def execute_hooks
539
      return unless project
540

541
      build_data = Gitlab::DataBuilder::Build.build(self)
542 543
      project.execute_hooks(build_data.dup, :job_hooks)
      project.execute_services(build_data.dup, :job_hooks)
544 545
    end

546 547 548 549
    def browsable_artifacts?
      artifacts_metadata?
    end

550
    def artifacts_metadata_entry(path, **options)
551
      artifacts_metadata.open do |metadata_stream|
552
        metadata = Gitlab::Ci::Build::Artifacts::Metadata.new(
553
          metadata_stream,
554 555
          path,
          **options)
556

557 558
        metadata.to_entry
      end
559 560
    end

561 562 563 564
    # and use that for `ExpireBuildInstanceArtifactsWorker`?
    def erase_erasable_artifacts!
      job_artifacts.erasable.destroy_all # rubocop: disable DestroyAll
      erase_old_artifacts!
S
Shinya Maeda 已提交
565 566
    end

567 568 569
    def erase(opts = {})
      return false unless erasable?

570 571
      job_artifacts.destroy_all # rubocop: disable DestroyAll
      erase_old_artifacts!
572 573 574 575 576
      erase_trace!
      update_erased!(opts[:erased_by])
    end

    def erasable?
577
      complete? && (artifacts? || has_job_artifacts? || has_trace?)
578 579 580 581 582 583
    end

    def erased?
      !self.erased_at.nil?
    end

584
    def artifacts_expired?
585
      artifacts_expire_at && artifacts_expire_at < Time.now
586 587
    end

588 589 590 591 592
    def artifacts_expire_in
      artifacts_expire_at - Time.now if artifacts_expire_at
    end

    def artifacts_expire_in=(value)
K
Kamil Trzcinski 已提交
593 594
      self.artifacts_expire_at =
        if value
595
          ChronicDuration.parse(value)&.seconds&.from_now
K
Kamil Trzcinski 已提交
596
        end
597 598
    end

599
    def has_expiring_artifacts?
Z
Z.J. van de Weg 已提交
600
      artifacts_expire_at.present? && artifacts_expire_at > Time.now
601 602
    end

603
    def keep_artifacts!
604
      self.update(artifacts_expire_at: nil)
605
      self.job_artifacts.update_all(expire_at: nil)
606 607
    end

608 609 610 611 612 613 614
    def artifacts_file_for_type(type)
      file = job_artifacts.find_by(file_type: Ci::JobArtifact.file_types[type])&.file
      # TODO: to be removed once legacy artifacts is removed
      file ||= legacy_artifacts_file if type == :archive
      file
    end

615
    def coverage_regex
616
      super || project.try(:build_coverage_regex)
617 618
    end

619 620
    def when
      read_attribute(:when) || build_attributes_from_config[:when] || 'on_success'
621 622
    end

623 624
    def yaml_variables
      read_attribute(:yaml_variables) || build_attributes_from_config[:yaml_variables] || []
625 626
    end

627
    def user_variables
628
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
629
        break variables if user.blank?
630

631 632 633 634 635
        variables.append(key: 'GITLAB_USER_ID', value: user.id.to_s)
        variables.append(key: 'GITLAB_USER_EMAIL', value: user.email)
        variables.append(key: 'GITLAB_USER_LOGIN', value: user.username)
        variables.append(key: 'GITLAB_USER_NAME', value: user.name)
      end
636 637
    end

638 639 640
    def secret_group_variables
      return [] unless project.group

641
      project.group.ci_variables_for(ref, project)
642 643 644
    end

    def secret_project_variables(environment: persisted_environment)
645
      project.ci_variables_for(ref: ref, environment: environment)
L
Lin Jen-Shin 已提交
646 647
    end

648
    def steps
T
Tomasz Maczukin 已提交
649 650
      [Gitlab::Ci::Build::Step.from_commands(self),
       Gitlab::Ci::Build::Step.from_after_script(self)].compact
651 652 653
    end

    def image
654
      Gitlab::Ci::Build::Image.from_image(self)
655 656 657
    end

    def services
658
      Gitlab::Ci::Build::Image.from_services(self)
659 660 661
    end

    def cache
M
Matija Čupić 已提交
662 663 664 665
      cache = options[:cache]

      if cache && project.jobs_cache_index
        cache = cache.merge(
666
          key: "#{cache[:key]}-#{project.jobs_cache_index}")
667
      end
M
Matija Čupić 已提交
668 669

      [cache]
670 671
    end

672
    def credentials
673
      Gitlab::Ci::Build::Credentials::Factory.new(self).create!
674 675
    end

T
Tomasz Maczukin 已提交
676
    def dependencies
677 678
      return [] if empty_dependencies?

T
Tomasz Maczukin 已提交
679 680
      depended_jobs = depends_on_builds

681
      return depended_jobs unless options[:dependencies].present?
T
Tomasz Maczukin 已提交
682

683 684
      depended_jobs.select do |job|
        options[:dependencies].include?(job.name)
T
Tomasz Maczukin 已提交
685 686 687
      end
    end

688 689 690 691
    def empty_dependencies?
      options[:dependencies]&.empty?
    end

K
Kamil Trzciński 已提交
692
    def has_valid_build_dependencies?
K
Kamil Trzciński 已提交
693
      return true if Feature.enabled?('ci_disable_validates_dependencies')
694

K
Kamil Trzciński 已提交
695
      dependencies.all?(&:valid_dependency?)
696 697
    end

K
Kamil Trzciński 已提交
698
    def valid_dependency?
S
Shinya Maeda 已提交
699 700 701 702 703 704
      return false if artifacts_expired?
      return false if erased?

      true
    end

705 706 707 708 709 710 711 712
    def runner_required_feature_names
      strong_memoize(:runner_required_feature_names) do
        RUNNER_FEATURES.select do |feature, method|
          method.call(self)
        end.keys
      end
    end

713
    def supported_runner?(features)
714
      runner_required_feature_names.all? do |feature_name|
K
Kamil Trzciński 已提交
715
        features&.dig(feature_name)
716 717 718
      end
    end

719
    def publishes_artifacts_reports?
720
      options&.dig(:artifacts, :reports)&.any?
721 722
    end

723 724 725 726
    def hide_secrets(trace)
      return unless trace

      trace = trace.dup
727 728
      Gitlab::Ci::MaskSecret.mask!(trace, project.runners_token) if project
      Gitlab::Ci::MaskSecret.mask!(trace, token)
729 730 731
      trace
    end

732
    def serializable_hash(options = {})
J
James Lopez 已提交
733
      super(options).merge(when: read_attribute(:when))
734 735
    end

F
Francisco Javier López 已提交
736 737 738 739
    def has_terminal?
      running? && runner_session_url.present?
    end

S
Shinya Maeda 已提交
740 741
    def collect_test_reports!(test_reports)
      test_reports.get_suite(group_name).tap do |test_suite|
742 743
        each_report(Ci::JobArtifact::TEST_REPORT_FILE_TYPES) do |file_type, blob|
          Gitlab::Ci::Parsers::Test.fabricate!(file_type).parse!(blob, test_suite)
S
Shinya Maeda 已提交
744 745 746 747
        end
      end
    end

748 749 750 751 752 753
    # Virtual deployment status depending on the environment status.
    def deployment_status
      return nil unless starts_environment?

      if success?
        return successful_deployment_status
S
Shinya Maeda 已提交
754
      elsif failed?
755 756 757 758 759 760
        return :failed
      end

      :creating
    end

761 762
    private

763 764 765 766 767 768 769
    def erase_old_artifacts!
      # TODO: To be removed once we get rid of
      remove_artifacts_file!
      remove_artifacts_metadata!
      save
    end

770
    def successful_deployment_status
S
Shinya Maeda 已提交
771 772 773 774
      if deployment&.last?
        :last
      else
        :out_of_date
775 776 777
      end
    end

778 779 780 781
    def each_report(report_types)
      job_artifacts_for_types(report_types).each do |report_artifact|
        report_artifact.each_blob do |blob|
          yield report_artifact.file_type, blob
S
Shinya Maeda 已提交
782 783 784 785
        end
      end
    end

786 787 788 789 790
    def job_artifacts_for_types(report_types)
      # Use select to leverage cached associations and avoid N+1 queries
      job_artifacts.select { |artifact| artifact.file_type.in?(report_types) }
    end

L
Lin Jen-Shin 已提交
791
    def update_artifacts_size
K
Kamil Trzcinski 已提交
792
      self.artifacts_size = legacy_artifacts_file&.size
L
Lin Jen-Shin 已提交
793 794
    end

795
    def erase_trace!
796
      trace.erase!
797 798 799
    end

    def update_erased!(user = nil)
800
      self.update(erased_by: user, erased_at: Time.now, artifacts_expire_at: nil)
801 802
    end

803
    def unscoped_project
K
Kamil Trzciński 已提交
804
      @unscoped_project ||= Project.unscoped.find_by(id: project_id)
805 806
    end

807 808
    CI_REGISTRY_USER = 'gitlab-ci-token'.freeze

809 810
    def persisted_variables
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
811
        break variables unless persisted?
812 813

        variables
814
          .concat(pipeline.persisted_variables)
815
          .append(key: 'CI_JOB_ID', value: id.to_s)
K
Kamil Trzciński 已提交
816
          .append(key: 'CI_JOB_URL', value: Gitlab::Routing.url_helpers.project_job_url(project, self))
817 818 819 820 821 822
          .append(key: 'CI_JOB_TOKEN', value: token, public: false)
          .append(key: 'CI_BUILD_ID', value: id.to_s)
          .append(key: 'CI_BUILD_TOKEN', value: token, public: false)
          .append(key: 'CI_REGISTRY_USER', value: CI_REGISTRY_USER)
          .append(key: 'CI_REGISTRY_PASSWORD', value: token, public: false)
          .append(key: 'CI_REPOSITORY_URL', value: repo_url, public: false)
823
          .concat(deploy_token_variables)
824 825 826
      end
    end

M
Matija Čupić 已提交
827
    def predefined_variables # rubocop:disable Metrics/AbcSize
828 829 830
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
        variables.append(key: 'CI', value: 'true')
        variables.append(key: 'GITLAB_CI', value: 'true')
831
        variables.append(key: 'GITLAB_FEATURES', value: project.licensed_features.join(','))
832 833
        variables.append(key: 'CI_SERVER_NAME', value: 'GitLab')
        variables.append(key: 'CI_SERVER_VERSION', value: Gitlab::VERSION)
834 835 836
        variables.append(key: 'CI_SERVER_VERSION_MAJOR', value: gitlab_version_info.major.to_s)
        variables.append(key: 'CI_SERVER_VERSION_MINOR', value: gitlab_version_info.minor.to_s)
        variables.append(key: 'CI_SERVER_VERSION_PATCH', value: gitlab_version_info.patch.to_s)
837
        variables.append(key: 'CI_SERVER_REVISION', value: Gitlab.revision)
838 839 840
        variables.append(key: 'CI_JOB_NAME', value: name)
        variables.append(key: 'CI_JOB_STAGE', value: stage)
        variables.append(key: 'CI_COMMIT_SHA', value: sha)
841
        variables.append(key: 'CI_COMMIT_BEFORE_SHA', value: before_sha)
842 843 844 845 846
        variables.append(key: 'CI_COMMIT_REF_NAME', value: ref)
        variables.append(key: 'CI_COMMIT_REF_SLUG', value: ref_slug)
        variables.append(key: "CI_COMMIT_TAG", value: ref) if tag?
        variables.append(key: "CI_PIPELINE_TRIGGERED", value: 'true') if trigger_request
        variables.append(key: "CI_JOB_MANUAL", value: 'true') if action?
847
        variables.append(key: "CI_NODE_INDEX", value: self.options[:instance].to_s) if self.options&.include?(:instance)
848
        variables.append(key: "CI_NODE_TOTAL", value: (self.options&.dig(:parallel) || 1).to_s)
849 850
        variables.concat(legacy_variables)
      end
851 852
    end

853 854 855 856
    def gitlab_version_info
      @gitlab_version_info ||= Gitlab::VersionInfo.parse(Gitlab::VERSION)
    end

857
    def legacy_variables
858 859 860 861 862 863 864 865 866 867 868
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
        variables.append(key: 'CI_BUILD_REF', value: sha)
        variables.append(key: 'CI_BUILD_BEFORE_SHA', value: before_sha)
        variables.append(key: 'CI_BUILD_REF_NAME', value: ref)
        variables.append(key: 'CI_BUILD_REF_SLUG', value: ref_slug)
        variables.append(key: 'CI_BUILD_NAME', value: name)
        variables.append(key: 'CI_BUILD_STAGE', value: stage)
        variables.append(key: "CI_BUILD_TAG", value: ref) if tag?
        variables.append(key: "CI_BUILD_TRIGGERED", value: 'true') if trigger_request
        variables.append(key: "CI_BUILD_MANUAL", value: 'true') if action?
      end
869
    end
870

871 872
    def persisted_environment_variables
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
873
        break variables unless persisted? && persisted_environment.present?
874 875 876 877 878 879 880 881 882 883

        variables.concat(persisted_environment.predefined_variables)

        # Here we're passing unexpanded environment_url for runner to expand,
        # and we need to make sure that CI_ENVIRONMENT_NAME and
        # CI_ENVIRONMENT_SLUG so on are available for the URL be expanded.
        variables.append(key: 'CI_ENVIRONMENT_URL', value: environment_url) if environment_url
      end
    end

884 885
    def deploy_token_variables
      Gitlab::Ci::Variables::Collection.new.tap do |variables|
886 887
        break variables unless gitlab_deploy_token

888
        variables.append(key: 'CI_DEPLOY_USER', value: gitlab_deploy_token.username)
889
        variables.append(key: 'CI_DEPLOY_PASSWORD', value: gitlab_deploy_token.token, public: false)
890 891 892
      end
    end

893
    def environment_url
894
      options&.dig(:environment, :url) || persisted_environment&.external_url
895 896
    end

897 898 899 900 901
    # The format of the retry option changed in GitLab 11.5: Before it was
    # integer only, after it is a hash. New builds are created with the new
    # format, but builds created before GitLab 11.5 and saved in database still
    # have the old integer only format. This method returns the retry option
    # normalized as a hash in 11.5+ format.
M
Markus Doits 已提交
902
    def normalized_retry
903
      value = options&.dig(:retry)
M
Markus Doits 已提交
904 905 906
      value.is_a?(Integer) ? { max: value } : value.to_h
    end

907 908
    def build_attributes_from_config
      return {} unless pipeline.config_processor
909

910 911
      pipeline.config_processor.build_attributes(name)
    end
912

913 914 915
    def update_project_statistics_after_save
      update_project_statistics(read_attribute(:artifacts_size).to_i - artifacts_size_was.to_i)
    end
916

917 918
    def update_project_statistics_after_destroy
      update_project_statistics(-artifacts_size)
919
    end
920

921 922 923 924 925 926
    def update_project_statistics(difference)
      ProjectStatistics.increment_statistic(project_id, :build_artifacts_size, difference)
    end

    def project_destroyed?
      project.pending_delete?
927
    end
D
Douwe Maan 已提交
928 929
  end
end