summaryrefslogtreecommitdiff
path: root/app/uploaders/artifact_uploader.rb
blob: b6c52ddac7a6a5a16a9e7d327e1ffbcae8a1d35b (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
class ArtifactUploader < CarrierWave::Uploader::Base
  storage :file

  attr_accessor :build, :field

  def self.artifacts_path
    Gitlab.config.artifacts.path
  end

  def self.artifacts_upload_path
    File.join(self.artifacts_path, 'tmp/uploads/')
  end

  def self.artifacts_cache_path
    File.join(self.artifacts_path, 'tmp/cache/')
  end

  def initialize(build, field)
    @build, @field = build, field
  end

  def store_dir
    File.join(self.class.artifacts_path, @build.artifacts_path)
  end

  def cache_dir
    File.join(self.class.artifacts_cache_path, @build.artifacts_path)
  end

  def file_storage?
    self.class.storage == CarrierWave::Storage::File
  end

  def filename
    file.try(:filename)
  end

  def exists?
    file.try(:exists?)
  end

  def move_to_cache
    true
  end

  def move_to_store
    true
  end
end