mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
Improve restore from tombstone rake task.
This commit is contained in:
parent
3af5b19002
commit
b62b6ba12c
1 changed files with 29 additions and 13 deletions
|
@ -403,6 +403,10 @@ def recover_from_tombstone
|
|||
return
|
||||
end
|
||||
|
||||
begin
|
||||
original_setting = SiteSetting.max_image_size_kb
|
||||
SiteSetting.max_image_size_kb = 10240
|
||||
|
||||
public_path = Rails.root.join("public")
|
||||
|
||||
Post.find_each do |post|
|
||||
|
@ -410,21 +414,33 @@ def recover_from_tombstone
|
|||
|
||||
doc.css("img[src]").each do |img|
|
||||
url = img["src"]
|
||||
|
||||
next unless url =~ /^\/uploads\//
|
||||
|
||||
upload = Upload.find_by(url: url)
|
||||
|
||||
if !upload
|
||||
File.open(File.join(public_path, 'uploads', 'tombstone', url[9..-1])) do |file|
|
||||
if !upload && url
|
||||
tombstone_path = File.join(public_path, 'uploads', 'tombstone', url.gsub(/^\/uploads\//, ""))
|
||||
|
||||
if File.exists?(tombstone_path)
|
||||
File.open(tombstone_path) do |file|
|
||||
new_upload = Upload.create_for(Discourse::SYSTEM_USER_ID, file, File.basename(url), File.size(file))
|
||||
|
||||
if new_upload.persisted?
|
||||
putc "."
|
||||
DbHelper.remap(url, new_upload.url)
|
||||
else
|
||||
puts "Failed to create upload for #{url}."
|
||||
puts "Failed to create upload for #{url}: #{new_upload.errors.full_messages}."
|
||||
end
|
||||
end
|
||||
else
|
||||
puts "Failed to find file (#{tombstone_path}) in tombstone."
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
ensure
|
||||
SiteSetting.max_image_size_kb = original_setting
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue