summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/uploads_manager.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/import_export/uploads_manager.rb')
-rw-r--r--lib/gitlab/import_export/uploads_manager.rb14
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/gitlab/import_export/uploads_manager.rb b/lib/gitlab/import_export/uploads_manager.rb
index 2992c81b731..63935fc6822 100644
--- a/lib/gitlab/import_export/uploads_manager.rb
+++ b/lib/gitlab/import_export/uploads_manager.rb
@@ -13,7 +13,16 @@ module Gitlab
def copy
copy_files(@from, uploads_export_path) if File.directory?(@from)
+ if File.file?(@from) && @relative_export_path == 'avatar'
+ copy_files(@from, File.join(uploads_export_path, @project.avatar.filename))
+ end
+
copy_from_object_storage
+
+ true
+ rescue => e
+ @shared.error(e)
+ false
end
private
@@ -49,9 +58,10 @@ module Gitlab
end
def download_and_copy(upload)
- mkdir_p(File.join(uploads_export_path, upload.secret))
+ secret = upload.try(:secret) || ''
+ upload_path = File.join(uploads_export_path, secret, upload.filename)
- upload_path = File.join(uploads_export_path, upload.secret, upload.filename)
+ mkdir_p(File.join(uploads_export_path, secret))
File.open(upload_path, 'w') do |file|
IO.copy_stream(URI.parse(upload.file.url).open, file)