Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_issues_and_diff_notes_worker.rb « stage « github_import « gitlab « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 592b789cc946dfb25cf4dce35281a923f7cce37a (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
# frozen_string_literal: true

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

        data_consistency :always

        include GithubImport::Queue
        include StageMethods

        # client - An instance of Gitlab::GithubImport::Client.
        # project - An instance of Project.
        def import(client, project)
          waiters = importers(project).each_with_object({}) do |klass, hash|
            info(project.id, message: "starting importer", importer: klass.name)
            waiter = klass.new(project, client).execute
            hash[waiter.key] = waiter.jobs_remaining
          end

          AdvanceStageWorker.perform_async(project.id, waiters, :issue_events)
        end

        # The importers to run in this stage. Issues can't be imported earlier
        # on as we also use these to enrich pull requests with assigned labels.
        def importers(project)
          [
            Importer::IssuesImporter,
            diff_notes_importer(project)
          ]
        end

        private

        def diff_notes_importer(project)
          if import_settings(project).enabled?(:single_endpoint_notes_import)
            Importer::SingleEndpointDiffNotesImporter
          else
            Importer::DiffNotesImporter
          end
        end
      end
    end
  end
end