debian-mirror-gitlab/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy.rb

93 lines
2.1 KiB
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
module Gitlab
module ImportExport
module AfterExportStrategies
class BaseAfterExportStrategy
2018-11-08 19:23:39 +05:30
extend Gitlab::ImportExport::CommandLineUtil
2018-05-09 12:01:36 +05:30
include ActiveModel::Validations
extend Forwardable
StrategyError = Class.new(StandardError)
AFTER_EXPORT_LOCK_FILE_NAME = '.after_export_action'.freeze
private
attr_reader :project, :current_user
public
def initialize(attributes = {})
@options = OpenStruct.new(attributes)
self.class.instance_eval do
def_delegators :@options, *attributes.keys
end
end
def execute(current_user, project)
@project = project
2018-11-08 19:23:39 +05:30
return unless @project.export_status == :finished
2018-05-09 12:01:36 +05:30
@current_user = current_user
if invalid?
log_validation_errors
return
end
create_or_update_after_export_lock
strategy_execute
true
rescue => e
project.import_export_shared.error(e)
false
ensure
delete_after_export_lock
end
def to_json(options = {})
@options.to_h.merge!(klass: self.class.name).to_json
end
def self.lock_file_path(project)
2018-11-20 20:47:30 +05:30
return unless project.export_path || export_file_exists?
2018-05-09 12:01:36 +05:30
2018-11-08 19:23:39 +05:30
lock_path = project.import_export_shared.archive_path
mkdir_p(lock_path)
File.join(lock_path, AFTER_EXPORT_LOCK_FILE_NAME)
2018-05-09 12:01:36 +05:30
end
protected
def strategy_execute
raise NotImplementedError
end
private
def create_or_update_after_export_lock
FileUtils.touch(self.class.lock_file_path(project))
end
def delete_after_export_lock
lock_file = self.class.lock_file_path(project)
FileUtils.rm(lock_file) if lock_file.present? && File.exist?(lock_file)
end
def log_validation_errors
errors.full_messages.each { |msg| project.import_export_shared.add_error_message(msg) }
end
2018-11-08 19:23:39 +05:30
2018-11-20 20:47:30 +05:30
def export_file_exists?
project.export_file_exists?
2018-11-08 19:23:39 +05:30
end
2018-05-09 12:01:36 +05:30
end
end
end
end