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

user_group_notification_settings_finder.rb « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ad9d1d7bf4ec50e69a9c8714bca9735d8dddb60 (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
# frozen_string_literal: true

class UserGroupNotificationSettingsFinder
  def initialize(user, groups)
    @user = user
    @groups = groups
  end

  def execute
    # rubocop: disable CodeReuse/ActiveRecord
    groups_with_ancestors = Gitlab::ObjectHierarchy.new(Group.where(id: groups.select(:id))).base_and_ancestors
    # rubocop: enable CodeReuse/ActiveRecord

    @loaded_groups_with_ancestors = groups_with_ancestors.index_by(&:id)
    @loaded_notification_settings = user.notification_settings_for_groups(groups_with_ancestors).preload_source_route.index_by(&:source_id)

    preload_emails_disabled

    groups.map do |group|
      find_notification_setting_for(group)
    end
  end

  private

  attr_reader :user, :groups, :loaded_groups_with_ancestors, :loaded_notification_settings

  def find_notification_setting_for(group)
    return loaded_notification_settings[group.id] if loaded_notification_settings[group.id]
    return user.notification_settings.build(source: group) if group.parent_id.nil?

    parent_setting = loaded_notification_settings[group.parent_id]

    return user.notification_settings.build(source: group) unless parent_setting

    if should_copy?(parent_setting)
      user.notification_settings.build(source: group) do |ns|
        ns.assign_attributes(parent_setting.slice(*NotificationSetting.allowed_fields))
      end
    else
      find_notification_setting_for(loaded_groups_with_ancestors[group.parent_id])
    end
  end

  def should_copy?(parent_setting)
    return false unless parent_setting

    parent_setting.level != NotificationSetting.levels[:global] || parent_setting.notification_email.present?
  end

  # This method preloads the `emails_disabled` strong memoized method for the given groups.
  #
  # For each group, look up the ancestor hierarchy and look for any group where emails_disabled is true.
  # The lookup is implemented with an EXISTS subquery, so we can look up the ancestor chain for each group individually.
  # The query will return groups where at least one ancestor has the `emails_disabled` set to true.
  #
  # After the query, we set the instance variable.
  def preload_emails_disabled
    group_ids_with_disabled_email = Group.ids_with_disabled_email(groups.to_a)

    groups.each do |group|
      group.emails_disabled_memoized = group_ids_with_disabled_email.include?(group.id) if group.parent_id
    end
  end
end