debian-mirror-gitlab/lib/gitlab/import_export/shared.rb

63 lines
1.5 KiB
Ruby
Raw Normal View History

2016-06-22 15:30:34 +05:30
module Gitlab
module ImportExport
class Shared
2018-03-27 19:54:05 +05:30
attr_reader :errors, :project
2016-06-22 15:30:34 +05:30
2018-03-27 19:54:05 +05:30
def initialize(project)
@project = project
2016-06-22 15:30:34 +05:30
@errors = []
end
2018-03-27 19:54:05 +05:30
def active_export_count
Dir[File.join(archive_path, '*')].count { |name| File.directory?(name) }
end
2016-06-22 15:30:34 +05:30
def export_path
2018-03-17 18:26:18 +05:30
@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)
2016-06-22 15:30:34 +05:30
end
def error(error)
error_out(error.message, caller[0].dup)
2018-05-09 12:01:36 +05:30
add_error_message(error.message)
2018-03-17 18:26:18 +05:30
2016-06-22 15:30:34 +05:30
# Debug:
2018-03-17 18:26:18 +05:30
if error.backtrace
Rails.logger.error("Import/Export backtrace: #{error.backtrace.join("\n")}")
else
Rails.logger.error("No backtrace found")
end
2016-06-22 15:30:34 +05:30
end
2018-05-09 12:01:36 +05:30
def add_error_message(error_message)
@errors << error_message
end
def after_export_in_progress?
File.exist?(after_export_lock_file)
end
2016-06-22 15:30:34 +05:30
private
2018-03-17 18:26:18 +05:30
def relative_path
2018-03-27 19:54:05 +05:30
File.join(relative_archive_path, SecureRandom.hex)
2018-03-17 18:26:18 +05:30
end
def relative_archive_path
2018-03-27 19:54:05 +05:30
@project.disk_path
2018-03-17 18:26:18 +05:30
end
2016-06-22 15:30:34 +05:30
def error_out(message, caller)
Rails.logger.error("Import/Export error raised on #{caller}: #{message}")
end
2018-05-09 12:01:36 +05:30
def after_export_lock_file
AfterExportStrategies::BaseAfterExportStrategy.lock_file_path(project)
end
2016-06-22 15:30:34 +05:30
end
end
end