2013-06-15 17:29:20 +08:00
|
|
|
require "digest/sha1"
|
|
|
|
|
|
|
|
task "uploads:backfill_shas" => :environment do
|
|
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
|
|
|
puts "Backfilling #{db}"
|
|
|
|
Upload.select([:id, :sha, :url]).find_each do |u|
|
|
|
|
if u.sha.nil?
|
|
|
|
putc "."
|
|
|
|
path = "#{Rails.root}/public/#{u.url}"
|
|
|
|
sha = Digest::SHA1.file(path).hexdigest
|
|
|
|
begin
|
|
|
|
Upload.update_all ["sha = ?", sha], ["id = ?", u.id]
|
|
|
|
rescue ActiveRecord::RecordNotUnique
|
|
|
|
# not a big deal if we've got a few duplicates
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
puts "done"
|
|
|
|
end
|
2014-06-24 21:35:15 +08:00
|
|
|
|
|
|
|
task "uploads:migrate_from_s3" => :environment do
|
|
|
|
require 'file_store/local_store'
|
|
|
|
require 'file_helper'
|
|
|
|
|
|
|
|
local_store = FileStore::LocalStore.new
|
|
|
|
max_file_size = [SiteSetting.max_image_size_kb, SiteSetting.max_attachment_size_kb].max.kilobytes
|
|
|
|
|
2015-03-19 01:23:55 +08:00
|
|
|
puts "Deleting all optimized images..."
|
|
|
|
puts
|
|
|
|
|
|
|
|
OptimizedImage.destroy_all
|
|
|
|
|
2014-06-24 21:35:15 +08:00
|
|
|
puts "Migrating uploads from S3 to local storage"
|
|
|
|
puts
|
|
|
|
|
|
|
|
Upload.order(:id).find_each do |upload|
|
|
|
|
|
|
|
|
# remove invalid uploads
|
|
|
|
if upload.url.blank?
|
|
|
|
upload.destroy!
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
# no need to download an upload twice
|
|
|
|
if local_store.has_been_uploaded?(upload.url)
|
|
|
|
putc '.'
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
# try to download the upload
|
|
|
|
begin
|
|
|
|
# keep track of the previous url
|
|
|
|
previous_url = upload.url
|
|
|
|
# fix the name of pasted images
|
|
|
|
upload.original_filename = "blob.png" if upload.original_filename == "blob"
|
|
|
|
# download the file (in a temp file)
|
|
|
|
temp_file = FileHelper.download("http:" + previous_url, max_file_size, "from_s3")
|
|
|
|
# store the file locally
|
|
|
|
upload.url = local_store.store_upload(temp_file, upload)
|
|
|
|
# save the new url
|
|
|
|
if upload.save
|
|
|
|
# update & rebake the posts (if any)
|
|
|
|
Post.where("raw ILIKE ?", "%#{previous_url}%").find_each do |post|
|
2015-03-19 01:23:55 +08:00
|
|
|
post.raw = post.raw.gsub(previous_url, upload.url)
|
|
|
|
post.save
|
2014-06-24 21:35:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
putc '#'
|
|
|
|
else
|
|
|
|
putc 'X'
|
|
|
|
end
|
|
|
|
|
|
|
|
# close the temp_file
|
|
|
|
temp_file.close! if temp_file.respond_to? :close!
|
|
|
|
rescue
|
|
|
|
putc 'X'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
puts
|
|
|
|
|
|
|
|
end
|
2014-09-30 00:31:53 +08:00
|
|
|
|
|
|
|
task "uploads:clean_up" => :environment do
|
|
|
|
|
|
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
|
|
|
puts "Cleaning up uploads and thumbnails for '#{db}'..."
|
|
|
|
|
|
|
|
if Discourse.store.external?
|
|
|
|
puts "This task only works for internal storages."
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
public_directory = "#{Rails.root}/public"
|
|
|
|
|
|
|
|
##
|
|
|
|
## DATABASE vs FILE SYSTEM
|
|
|
|
##
|
|
|
|
|
|
|
|
# uploads & avatars
|
|
|
|
Upload.order(:id).find_each do |upload|
|
|
|
|
path = "#{public_directory}#{upload.url}"
|
|
|
|
if !File.exists?(path)
|
|
|
|
upload.destroy rescue nil
|
|
|
|
putc "#"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# optimized images
|
|
|
|
OptimizedImage.order(:id).find_each do |optimized_image|
|
|
|
|
path = "#{public_directory}#{optimized_image.url}"
|
|
|
|
if !File.exists?(path)
|
|
|
|
optimized_image.destroy rescue nil
|
|
|
|
putc "#"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
## FILE SYSTEM vs DATABASE
|
|
|
|
##
|
|
|
|
|
|
|
|
uploads_directory = "#{public_directory}/uploads/#{db}"
|
|
|
|
|
|
|
|
# avatars (no avatar should be stored in that old directory)
|
|
|
|
FileUtils.rm_rf("#{uploads_directory}/avatars") rescue nil
|
|
|
|
|
|
|
|
# uploads
|
|
|
|
Dir.glob("#{uploads_directory}/*/*.*").each do |f|
|
|
|
|
url = "/uploads/#{db}/" << f.split("/uploads/#{db}/")[1]
|
|
|
|
if !Upload.where(url: url).exists?
|
|
|
|
FileUtils.rm(f) rescue nil
|
|
|
|
putc "#"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# optimized images
|
|
|
|
Dir.glob("#{uploads_directory}/_optimized/*/*/*.*").each do |f|
|
|
|
|
url = "/uploads/#{db}/_optimized/" << f.split("/uploads/#{db}/_optimized/")[1]
|
|
|
|
if !OptimizedImage.where(url: url).exists?
|
|
|
|
FileUtils.rm(f) rescue nil
|
|
|
|
putc "#"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2015-05-11 08:30:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
# list all missing uploads and optimized images
|
|
|
|
task "uploads:missing" => :environment do
|
|
|
|
|
|
|
|
public_directory = "#{Rails.root}/public"
|
|
|
|
|
|
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
|
|
|
|
|
|
|
if Discourse.store.external?
|
|
|
|
puts "This task only works for internal storages."
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
Upload.order(:id).find_each do |upload|
|
|
|
|
|
|
|
|
# could be a remote image
|
|
|
|
next unless upload.url =~ /^\/uploads\//
|
|
|
|
|
|
|
|
path = "#{public_directory}#{upload.url}"
|
|
|
|
bad = true
|
|
|
|
begin
|
|
|
|
bad = false if File.size(path) != 0
|
|
|
|
rescue
|
|
|
|
# something is messed up
|
|
|
|
end
|
|
|
|
puts path if bad
|
|
|
|
end
|
|
|
|
|
|
|
|
OptimizedImage.order(:id).find_each do |optimized_image|
|
|
|
|
|
|
|
|
# remote?
|
|
|
|
next unless optimized_image.url =~ /^\/uploads\//
|
|
|
|
|
|
|
|
path = "#{public_directory}#{optimized_image.url}"
|
|
|
|
|
|
|
|
bad = true
|
|
|
|
begin
|
|
|
|
bad = false if File.size(path) != 0
|
|
|
|
rescue
|
|
|
|
# something is messed up
|
|
|
|
end
|
|
|
|
puts path if bad
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|