2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-04 04:59:33 -04:00
|
|
|
class ProjectExportWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2017-08-24 15:24:58 -04:00
|
|
|
include ExceptionBacktrace
|
2016-05-04 04:59:33 -04:00
|
|
|
|
2016-10-21 12:13:41 -04:00
|
|
|
sidekiq_options retry: 3
|
2016-05-04 04:59:33 -04:00
|
|
|
|
2018-03-30 11:45:59 -04:00
|
|
|
def perform(current_user_id, project_id, after_export_strategy = {}, params = {})
|
2016-05-04 04:59:33 -04:00
|
|
|
current_user = User.find(current_user_id)
|
|
|
|
project = Project.find(project_id)
|
2018-03-30 11:45:59 -04:00
|
|
|
after_export = build!(after_export_strategy)
|
2016-06-14 10:31:03 -04:00
|
|
|
|
2018-03-30 11:45:59 -04:00
|
|
|
::Projects::ImportExport::ExportService.new(project, current_user, params).execute(after_export)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build!(after_export_strategy)
|
|
|
|
strategy_klass = after_export_strategy&.delete('klass')
|
|
|
|
|
|
|
|
Gitlab::ImportExport::AfterExportStrategyBuilder.build!(strategy_klass, after_export_strategy)
|
2016-05-04 04:59:33 -04:00
|
|
|
end
|
|
|
|
end
|