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

namespace_mirror.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce3faf3546bedcb1d146be9d2df3c9dc4de55328 (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 Ci
  # This model represents a record in a shadow table of the main database's namespaces table.
  # It allows us to navigate the namespace hierarchy on the ci database without resorting to a JOIN.
  class NamespaceMirror < ApplicationRecord
    belongs_to :namespace

    scope :contains_namespace, -> (id) do
      where('traversal_ids @> ARRAY[?]::int[]', id)
    end

    scope :contains_any_of_namespaces, -> (ids) do
      where('traversal_ids && ARRAY[?]::int[]', ids)
    end

    scope :by_namespace_id, -> (namespace_id) { where(namespace_id: namespace_id) }

    class << self
      def sync!(event)
        namespace = event.namespace
        traversal_ids = namespace.self_and_ancestor_ids(hierarchy_order: :desc)

        upsert({ namespace_id: event.namespace_id, traversal_ids: traversal_ids },
               unique_by: :namespace_id)

        # It won't be necessary once we remove `sync_traversal_ids`.
        # More info: https://gitlab.com/gitlab-org/gitlab/-/issues/347541
        sync_children_namespaces!(event.namespace_id, traversal_ids)
      end

      private

      def sync_children_namespaces!(namespace_id, traversal_ids)
        contains_namespace(namespace_id)
          .where.not(namespace_id: namespace_id)
          .update_all(
            "traversal_ids = ARRAY[#{sanitize_sql(traversal_ids.join(','))}]::int[] || traversal_ids[array_position(traversal_ids, #{sanitize_sql(namespace_id)}) + 1:]"
          )
      end
    end
  end
end