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

import_collaborators_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: 037b529b8662d00f008974dca17174ffb81138ae (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
50
51
52
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Stage
      class ImportCollaboratorsWorker # 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)
          return skip_to_next_stage(project) if import_settings(project).disabled?(:collaborators_import) ||
            !has_push_access?(client, project.import_source)

          info(project.id, message: 'starting importer', importer: 'Importer::CollaboratorsImporter')

          waiter = Importer::CollaboratorsImporter.new(project, client).execute

          move_to_next_stage(project, { waiter.key => waiter.jobs_remaining })
        end

        private

        def has_push_access?(client, repo)
          client.repository(repo).dig(:permissions, :push)
        end

        def skip_to_next_stage(project)
          Gitlab::GithubImport::Logger.warn(
            log_attributes(
              project.id,
              message: 'no push access rights to fetch collaborators',
              importer: 'Importer::CollaboratorsImporter'
            )
          )
          move_to_next_stage(project, {})
        end

        def move_to_next_stage(project, waiters = {})
          AdvanceStageWorker.perform_async(
            project.id, waiters.deep_stringify_keys, 'pull_requests_merged_by'
          )
        end
      end
    end
  end
end