summaryrefslogtreecommitdiff
path: root/app/models/concerns/artifact_migratable.rb
blob: b99585a0b65a9f1b7177e7bcba6c9eea13e95130 (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
# Adapter class to unify the interface between mounted uploaders and the
# Ci::Artifact model
# Meant to be prepended so the interface can stay the same
module ArtifactMigratable
  def artifacts_file
    artifacts_archive&.file || legacy_artifacts_file
  end

  def artifacts_metadata
    artifacts_metadata&.file || legacy_artifacts_metadata
  end

  def artifacts?
    !artifacts_expired? && artifacts_file.exists?
  end

  def artifacts_metadata?
    artifacts? && artifacts_metadata.exists?
  end

  def artifacts_file_changed?
    artifacts_archive&.file_changed? || attribute_changed?(:artifacts_file)
  end

  def remove_artifacts_file!
    if artifacts_archive
      artifacts_archive.destroy
    else
      remove_legacy_artifacts_file!
    end
  end

  def remove_artifacts_metadata!
    if artifacts_metadata
      artifacts_metadata.destroy
    else
      remove_legacy_artifacts_metadata!
    end
  end

  def artifacts_size
    read_attribute(:artifacts_size).to_i +
      artifacts_archive&.size.to_i + artifacts_metadata&.size.to_i
  end
end