46 lines
1.1 KiB
Ruby
46 lines
1.1 KiB
Ruby
module Gitlab
|
|
module ImportExport
|
|
class Shared
|
|
attr_reader :errors, :opts
|
|
|
|
def initialize(opts)
|
|
@opts = opts
|
|
@errors = []
|
|
end
|
|
|
|
def export_path
|
|
@export_path ||= Gitlab::ImportExport.export_path(relative_path: relative_path)
|
|
end
|
|
|
|
def archive_path
|
|
@archive_path ||= Gitlab::ImportExport.export_path(relative_path: relative_archive_path)
|
|
end
|
|
|
|
def error(error)
|
|
error_out(error.message, caller[0].dup)
|
|
@errors << error.message
|
|
|
|
# Debug:
|
|
if error.backtrace
|
|
Rails.logger.error("Import/Export backtrace: #{error.backtrace.join("\n")}")
|
|
else
|
|
Rails.logger.error("No backtrace found")
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def relative_path
|
|
File.join(opts[:relative_path], SecureRandom.hex)
|
|
end
|
|
|
|
def relative_archive_path
|
|
File.join(opts[:relative_path], '..')
|
|
end
|
|
|
|
def error_out(message, caller)
|
|
Rails.logger.error("Import/Export error raised on #{caller}: #{message}")
|
|
end
|
|
end
|
|
end
|
|
end
|