2020-04-08 14:13:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
#
|
|
|
|
# Used by NotificationService to determine who should receive notification
|
|
|
|
#
|
|
|
|
module NotificationRecipients
|
|
|
|
module BuildService
|
|
|
|
def self.notifiable_users(users, *args)
|
|
|
|
users.compact.map { |u| NotificationRecipient.new(u, *args) }.select(&:notifiable?).map(&:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.notifiable?(user, *args)
|
|
|
|
NotificationRecipient.new(user, *args).notifiable?
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def self.build_recipients(target, current_user, **args)
|
|
|
|
::NotificationRecipients::Builder::Default.new(target, current_user, **args).notification_recipients
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def self.build_new_note_recipients(*args)
|
|
|
|
::NotificationRecipients::Builder::NewNote.new(*args).notification_recipients
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.build_merge_request_unmergeable_recipients(*args)
|
|
|
|
::NotificationRecipients::Builder::MergeRequestUnmergeable.new(*args).notification_recipients
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def self.build_project_maintainers_recipients(target, **args)
|
|
|
|
::NotificationRecipients::Builder::ProjectMaintainers.new(target, **args).notification_recipients
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def self.build_new_review_recipients(*args)
|
|
|
|
::NotificationRecipients::Builder::NewReview.new(*args).notification_recipients
|
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
def self.build_requested_review_recipients(*args)
|
|
|
|
::NotificationRecipients::Builder::RequestReview.new(*args).notification_recipients
|
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
def self.build_attention_requested_recipients(*args)
|
|
|
|
::NotificationRecipients::Builder::AttentionRequested.new(*args).notification_recipients
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|