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

update_existing_users_that_require_two_factor_auth.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d97765cd398b0d4608a66b674b8462caa9984b7d (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
99
100
101
102
103
104
105
106
107
108
109
110
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class UpdateExistingUsersThatRequireTwoFactorAuth # rubocop:disable Metrics/ClassLength
      def perform(start_id, stop_id)
        ActiveRecord::Base.connection.execute <<~SQL
          UPDATE
            users
          SET
            require_two_factor_authentication_from_group = FALSE
          WHERE
            users.id BETWEEN #{start_id}
            AND #{stop_id}
            AND users.require_two_factor_authentication_from_group = TRUE
            AND users.id NOT IN ( SELECT DISTINCT
                users_groups_query.user_id
              FROM (
                SELECT
                  users.id AS user_id,
                  members.source_id AS group_ids
                FROM
                  users
                LEFT JOIN members ON members.source_type = 'Namespace'
                  AND members.requested_at IS NULL
                  AND members.user_id = users.id
                  AND members.type = 'GroupMember'
              WHERE
                users.require_two_factor_authentication_from_group = TRUE
                AND users.id BETWEEN #{start_id}
                AND #{stop_id}) AS users_groups_query
              INNER JOIN LATERAL ( WITH RECURSIVE "base_and_ancestors" AS (
          (
                    SELECT
                      "namespaces"."type",
                      "namespaces"."id",
                      "namespaces"."parent_id",
                      "namespaces"."require_two_factor_authentication"
                    FROM
                      "namespaces"
                    WHERE
                      "namespaces"."type" = 'Group'
                      AND "namespaces"."id" = users_groups_query.group_ids)
                  UNION (
                    SELECT
                      "namespaces"."type",
                      "namespaces"."id",
                      "namespaces"."parent_id",
                      "namespaces"."require_two_factor_authentication"
                    FROM
                      "namespaces",
                      "base_and_ancestors"
                    WHERE
                      "namespaces"."type" = 'Group'
                      AND "namespaces"."id" = "base_and_ancestors"."parent_id")),
                  "base_and_descendants" AS (
          (
                      SELECT
                        "namespaces"."type",
                        "namespaces"."id",
                        "namespaces"."parent_id",
                        "namespaces"."require_two_factor_authentication"
                      FROM
                        "namespaces"
                      WHERE
                        "namespaces"."type" = 'Group'
                        AND "namespaces"."id" = users_groups_query.group_ids)
                    UNION (
                      SELECT
                        "namespaces"."type",
                        "namespaces"."id",
                        "namespaces"."parent_id",
                        "namespaces"."require_two_factor_authentication"
                      FROM
                        "namespaces",
                        "base_and_descendants"
                      WHERE
                        "namespaces"."type" = 'Group'
                        AND "namespaces"."parent_id" = "base_and_descendants"."id"))
                    SELECT
                      "namespaces".*
                    FROM ((
                        SELECT
                          "namespaces"."type",
                          "namespaces"."id",
                          "namespaces"."parent_id",
                          "namespaces"."require_two_factor_authentication"
                        FROM
                          "base_and_ancestors" AS "namespaces"
                        WHERE
                          "namespaces"."type" = 'Group')
                      UNION (
                        SELECT
                          "namespaces"."type",
                          "namespaces"."id",
                          "namespaces"."parent_id",
                          "namespaces"."require_two_factor_authentication"
                        FROM
                          "base_and_descendants" AS "namespaces"
                        WHERE
                          "namespaces"."type" = 'Group')) namespaces
                    WHERE
                      "namespaces"."type" = 'Group'
                      AND "namespaces"."require_two_factor_authentication" = TRUE) AS hierarchy_tree ON TRUE);
        SQL
      end
    end
  end
end