debian-mirror-gitlab/app/models/notification_recipient.rb

152 lines
4.1 KiB
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
class NotificationRecipient
2018-03-17 18:26:18 +05:30
attr_reader :user, :type, :reason
def initialize(user, type, **opts)
unless NotificationSetting.levels.key?(type) || type == :subscription
raise ArgumentError, "invalid type: #{type.inspect}"
end
@custom_action = opts[:custom_action]
@acting_user = opts[:acting_user]
@target = opts[:target]
@project = opts[:project] || default_project
@group = opts[:group] || @project&.group
2017-09-10 17:25:29 +05:30
@user = user
@type = type
2018-03-17 18:26:18 +05:30
@reason = opts[:reason]
@skip_read_ability = opts[:skip_read_ability]
2017-09-10 17:25:29 +05:30
end
def notification_setting
@notification_setting ||= find_notification_setting
end
def notification_level
@notification_level ||= notification_setting&.level&.to_sym
end
def notifiable?
return false unless has_access?
return false if own_activity?
# even users with :disabled notifications receive manual subscriptions
return !unsubscribed? if @type == :subscription
return false unless suitable_notification_level?
# check this last because it's expensive
# nobody should receive notifications if they've specifically unsubscribed
2018-05-09 12:01:36 +05:30
# except if they were mentioned.
return false if @type != :mention && unsubscribed?
2017-09-10 17:25:29 +05:30
true
end
def suitable_notification_level?
case notification_level
when :disabled, nil
false
when :custom
custom_enabled? || %i[participating mention].include?(@type)
when :watch, :participating
2018-05-09 12:01:36 +05:30
!action_excluded?
2017-09-10 17:25:29 +05:30
when :mention
@type == :mention
else
false
end
end
def custom_enabled?
@custom_action && notification_setting&.event_enabled?(@custom_action)
end
def unsubscribed?
return false unless @target
return false unless @target.respond_to?(:subscriptions)
subscription = @target.subscriptions.find_by_user_id(@user.id)
subscription && !subscription.subscribed
end
def own_activity?
return false unless @acting_user
2018-03-17 18:26:18 +05:30
if user == @acting_user
# if activity was generated by the same user, change reason to :own_activity
@reason = NotificationReason::OWN_ACTIVITY
# If the user wants to be notified, we must return `false`
!@acting_user.notified_of_own_activity?
else
false
end
2017-09-10 17:25:29 +05:30
end
def has_access?
DeclarativePolicy.subject_scope do
return false unless user.can?(:receive_notifications)
2018-03-17 18:26:18 +05:30
return true if @skip_read_ability
2018-03-27 19:54:05 +05:30
return false if @target && !user.can?(:read_cross_project)
2017-09-10 17:25:29 +05:30
return false if @project && !user.can?(:read_project, @project)
return true unless read_ability
return true unless DeclarativePolicy.has_policy?(@target)
user.can?(read_ability, @target)
end
end
2018-05-09 12:01:36 +05:30
def action_excluded?
excluded_watcher_action? || excluded_participating_action?
end
2017-09-10 17:25:29 +05:30
def excluded_watcher_action?
2018-05-09 12:01:36 +05:30
return false unless @custom_action && notification_level == :watch
2017-09-10 17:25:29 +05:30
NotificationSetting::EXCLUDED_WATCHER_EVENTS.include?(@custom_action)
2018-05-09 12:01:36 +05:30
end
def excluded_participating_action?
return false unless @custom_action && notification_level == :participating
NotificationSetting::EXCLUDED_PARTICIPATING_EVENTS.include?(@custom_action)
2017-09-10 17:25:29 +05:30
end
private
def read_ability
2018-03-17 18:26:18 +05:30
return nil if @skip_read_ability
2017-09-10 17:25:29 +05:30
return @read_ability if instance_variable_defined?(:@read_ability)
@read_ability =
case @target
when Issuable
:"read_#{@target.to_ability_name}"
when Ci::Pipeline
:read_build # We have build trace in pipeline emails
when ActiveRecord::Base
:"read_#{@target.class.model_name.name.underscore}"
else
nil
end
end
2018-03-17 18:26:18 +05:30
def default_project
return nil if @target.nil?
return @target if @target.is_a?(Project)
return @target.project if @target.respond_to?(:project)
end
2017-09-10 17:25:29 +05:30
def find_notification_setting
project_setting = @project && user.notification_settings_for(@project)
return project_setting unless project_setting.nil? || project_setting.global?
2018-03-17 18:26:18 +05:30
group_setting = @group && user.notification_settings_for(@group)
2017-09-10 17:25:29 +05:30
return group_setting unless group_setting.nil? || group_setting.global?
user.global_notification_setting
end
end