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

module Gitlab
  module GithubImport
    module Stage
      class ImportNotesWorker
        include Sidekiq::Worker
        include GithubImport::Queue
        include StageMethods

        # client - An instance of Gitlab::GithubImport::Client.
        # project - An instance of Project.
        def import(client, project)
          waiter = Importer::NotesImporter
            .new(project, client)
            .execute

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