summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/stage/import_issue_events_worker.rb
blob: 0ec0a1b58d23fea7a3dab9c8131eb55cfdbb199f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Stage
      class ImportIssueEventsWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker

        data_consistency :always

        sidekiq_options retry: 3
        include GithubImport::Queue
        include StageMethods

        # client - An instance of Gitlab::GithubImport::Client.
        # project - An instance of Project.
        def import(client, project)
          importer = importer_class(project)
          return skip_to_next_stage(project) if importer.nil?

          info(project.id, message: "starting importer", importer: importer.name)
          waiter = importer.new(project, client).execute
          move_to_next_stage(project, { waiter.key => waiter.jobs_remaining })
        end

        private

        def importer_class(project)
          if Feature.enabled?(:github_importer_single_endpoint_issue_events_import, project.group, type: :ops)
            ::Gitlab::GithubImport::Importer::SingleEndpointIssueEventsImporter
          elsif Feature.enabled?(:github_importer_issue_events_import, project.group, type: :ops)
            ::Gitlab::GithubImport::Importer::IssueEventsImporter
          else
            nil
          end
        end

        def skip_to_next_stage(project)
          info(project.id, message: "skipping importer", importer: "IssueEventsImporter")
          move_to_next_stage(project)
        end

        def move_to_next_stage(project, waiters = {})
          AdvanceStageWorker.perform_async(project.id, waiters, :notes)
        end
      end
    end
  end
end