gitlab-org--gitlab-foss/app/uploaders/records_uploads.rb

62 lines
1.5 KiB
Ruby
Raw Normal View History

module RecordsUploads
2018-01-29 17:57:34 +00:00
module Concern
extend ActiveSupport::Concern
2018-01-29 17:57:34 +00:00
attr_accessor :upload
2018-01-29 17:57:34 +00:00
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 && file.exists?
Upload.transaction do
uploads.where(path: upload_path).delete_all
upload.destroy! if upload
self.upload = build_upload_from_uploader(self)
upload.save!
end
end
def upload_path
File.join(store_dir, filename.to_s)
end
private
def uploads
Upload.order(id: :desc).where(uploader: self.class.to_s)
end
2018-01-29 17:57:34 +00:00
def build_upload_from_uploader(uploader)
Upload.new(
size: uploader.file.size,
path: uploader.upload_path,
model: uploader.model,
uploader: uploader.class.to_s
)
end
2018-01-29 17:57:34 +00:00
# Before removing an attachment, destroy any Upload records at the same path
#
# Called `before :remove`
def destroy_upload(*args)
return unless file && file.exists?
2018-01-29 17:57:34 +00:00
self.upload = nil
uploads.where(path: upload_path).delete_all
end
end
end