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

pending_direct_upload.rb « object_storage « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a930e0e0afebfd4610fe23bf4acbc8a068142fa (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# frozen_string_literal: true

module ObjectStorage
  class PendingDirectUpload
    include ObjectStorage::FogHelpers

    KEY = 'pending_direct_uploads'
    MAX_UPLOAD_DURATION = 3.hours.freeze

    def self.prepare(location_identifier, object_storage_path)
      with_redis do |redis|
        # We need to store the location_identifier together with the timestamp to properly delete
        # this object if ever this upload gets stale. The location identifier will be used
        # by the clean up worker to properly generate the storage options through ObjectStorage::Config.for_location
        key = redis_key(location_identifier, object_storage_path)
        redis.hset(KEY, key, Time.current.utc.to_i)
        log_event(:prepared, key)
      end
    end

    def self.exists?(location_identifier, object_storage_path)
      with_redis do |redis|
        redis.hexists(KEY, redis_key(location_identifier, object_storage_path))
      end
    end

    def self.complete(location_identifier, object_storage_path)
      with_redis do |redis|
        key = redis_key(location_identifier, object_storage_path)
        redis.hdel(KEY, key)
        log_event(:completed, key)
      end
    end

    def self.redis_key(location_identifier, object_storage_path)
      [location_identifier, object_storage_path].join(':')
    end

    def self.count
      with_redis do |redis|
        redis.hlen(KEY)
      end
    end

    def self.each
      with_redis do |redis|
        redis.hscan_each(KEY) do |entry|
          redis_key, timestamp = entry
          storage_location_identifier, object_storage_path = redis_key.split(':')

          object = new(
            redis_key: redis_key,
            storage_location_identifier: storage_location_identifier,
            object_storage_path: object_storage_path,
            timestamp: timestamp
          )

          yield(object)
        end
      end
    end

    def self.with_redis(&block)
      Gitlab::Redis::SharedState.with(&block) # rubocop:disable CodeReuse/ActiveRecord
    end

    def self.log_event(event, redis_key)
      Gitlab::AppLogger.info(
        message: "Pending direct upload #{event}",
        redis_key: redis_key
      )
    end

    def initialize(redis_key:, storage_location_identifier:, object_storage_path:, timestamp:)
      @redis_key = redis_key
      @storage_location_identifier = storage_location_identifier.to_sym
      @object_storage_path = object_storage_path
      @timestamp = timestamp.to_i
    end

    def stale?
      timestamp < MAX_UPLOAD_DURATION.ago.utc.to_i
    end

    def delete
      delete_object(object_storage_path)

      self.class.with_redis do |redis|
        redis.hdel(self.class::KEY, redis_key)
        self.class.log_event(:deleted, redis_key)
      end
    end

    private

    attr_reader :redis_key, :storage_location_identifier, :object_storage_path, :timestamp
  end
end