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

module Gitlab
  module GithubImport
    module Stage
      class ImportBaseDataWorker
        include ApplicationWorker
        include GithubImport::Queue
        include StageMethods

        # These importers are fast enough that we can just run them in the same
        # thread.
        IMPORTERS = [
          Importer::LabelsImporter,
          Importer::MilestonesImporter,
          Importer::ReleasesImporter
        ].freeze

        # client - An instance of Gitlab::GithubImport::Client.
        # project - An instance of Project.
        def import(client, project)
          IMPORTERS.each do |klass|
            klass.new(project, client).execute
          end

          project.refresh_import_jid_expiration

          ImportPullRequestsWorker.perform_async(project.id)
        end
      end
    end
  end
end