2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
# Mounted uploaders are destroyed by carrierwave's after_commit
|
|
|
|
# hook. This hook fetches upload location (local vs remote) from
|
2018-12-13 13:39:08 +05:30
|
|
|
# Upload model. So it's necessary to make sure that during that
|
2018-11-08 19:23:39 +05:30
|
|
|
# after_commit hook model's associated uploads are not deleted yet.
|
|
|
|
# IOW we can not use dependent: :destroy :
|
|
|
|
# has_many :uploads, as: :model, dependent: :destroy
|
|
|
|
#
|
|
|
|
# And because not-mounted uploads require presence of upload's
|
|
|
|
# object model when destroying them (FileUploader's `build_upload` method
|
|
|
|
# references `model` on delete), we can not use after_commit hook for these
|
|
|
|
# uploads.
|
|
|
|
#
|
|
|
|
# Instead FileUploads are destroyed in before_destroy hook and remaining uploads
|
|
|
|
# are destroyed by the carrierwave's after_commit hook.
|
|
|
|
|
|
|
|
module WithUploads
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
# Currently there is no simple way how to select only not-mounted
|
|
|
|
# uploads, it should be all FileUploaders so we select them by
|
|
|
|
# `uploader` class
|
|
|
|
FILE_UPLOADERS = %w(PersonalFileUploader NamespaceFileUploader FileUploader).freeze
|
|
|
|
|
|
|
|
included do
|
|
|
|
has_many :uploads, as: :model
|
|
|
|
|
2019-01-03 12:48:30 +05:30
|
|
|
before_destroy :destroy_file_uploads
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# mounted uploads are deleted in carrierwave's after_commit hook,
|
|
|
|
# but FileUploaders which are not mounted must be deleted explicitly and
|
|
|
|
# it can not be done in after_commit because FileUploader requires loads
|
|
|
|
# associated model on destroy (which is already deleted in after_commit)
|
2019-01-03 12:48:30 +05:30
|
|
|
def destroy_file_uploads
|
|
|
|
self.uploads.where(uploader: FILE_UPLOADERS).find_each do |upload|
|
2018-11-08 19:23:39 +05:30
|
|
|
upload.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-03 12:48:30 +05:30
|
|
|
def retrieve_upload(_identifier, paths)
|
|
|
|
uploads.find_by(path: paths)
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|