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

records_uploads.rb « uploaders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: feb4f04d7b756bf8a8fa046a49802da8046bfa94 (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
module RecordsUploads
  extend ActiveSupport::Concern

  included do
    after :store,   :record_upload
    before :remove, :destroy_upload
  end

  # After storing an attachment, create a corresponding Upload record
  #
  # NOTE: We're ignoring the argument passed to this callback because we want
  # the `SanitizedFile` object from `CarrierWave::Uploader::Base#file`, not the
  # `Tempfile` object the callback gets.
  #
  # Called `after :store`
  def record_upload(_tempfile = nil)
    return unless model
    return unless file_storage?
    return unless file.exists?

    Upload.record(self)
  end

  private

  # Before removing an attachment, destroy any Upload records at the same path
  #
  # Called `before :remove`
  def destroy_upload(*args)
    return unless file_storage?
    return unless file

    Upload.remove_path(relative_path)
  end
end