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

export_status.rb « bulk_imports « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbd7b189007af7cdef7bdf4e6ef91f540dd45d78 (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
53
54
55
56
57
58
59
# frozen_string_literal: true

module BulkImports
  class ExportStatus
    include Gitlab::Utils::StrongMemoize

    def initialize(pipeline_tracker, relation)
      @pipeline_tracker = pipeline_tracker
      @relation = relation
      @entity = @pipeline_tracker.entity
      @configuration = @entity.bulk_import.configuration
      @client = Clients::HTTP.new(url: @configuration.url, token: @configuration.access_token)
    end

    def started?
      !empty? && export_status['status'] == Export::STARTED
    end

    def failed?
      !empty? && export_status['status'] == Export::FAILED
    end

    def empty?
      export_status.nil?
    end

    def error
      export_status['error']
    end

    private

    attr_reader :client, :entity, :relation, :pipeline_tracker

    def export_status
      strong_memoize(:export_status) do
        fetch_export_status&.find { |item| item['relation'] == relation }
      rescue BulkImports::NetworkError => e
        raise BulkImports::RetryPipelineError.new(e.message, 2.seconds) if e.retriable?(pipeline_tracker)

        default_error_response(e.message)
      rescue StandardError => e
        default_error_response(e.message)
      end
    end

    def fetch_export_status
      client.get(status_endpoint).parsed_response
    end

    def status_endpoint
      File.join(entity.export_relations_url_path, 'status')
    end

    def default_error_response(message)
      { 'status' => Export::FAILED, 'error' => message }
    end
  end
end