summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/stage/import_pull_requests_reviews_worker.rb
blob: 0809d0b7c29a1f7cf5de7a818939b5abdbf9e394 (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
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Stage
      class ImportPullRequestsReviewsWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        include GithubImport::Queue
        include StageMethods

        # client - An instance of Gitlab::GithubImport::Client.
        # project - An instance of Project.
        def import(client, project)
          waiter =
            if Feature.enabled?(:github_import_pull_request_reviews, project, default_enabled: true)
              waiter = Importer::PullRequestsReviewsImporter
                .new(project, client)
                .execute

              project.import_state.refresh_jid_expiration

              waiter
            else
              JobWaiter.new
            end

          AdvanceStageWorker.perform_async(
            project.id,
            { waiter.key => waiter.jobs_remaining },
            :issues_and_diff_notes
          )
        end
      end
    end
  end
end