2020-04-01 05:07:45 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module JiraImport
|
|
|
|
class LabelsImporter < BaseImporter
|
|
|
|
attr_reader :job_waiter
|
|
|
|
|
|
|
|
def initialize(project)
|
|
|
|
super
|
|
|
|
@job_waiter = JobWaiter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2020-04-14 14:09:54 -04:00
|
|
|
cache_import_label(project)
|
2020-04-01 05:07:45 -04:00
|
|
|
import_jira_labels
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-04-14 14:09:54 -04:00
|
|
|
def cache_import_label(project)
|
|
|
|
label = project.jira_imports.by_jira_project_key(jira_project_key).last.label
|
2020-04-21 11:21:10 -04:00
|
|
|
raise Projects::ImportService::Error, _('Failed to find import label for Jira import.') unless label
|
2020-04-01 05:07:45 -04:00
|
|
|
|
|
|
|
JiraImport.cache_import_label_id(project.id, label.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_jira_labels
|
|
|
|
# todo: import jira labels, see https://gitlab.com/gitlab-org/gitlab/-/issues/212651
|
|
|
|
job_waiter
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|