summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/refresh_import_jid_worker.rb
blob: 65473026b4c32f76358e8e37babb30aa50770a97 (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
# frozen_string_literal: true

module Gitlab
  module GithubImport
    class RefreshImportJidWorker
      include ApplicationWorker
      include GithubImport::Queue

      # The interval to schedule new instances of this job at.
      INTERVAL = 1.minute.to_i

      def self.perform_in_the_future(*args)
        perform_in(INTERVAL, *args)
      end

      # project_id - The ID of the project that is being imported.
      # check_job_id - The ID of the job for which to check the status.
      def perform(project_id, check_job_id)
        return unless (project = find_project(project_id))

        if SidekiqStatus.running?(check_job_id)
          # As long as the repository is being cloned we want to keep refreshing
          # the import JID status.
          project.refresh_import_jid_expiration
          self.class.perform_in_the_future(project_id, check_job_id)
        end

        # If the job is no longer running there's nothing else we need to do. If
        # the clone job completed successfully it will have scheduled the next
        # stage, if it died there's nothing we can do anyway.
      end

      # rubocop: disable CodeReuse/ActiveRecord
      def find_project(id)
        # TODO: Only select the JID
        # This is due to the fact that the JID could be present in either the project record or
        # its associated import_state record
        Project.import_started.find_by(id: id)
      end
      # rubocop: enable CodeReuse/ActiveRecord
    end
  end
end