2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-21 22:28:52 +08:00
|
|
|
require "file_store/base_store"
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
module FileStore
|
|
|
|
class LocalStore < BaseStore
|
2015-05-30 00:39:47 +08:00
|
|
|
def store_file(file, path)
|
|
|
|
copy_file(file, "#{public_dir}#{path}")
|
2020-10-09 19:51:24 +08:00
|
|
|
"#{Discourse.base_path}#{path}"
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2016-08-15 11:21:24 +08:00
|
|
|
def remove_file(url, _)
|
2015-05-30 00:39:47 +08:00
|
|
|
return unless is_relative?(url)
|
2016-06-30 22:55:01 +08:00
|
|
|
source = "#{public_dir}#{url}"
|
2022-01-06 01:45:08 +08:00
|
|
|
return unless File.exist?(source)
|
2016-06-30 22:55:01 +08:00
|
|
|
destination = "#{public_dir}#{url.sub("/uploads/", "/uploads/tombstone/")}"
|
|
|
|
dir = Pathname.new(destination).dirname
|
2022-01-06 01:45:08 +08:00
|
|
|
FileUtils.mkdir_p(dir) unless Dir.exist?(dir)
|
|
|
|
FileUtils.remove(destination) if File.exist?(destination)
|
2016-06-30 22:55:01 +08:00
|
|
|
FileUtils.move(source, destination, force: true)
|
2018-09-18 10:48:29 +08:00
|
|
|
FileUtils.touch(destination)
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def has_been_uploaded?(url)
|
2016-06-30 22:55:01 +08:00
|
|
|
is_relative?(url) || is_local?(url)
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def absolute_base_url
|
|
|
|
"#{Discourse.base_url_no_prefix}#{relative_base_url}"
|
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2015-06-01 23:49:58 +08:00
|
|
|
def absolute_base_cdn_url
|
|
|
|
"#{Discourse.asset_host}#{relative_base_url}"
|
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def relative_base_url
|
2020-10-09 19:51:24 +08:00
|
|
|
File.join(Discourse.base_path, upload_path)
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
FEATURE: Direct S3 multipart uploads for backups (#14736)
This PR introduces a new `enable_experimental_backup_uploads` site setting (default false and hidden), which when enabled alongside `enable_direct_s3_uploads` will allow for direct S3 multipart uploads of backup .tar.gz files.
To make multipart external uploads work with both the S3BackupStore and the S3Store, I've had to move several methods out of S3Store and into S3Helper, including:
* presigned_url
* create_multipart
* abort_multipart
* complete_multipart
* presign_multipart_part
* list_multipart_parts
Then, S3Store and S3BackupStore either delegate directly to S3Helper or have their own special methods to call S3Helper for these methods. FileStore.temporary_upload_path has also removed its dependence on upload_path, and can now be used interchangeably between the stores. A similar change was made in the frontend as well, moving the multipart related JS code out of ComposerUppyUpload and into a mixin of its own, so it can also be used by UppyUploadMixin.
Some changes to ExternalUploadManager had to be made here as well. The backup direct uploads do not need an Upload record made for them in the database, so they can be moved to their final S3 resting place when completing the multipart upload.
This changeset is not perfect; it introduces some special cases in UploadController to handle backups that was previously in BackupController, because UploadController is where the multipart routes are located. A subsequent pull request will pull these routes into a module or some other sharing pattern, along with hooks, so the backup controller and the upload controller (and any future controllers that may need them) can include these routes in a nicer way.
2021-11-11 06:25:31 +08:00
|
|
|
def temporary_upload_path(filename)
|
|
|
|
FileStore::BaseStore.temporary_upload_path(filename, folder_prefix: relative_base_url)
|
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def external?
|
2015-05-30 00:39:47 +08:00
|
|
|
false
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2015-05-30 00:39:47 +08:00
|
|
|
def download_url(upload)
|
|
|
|
return unless upload
|
2018-11-29 12:11:48 +08:00
|
|
|
File.join(relative_base_url, upload.sha1)
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2016-06-30 22:55:01 +08:00
|
|
|
def cdn_url(url)
|
2019-02-21 02:24:38 +08:00
|
|
|
UrlHelper.local_cdn_url(url)
|
2016-06-30 22:55:01 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def path_for(upload)
|
2015-06-01 23:49:58 +08:00
|
|
|
url = upload.try(:url)
|
|
|
|
"#{public_dir}#{upload.url}" if url && url[0] == "/" && url[1] != "/"
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-14 04:08:29 +08:00
|
|
|
|
2013-11-28 05:01:41 +08:00
|
|
|
def purge_tombstone(grace_period)
|
2022-01-06 01:45:08 +08:00
|
|
|
if Dir.exist?(Discourse.store.tombstone_dir)
|
2017-04-07 15:50:17 +08:00
|
|
|
Discourse::Utils.execute_command(
|
|
|
|
"find",
|
|
|
|
tombstone_dir,
|
|
|
|
"-mtime",
|
|
|
|
"+#{grace_period}",
|
|
|
|
"-type",
|
2023-01-09 20:10:19 +08:00
|
|
|
"f",
|
2017-04-07 15:50:17 +08:00
|
|
|
"-delete",
|
|
|
|
)
|
|
|
|
end
|
2013-11-28 05:01:41 +08:00
|
|
|
end
|
|
|
|
|
2015-05-28 07:03:24 +08:00
|
|
|
def get_path_for(type, upload_id, sha, extension)
|
2021-05-27 23:42:25 +08:00
|
|
|
prefix_path(super(type, upload_id, sha, extension))
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-14 04:08:29 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def copy_file(file, path)
|
2016-06-30 22:55:01 +08:00
|
|
|
dir = Pathname.new(path).dirname
|
2022-01-06 01:45:08 +08:00
|
|
|
FileUtils.mkdir_p(dir) unless Dir.exist?(dir)
|
2013-11-06 02:04:47 +08:00
|
|
|
# move the file to the right location
|
2013-11-28 05:01:41 +08:00
|
|
|
# not using mv, cause permissions are no good on move
|
|
|
|
File.open(path, "wb") { |f| f.write(file.read) }
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-14 04:08:29 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def is_relative?(url)
|
2014-07-18 23:54:18 +08:00
|
|
|
url.present? && url.start_with?(relative_base_url)
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def is_local?(url)
|
2014-07-18 23:54:18 +08:00
|
|
|
return false if url.blank?
|
2013-12-16 18:44:59 +08:00
|
|
|
absolute_url = url.start_with?("//") ? SiteSetting.scheme + ":" + url : url
|
2013-11-06 02:04:47 +08:00
|
|
|
absolute_url.start_with?(absolute_base_url) || absolute_url.start_with?(absolute_base_cdn_url)
|
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def public_dir
|
2018-11-29 12:11:48 +08:00
|
|
|
File.join(Rails.root, "public")
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
|
2013-11-28 05:01:41 +08:00
|
|
|
def tombstone_dir
|
2016-06-30 22:55:01 +08:00
|
|
|
"#{public_dir}#{relative_base_url.sub("/uploads/", "/uploads/tombstone/")}"
|
2013-11-28 05:01:41 +08:00
|
|
|
end
|
|
|
|
|
2018-11-27 03:24:51 +08:00
|
|
|
def list_missing_uploads(skip_optimized: false)
|
|
|
|
list_missing(Upload)
|
|
|
|
list_missing(OptimizedImage) unless skip_optimized
|
|
|
|
end
|
|
|
|
|
2020-01-13 07:12:27 +08:00
|
|
|
def copy_from(source_path)
|
|
|
|
FileUtils.mkdir_p(File.join(public_dir, upload_path))
|
|
|
|
|
|
|
|
Discourse::Utils.execute_command(
|
|
|
|
"rsync",
|
|
|
|
"-a",
|
|
|
|
"--safe-links",
|
|
|
|
"#{source_path}/",
|
|
|
|
"#{upload_path}/",
|
|
|
|
failure_message: "Failed to copy uploads.",
|
|
|
|
chdir: public_dir,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-11-27 03:24:51 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def list_missing(model)
|
|
|
|
count = 0
|
|
|
|
model.find_each do |upload|
|
|
|
|
# could be a remote image
|
2023-01-21 02:52:49 +08:00
|
|
|
next unless upload.url =~ %r{\A/[^/]}
|
2018-11-27 03:24:51 +08:00
|
|
|
|
2018-11-29 12:11:48 +08:00
|
|
|
path = "#{public_dir}#{upload.url}"
|
2018-11-27 03:24:51 +08:00
|
|
|
bad = true
|
|
|
|
begin
|
|
|
|
bad = false if File.size(path) != 0
|
|
|
|
rescue StandardError
|
|
|
|
# something is messed up
|
|
|
|
end
|
|
|
|
if bad
|
|
|
|
count += 1
|
|
|
|
puts path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
puts "#{count} of #{model.count} #{model.name.underscore.pluralize} are missing" if count > 0
|
|
|
|
end
|
|
|
|
|
2021-05-27 23:42:25 +08:00
|
|
|
def prefix_path(path)
|
|
|
|
File.join("/", upload_path, path)
|
|
|
|
end
|
2018-11-27 03:24:51 +08:00
|
|
|
end
|
2013-08-01 05:26:34 +08:00
|
|
|
end
|