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

users_mapper.rb « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74412bc38315d5946e4e88ae503cd89db5e88a40 (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
# frozen_string_literal: true

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

    SOURCE_USER_IDS_CACHE_KEY = 'bulk_imports/%{bulk_import}/%{entity}/source_user_ids'

    def initialize(context:)
      @context = context
      @cache_key = SOURCE_USER_IDS_CACHE_KEY % {
        bulk_import: @context.bulk_import.id,
        entity: @context.entity.id
      }
    end

    def map
      strong_memoize(:map) do
        map = hash_with_default

        cached_source_user_ids.each_pair do |source_id, destination_id|
          map[source_id.to_i] = destination_id.to_i
        end

        map
      end
    end

    def include?(source_user_id)
      map.has_key?(source_user_id)
    end

    def default_user_id
      @context.current_user.id
    end

    def cache_source_user_id(source_id, destination_id)
      ::Gitlab::Cache::Import::Caching.hash_add(@cache_key, source_id, destination_id)
    end

    private

    def hash_with_default
      Hash.new { default_user_id }
    end

    def cached_source_user_ids
      ::Gitlab::Cache::Import::Caching.values_from_hash(@cache_key)
    end
  end
end