debian-mirror-gitlab/app/services/notification_service.rb

689 lines
22 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
# rubocop:disable GitlabSecurity/PublicSend
2014-09-02 18:07:02 +05:30
# NotificationService class
#
# Used for notifying users with emails about different events
#
# Ex.
# NotificationService.new.new_issue(issue, current_user)
#
2018-10-15 14:42:47 +05:30
# When calculating the recipients of a notification is expensive (for instance,
# in the new issue case), `#async` will make that calculation happen in Sidekiq
# instead:
#
# NotificationService.new.async.new_issue(issue, current_user)
#
2014-09-02 18:07:02 +05:30
class NotificationService
2018-10-15 14:42:47 +05:30
class Async
attr_reader :parent
delegate :respond_to_missing, to: :parent
def initialize(parent)
@parent = parent
end
def method_missing(meth, *args)
return super unless parent.respond_to?(meth)
MailScheduler::NotificationServiceWorker.perform_async(meth.to_s, *args)
end
end
def async
@async ||= Async.new(self)
end
2014-09-02 18:07:02 +05:30
# Always notify user about ssh key added
# only if ssh key is not deploy key
#
# This is security email so it will be sent
2018-03-17 18:26:18 +05:30
# even if user disabled notifications. However,
# it won't be sent to internal users like the
# ghost user or the EE support bot.
2014-09-02 18:07:02 +05:30
def new_key(key)
2018-03-17 18:26:18 +05:30
if key.user&.can?(:receive_notifications)
2015-12-23 02:04:40 +05:30
mailer.new_ssh_key_email(key.id).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2017-09-10 17:25:29 +05:30
# Always notify the user about gpg key added
#
2019-02-15 15:39:39 +05:30
# This is a security email so it will be sent even if the user disabled
2017-09-10 17:25:29 +05:30
# notifications
def new_gpg_key(gpg_key)
2018-03-17 18:26:18 +05:30
if gpg_key.user&.can?(:receive_notifications)
2017-09-10 17:25:29 +05:30
mailer.new_gpg_key_email(gpg_key.id).deliver_later
end
end
2020-01-01 13:55:28 +05:30
# Notify the owner of the personal access token, when it is about to expire
# And mark the token with about_to_expire_delivered
def access_token_about_to_expire(user)
return unless user.can?(:receive_notifications)
mailer.access_token_about_to_expire_email(user).deliver_later
end
2020-05-24 23:13:21 +05:30
# Notify a user when a previously unknown IP or device is used to
# sign in to their account
def unknown_sign_in(user, ip)
return unless user.can?(:receive_notifications)
mailer.unknown_sign_in_email(user, ip).deliver_later
end
2016-06-02 11:05:42 +05:30
# When create an issue we should send an email to:
2014-09-02 18:07:02 +05:30
#
# * issue assignee if their notification level is not Disabled
# * project team members with notification level higher then Participating
2016-06-02 11:05:42 +05:30
# * watchers of the issue's labels
2016-06-22 15:30:34 +05:30
# * users with custom level checked with "new issue"
2014-09-02 18:07:02 +05:30
#
def new_issue(issue, current_user)
2017-09-10 17:25:29 +05:30
new_resource_email(issue, :new_issue_email)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
# When issue text is updated, we should send an email to:
#
# * newly mentioned project team members with notification level higher than Participating
#
def new_mentions_in_issue(issue, new_mentioned_users, current_user)
new_mentions_in_resource_email(
issue,
new_mentioned_users,
current_user,
:new_mention_in_issue_email
)
end
2016-06-02 11:05:42 +05:30
# When we close an issue we should send an email to:
2014-09-02 18:07:02 +05:30
#
# * issue author if their notification level is not Disabled
# * issue assignee if their notification level is not Disabled
# * project team members with notification level higher then Participating
2016-06-22 15:30:34 +05:30
# * users with custom level checked with "close issue"
2014-09-02 18:07:02 +05:30
#
2019-09-04 21:01:54 +05:30
def close_issue(issue, current_user, closed_via: nil)
close_resource_email(issue, current_user, :closed_issue_email, closed_via: closed_via)
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
# When we reassign an issue we should send an email to:
2014-09-02 18:07:02 +05:30
#
2019-07-31 22:56:46 +05:30
# * issue old assignees if their notification level is not Disabled
# * issue new assignees if their notification level is not Disabled
2016-06-22 15:30:34 +05:30
# * users with custom level checked with "reassign issue"
2014-09-02 18:07:02 +05:30
#
2017-08-17 22:00:37 +05:30
def reassigned_issue(issue, current_user, previous_assignees = [])
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2017-08-17 22:00:37 +05:30
issue,
current_user,
action: "reassign",
2019-07-31 22:56:46 +05:30
previous_assignees: previous_assignees
2017-08-17 22:00:37 +05:30
)
previous_assignee_ids = previous_assignees.map(&:id)
recipients.each do |recipient|
mailer.send(
:reassigned_issue_email,
2018-03-17 18:26:18 +05:30
recipient.user.id,
2017-08-17 22:00:37 +05:30
issue.id,
previous_assignee_ids,
2018-03-17 18:26:18 +05:30
current_user.id,
recipient.reason
2017-08-17 22:00:37 +05:30
).deliver_later
end
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
# When we add labels to an issue we should send an email to:
#
# * watchers of the issue's labels
#
def relabeled_issue(issue, added_labels, current_user)
2017-09-10 17:25:29 +05:30
relabeled_resource_email(issue, added_labels, current_user, :relabeled_issue_email)
2016-06-02 11:05:42 +05:30
end
2014-09-02 18:07:02 +05:30
2018-12-13 13:39:08 +05:30
def removed_milestone_issue(issue, current_user)
removed_milestone_resource_email(issue, current_user, :removed_milestone_issue_email)
end
def changed_milestone_issue(issue, new_milestone, current_user)
changed_milestone_resource_email(issue, new_milestone, current_user, :changed_milestone_issue_email)
end
2016-06-02 11:05:42 +05:30
# When create a merge request we should send an email to:
2014-09-02 18:07:02 +05:30
#
2018-11-08 19:23:39 +05:30
# * mr author
2019-07-31 22:56:46 +05:30
# * mr assignees if their notification level is not Disabled
2016-06-02 11:05:42 +05:30
# * project team members with notification level higher then Participating
# * watchers of the mr's labels
2016-06-22 15:30:34 +05:30
# * users with custom level checked with "new merge request"
2014-09-02 18:07:02 +05:30
#
2018-11-08 19:23:39 +05:30
# In EE, approvers of the merge request are also included
2014-09-02 18:07:02 +05:30
def new_merge_request(merge_request, current_user)
2017-09-10 17:25:29 +05:30
new_resource_email(merge_request, :new_merge_request_email)
2014-09-02 18:07:02 +05:30
end
2018-05-09 12:01:36 +05:30
def push_to_merge_request(merge_request, current_user, new_commits: [], existing_commits: [])
new_commits = new_commits.map { |c| { short_id: c.short_id, title: c.title } }
existing_commits = existing_commits.map { |c| { short_id: c.short_id, title: c.title } }
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(merge_request, current_user, action: "push_to")
2018-05-09 12:01:36 +05:30
recipients.each do |recipient|
mailer.send(:push_to_merge_request_email, recipient.user.id, merge_request.id, current_user.id, recipient.reason, new_commits: new_commits, existing_commits: existing_commits).deliver_later
end
end
2018-11-08 19:23:39 +05:30
# When a merge request is found to be unmergeable, we should send an email to:
#
# * mr author
# * mr merge user if set
#
def merge_request_unmergeable(merge_request)
merge_request_unmergeable_email(merge_request)
end
2016-09-13 17:45:13 +05:30
# When merge request text is updated, we should send an email to:
#
# * newly mentioned project team members with notification level higher than Participating
#
def new_mentions_in_merge_request(merge_request, new_mentioned_users, current_user)
new_mentions_in_resource_email(
merge_request,
new_mentioned_users,
current_user,
:new_mention_in_merge_request_email
)
end
2016-06-02 11:05:42 +05:30
# When we reassign a merge_request we should send an email to:
2014-09-02 18:07:02 +05:30
#
2019-07-31 22:56:46 +05:30
# * merge_request old assignees if their notification level is not Disabled
# * merge_request new assignees if their notification level is not Disabled
2016-06-22 15:30:34 +05:30
# * users with custom level checked with "reassign merge request"
2014-09-02 18:07:02 +05:30
#
2019-07-31 22:56:46 +05:30
def reassigned_merge_request(merge_request, current_user, previous_assignees = [])
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2018-10-15 14:42:47 +05:30
merge_request,
current_user,
action: "reassign",
2019-07-31 22:56:46 +05:30
previous_assignees: previous_assignees
2018-10-15 14:42:47 +05:30
)
2019-07-31 22:56:46 +05:30
previous_assignee_ids = previous_assignees.map(&:id)
2018-10-15 14:42:47 +05:30
recipients.each do |recipient|
mailer.reassigned_merge_request_email(
recipient.user.id,
merge_request.id,
2019-07-31 22:56:46 +05:30
previous_assignee_ids,
2018-10-15 14:42:47 +05:30
current_user.id,
recipient.reason
).deliver_later
end
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
# When we add labels to a merge request we should send an email to:
#
# * watchers of the mr's labels
#
def relabeled_merge_request(merge_request, added_labels, current_user)
2017-09-10 17:25:29 +05:30
relabeled_resource_email(merge_request, added_labels, current_user, :relabeled_merge_request_email)
2016-06-02 11:05:42 +05:30
end
2018-12-13 13:39:08 +05:30
def removed_milestone_merge_request(merge_request, current_user)
removed_milestone_resource_email(merge_request, current_user, :removed_milestone_merge_request_email)
end
def changed_milestone_merge_request(merge_request, new_milestone, current_user)
changed_milestone_resource_email(merge_request, new_milestone, current_user, :changed_milestone_merge_request_email)
end
2014-09-02 18:07:02 +05:30
def close_mr(merge_request, current_user)
2017-09-10 17:25:29 +05:30
close_resource_email(merge_request, current_user, :closed_merge_request_email)
2014-09-02 18:07:02 +05:30
end
def reopen_issue(issue, current_user)
2017-09-10 17:25:29 +05:30
reopen_resource_email(issue, current_user, :issue_status_changed_email, 'reopened')
2014-09-02 18:07:02 +05:30
end
def merge_mr(merge_request, current_user)
2015-12-23 02:04:40 +05:30
close_resource_email(
merge_request,
current_user,
2016-11-03 12:29:30 +05:30
:merged_merge_request_email,
2019-09-04 21:01:54 +05:30
skip_current_user: !merge_request.auto_merge_enabled?
2015-12-23 02:04:40 +05:30
)
2014-09-02 18:07:02 +05:30
end
def reopen_mr(merge_request, current_user)
2015-12-23 02:04:40 +05:30
reopen_resource_email(
merge_request,
2016-06-02 11:05:42 +05:30
current_user,
2016-06-22 15:30:34 +05:30
:merge_request_status_email,
2015-12-23 02:04:40 +05:30
'reopened'
)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
def resolve_all_discussions(merge_request, current_user)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2017-08-17 22:00:37 +05:30
merge_request,
current_user,
action: "resolve_all_discussions")
2016-09-13 17:45:13 +05:30
recipients.each do |recipient|
2018-03-17 18:26:18 +05:30
mailer.resolved_all_discussions_email(recipient.user.id, merge_request.id, current_user.id, recipient.reason).deliver_later
2016-09-13 17:45:13 +05:30
end
end
2014-09-02 18:07:02 +05:30
# Notify new user with email after creation
def new_user(user, token = nil)
2018-03-17 18:26:18 +05:30
return true unless notifiable?(user, :mention)
2014-09-02 18:07:02 +05:30
# Don't email omniauth created users
2015-12-23 02:04:40 +05:30
mailer.new_user_email(user.id, token).deliver_later unless user.identities.any?
2014-09-02 18:07:02 +05:30
end
# Notify users on new note in system
def new_note(note)
return true unless note.noteable_type.present?
# ignore gitlab service messages
2020-04-08 14:13:33 +05:30
return true if note.system_note_with_references?
2014-09-02 18:07:02 +05:30
2018-11-08 19:23:39 +05:30
send_new_note_notifications(note)
end
def send_new_note_notifications(note)
2019-10-31 01:37:42 +05:30
notify_method = "note_#{note.noteable_ability_name}_email".to_sym
2016-09-13 17:45:13 +05:30
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_new_note_recipients(note)
2014-09-02 18:07:02 +05:30
recipients.each do |recipient|
2019-12-04 20:38:33 +05:30
mailer.send(notify_method, recipient.user.id, note.id, recipient.reason).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2019-12-21 20:55:43 +05:30
# Notify users when a new release is created
def send_new_release_notifications(release)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_new_release_recipients(release)
2019-12-21 20:55:43 +05:30
recipients.each do |recipient|
mailer.new_release_email(recipient.user.id, release, recipient.reason).deliver_later
end
end
2016-08-24 12:49:21 +05:30
# Members
def new_access_request(member)
2018-03-17 18:26:18 +05:30
return true unless member.notifiable?(:subscription)
2019-12-04 20:38:33 +05:30
source = member.source
recipients = source.access_request_approvers_to_be_notified
if fallback_to_group_access_request_approvers?(recipients, source)
recipients = source.group.access_request_approvers_to_be_notified
2018-03-27 19:54:05 +05:30
end
2019-12-04 20:38:33 +05:30
return true if recipients.empty?
2018-03-27 19:54:05 +05:30
recipients.each { |recipient| deliver_access_request_email(recipient, member) }
end
2016-08-24 12:49:21 +05:30
def decline_access_request(member)
2018-03-17 18:26:18 +05:30
return true unless member.notifiable?(:subscription)
2016-08-24 12:49:21 +05:30
mailer.member_access_denied_email(member.real_source_type, member.source_id, member.user_id).deliver_later
end
2016-08-24 12:49:21 +05:30
# Project invite
2015-04-26 12:48:37 +05:30
def invite_project_member(project_member, token)
2018-03-17 18:26:18 +05:30
return true unless project_member.notifiable?(:subscription)
mailer.member_invited_email(project_member.real_source_type, project_member.id, token).deliver_later
2015-04-26 12:48:37 +05:30
end
def accept_project_invite(project_member)
2018-03-17 18:26:18 +05:30
return true unless project_member.notifiable?(:subscription)
mailer.member_invite_accepted_email(project_member.real_source_type, project_member.id).deliver_later
2015-04-26 12:48:37 +05:30
end
def decline_project_invite(project_member)
2019-10-12 21:52:04 +05:30
# Must always send, regardless of project/namespace configuration since it's a
# response to the user's action.
mailer.member_invite_declined_email(
project_member.real_source_type,
2015-12-23 02:04:40 +05:30
project_member.project.id,
project_member.invite_email,
project_member.created_by_id
).deliver_later
2015-04-26 12:48:37 +05:30
end
def new_project_member(project_member)
2018-03-17 18:26:18 +05:30
return true unless project_member.notifiable?(:mention, skip_read_ability: true)
mailer.member_access_granted_email(project_member.real_source_type, project_member.id).deliver_later
2015-04-26 12:48:37 +05:30
end
def update_project_member(project_member)
2018-03-17 18:26:18 +05:30
return true unless project_member.notifiable?(:mention)
mailer.member_access_granted_email(project_member.real_source_type, project_member.id).deliver_later
end
2016-08-24 12:49:21 +05:30
# Group invite
2015-04-26 12:48:37 +05:30
def invite_group_member(group_member, token)
mailer.member_invited_email(group_member.real_source_type, group_member.id, token).deliver_later
2015-04-26 12:48:37 +05:30
end
def accept_group_invite(group_member)
2016-06-22 15:30:34 +05:30
mailer.member_invite_accepted_email(group_member.real_source_type, group_member.id).deliver_later
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def decline_group_invite(group_member)
2019-10-12 21:52:04 +05:30
# Must always send, regardless of project/namespace configuration since it's a
# response to the user's action.
2018-03-17 18:26:18 +05:30
mailer.member_invite_declined_email(
group_member.real_source_type,
2015-12-23 02:04:40 +05:30
group_member.group.id,
group_member.invite_email,
group_member.created_by_id
).deliver_later
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def new_group_member(group_member)
2018-03-17 18:26:18 +05:30
return true unless group_member.notifiable?(:mention)
mailer.member_access_granted_email(group_member.real_source_type, group_member.id).deliver_later
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def update_group_member(group_member)
2018-03-17 18:26:18 +05:30
return true unless group_member.notifiable?(:mention)
mailer.member_access_granted_email(group_member.real_source_type, group_member.id).deliver_later
2014-09-02 18:07:02 +05:30
end
2015-10-24 18:46:33 +05:30
def project_was_moved(project, old_path_with_namespace)
2019-02-02 18:00:53 +05:30
recipients = project.private? ? project.team.members_in_project_and_ancestors : project.team.members
recipients = notifiable_users(recipients, :mention, project: project)
2014-09-02 18:07:02 +05:30
recipients.each do |recipient|
2015-12-23 02:04:40 +05:30
mailer.project_was_moved_email(
project.id,
recipient.id,
old_path_with_namespace
).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
def issue_moved(issue, new_issue, current_user)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(issue, current_user, action: 'moved')
2016-06-02 11:05:42 +05:30
recipients.map do |recipient|
2018-03-17 18:26:18 +05:30
email = mailer.issue_moved_email(recipient.user, issue, new_issue, current_user, recipient.reason)
2016-06-02 11:05:42 +05:30
email.deliver_later
email
end
end
2016-06-22 15:30:34 +05:30
def project_exported(project, current_user)
2018-03-17 18:26:18 +05:30
return true unless notifiable?(current_user, :mention, project: project)
2016-06-22 15:30:34 +05:30
mailer.project_was_exported_email(current_user, project).deliver_later
end
def project_not_exported(project, current_user, errors)
2018-03-17 18:26:18 +05:30
return true unless notifiable?(current_user, :mention, project: project)
2016-06-22 15:30:34 +05:30
mailer.project_was_not_exported_email(current_user, project, errors).deliver_later
end
2020-04-08 14:13:33 +05:30
def pipeline_finished(pipeline, ref_status: nil, recipients: nil)
2019-10-12 21:52:04 +05:30
# Must always check project configuration since recipients could be a list of emails
# from the PipelinesEmailService integration.
return if pipeline.project.emails_disabled?
2020-04-08 14:13:33 +05:30
ref_status ||= pipeline.status
email_template = "pipeline_#{ref_status}_email"
2016-06-22 15:30:34 +05:30
2017-08-17 22:00:37 +05:30
return unless mailer.respond_to?(email_template)
2016-06-22 15:30:34 +05:30
2018-03-17 18:26:18 +05:30
recipients ||= notifiable_users(
2017-09-10 17:25:29 +05:30
[pipeline.user], :watch,
2020-04-08 14:13:33 +05:30
custom_action: :"#{ref_status}_pipeline",
2017-09-10 17:25:29 +05:30
target: pipeline
2019-10-12 21:52:04 +05:30
).map do |user|
user.notification_email_for(pipeline.project.group)
end
2016-06-22 15:30:34 +05:30
2017-08-17 22:00:37 +05:30
if recipients.any?
mailer.public_send(email_template, pipeline, recipients).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2018-11-20 20:47:30 +05:30
def autodevops_disabled(pipeline, recipients)
2019-10-12 21:52:04 +05:30
return if pipeline.project.emails_disabled?
2018-11-20 20:47:30 +05:30
recipients.each do |recipient|
mailer.autodevops_disabled_email(pipeline, recipient).deliver_later
end
end
2018-03-17 18:26:18 +05:30
def pages_domain_verification_succeeded(domain)
2019-02-15 15:39:39 +05:30
project_maintainers_recipients(domain, action: 'succeeded').each do |recipient|
mailer.pages_domain_verification_succeeded_email(domain, recipient.user).deliver_later
2018-03-17 18:26:18 +05:30
end
end
def pages_domain_verification_failed(domain)
2019-02-15 15:39:39 +05:30
project_maintainers_recipients(domain, action: 'failed').each do |recipient|
mailer.pages_domain_verification_failed_email(domain, recipient.user).deliver_later
2018-03-17 18:26:18 +05:30
end
end
def pages_domain_enabled(domain)
2019-02-15 15:39:39 +05:30
project_maintainers_recipients(domain, action: 'enabled').each do |recipient|
mailer.pages_domain_enabled_email(domain, recipient.user).deliver_later
2018-03-17 18:26:18 +05:30
end
end
def pages_domain_disabled(domain)
2019-02-15 15:39:39 +05:30
project_maintainers_recipients(domain, action: 'disabled').each do |recipient|
mailer.pages_domain_disabled_email(domain, recipient.user).deliver_later
2018-03-17 18:26:18 +05:30
end
end
2020-04-22 19:07:51 +05:30
def pages_domain_auto_ssl_failed(domain)
project_maintainers_recipients(domain, action: 'disabled').each do |recipient|
mailer.pages_domain_auto_ssl_failed_email(domain, recipient.user).deliver_later
end
end
2018-10-15 14:42:47 +05:30
def issue_due(issue)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2018-10-15 14:42:47 +05:30
issue,
issue.author,
action: 'due',
custom_action: :issue_due,
skip_current_user: false
)
recipients.each do |recipient|
mailer.send(:issue_due_email, recipient.user.id, issue.id, recipient.reason).deliver_later
end
end
2019-02-15 15:39:39 +05:30
def repository_cleanup_success(project, user)
2019-10-12 21:52:04 +05:30
return if project.emails_disabled?
2019-02-15 15:39:39 +05:30
mailer.send(:repository_cleanup_success_email, project, user).deliver_later
end
def repository_cleanup_failure(project, user, error)
2019-10-12 21:52:04 +05:30
return if project.emails_disabled?
2019-02-15 15:39:39 +05:30
mailer.send(:repository_cleanup_failure_email, project, user, error).deliver_later
end
def remote_mirror_update_failed(remote_mirror)
recipients = project_maintainers_recipients(remote_mirror, action: 'update_failed')
recipients.each do |recipient|
mailer.remote_mirror_update_failed_email(remote_mirror.id, recipient.user.id).deliver_later
end
end
2020-04-22 19:07:51 +05:30
def prometheus_alerts_fired(project, alerts)
return if project.emails_disabled?
owners_and_maintainers_without_invites(project).to_a.product(alerts).each do |recipient, alert|
mailer.prometheus_alert_fired_email(project.id, recipient.user.id, alert).deliver_later
end
end
2020-05-24 23:13:21 +05:30
def group_was_exported(group, current_user)
return true unless notifiable?(current_user, :mention, group: group)
mailer.group_was_exported_email(current_user, group).deliver_later
end
def group_was_not_exported(group, current_user, errors)
return true unless notifiable?(current_user, :mention, group: group)
mailer.group_was_not_exported_email(current_user, group, errors).deliver_later
end
2017-08-17 22:00:37 +05:30
protected
2015-12-23 02:04:40 +05:30
2017-09-10 17:25:29 +05:30
def new_resource_email(target, method)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(target, target.author, action: "new")
2014-09-02 18:07:02 +05:30
recipients.each do |recipient|
2018-03-17 18:26:18 +05:30
mailer.send(method, recipient.user.id, target.id, recipient.reason).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2017-09-10 17:25:29 +05:30
def new_mentions_in_resource_email(target, new_mentioned_users, current_user, method)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(target, current_user, action: "new")
2018-03-17 18:26:18 +05:30
recipients = recipients.select {|r| new_mentioned_users.include?(r.user) }
2016-09-13 17:45:13 +05:30
recipients.each do |recipient|
2018-03-17 18:26:18 +05:30
mailer.send(method, recipient.user.id, target.id, current_user.id, recipient.reason).deliver_later
2016-09-13 17:45:13 +05:30
end
end
2019-09-04 21:01:54 +05:30
def close_resource_email(target, current_user, method, skip_current_user: true, closed_via: nil)
2016-06-22 15:30:34 +05:30
action = method == :merged_merge_request_email ? "merge" : "close"
2016-11-03 12:29:30 +05:30
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2016-11-03 12:29:30 +05:30
target,
current_user,
action: action,
skip_current_user: skip_current_user
)
2014-09-02 18:07:02 +05:30
recipients.each do |recipient|
2019-09-04 21:01:54 +05:30
mailer.send(method, recipient.user.id, target.id, current_user.id, reason: recipient.reason, closed_via: closed_via).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2017-09-10 17:25:29 +05:30
def relabeled_resource_email(target, labels, current_user, method)
2018-03-17 18:26:18 +05:30
recipients = labels.flat_map { |l| l.subscribers(target.project) }.uniq
recipients = notifiable_users(
2017-09-10 17:25:29 +05:30
recipients, :subscription,
target: target,
acting_user: current_user
)
2016-06-02 11:05:42 +05:30
label_names = labels.map(&:name)
recipients.each do |recipient|
mailer.send(method, recipient.id, target.id, label_names, current_user.id).deliver_later
end
end
2018-12-13 13:39:08 +05:30
def removed_milestone_resource_email(target, current_user, method)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2018-12-13 13:39:08 +05:30
target,
current_user,
action: 'removed_milestone'
)
recipients.each do |recipient|
mailer.send(method, recipient.user.id, target.id, current_user.id).deliver_later
end
end
def changed_milestone_resource_email(target, milestone, current_user, method)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(
2018-12-13 13:39:08 +05:30
target,
current_user,
action: 'changed_milestone'
)
recipients.each do |recipient|
mailer.send(method, recipient.user.id, target.id, milestone, current_user.id).deliver_later
end
end
2017-09-10 17:25:29 +05:30
def reopen_resource_email(target, current_user, method, status)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_recipients(target, current_user, action: "reopen")
2014-09-02 18:07:02 +05:30
recipients.each do |recipient|
2018-03-17 18:26:18 +05:30
mailer.send(method, recipient.user.id, target.id, status, current_user.id, recipient.reason).deliver_later
2014-09-02 18:07:02 +05:30
end
end
2018-11-08 19:23:39 +05:30
def merge_request_unmergeable_email(merge_request)
2020-04-08 14:13:33 +05:30
recipients = NotificationRecipients::BuildService.build_merge_request_unmergeable_recipients(merge_request)
2018-11-08 19:23:39 +05:30
recipients.each do |recipient|
mailer.merge_request_unmergeable_email(recipient.user.id, merge_request.id).deliver_later
end
end
2014-09-02 18:07:02 +05:30
def mailer
2015-12-23 02:04:40 +05:30
Notify
2014-09-02 18:07:02 +05:30
end
2018-03-17 18:26:18 +05:30
private
2020-04-22 19:07:51 +05:30
def owners_and_maintainers_without_invites(project)
recipients = project.members.active_without_invites_and_requests.owners_and_maintainers
if recipients.empty? && project.group
recipients = project.group.members.active_without_invites_and_requests.owners_and_maintainers
end
recipients
end
2019-02-15 15:39:39 +05:30
def project_maintainers_recipients(target, action:)
2020-04-08 14:13:33 +05:30
NotificationRecipients::BuildService.build_project_maintainers_recipients(target, action: action)
2018-03-17 18:26:18 +05:30
end
def notifiable?(*args)
2020-04-08 14:13:33 +05:30
NotificationRecipients::BuildService.notifiable?(*args)
2018-03-17 18:26:18 +05:30
end
def notifiable_users(*args)
2020-04-08 14:13:33 +05:30
NotificationRecipients::BuildService.notifiable_users(*args)
2018-03-17 18:26:18 +05:30
end
2018-03-27 19:54:05 +05:30
def deliver_access_request_email(recipient, member)
2019-10-12 21:52:04 +05:30
mailer.member_access_requested_email(member.real_source_type, member.id, recipient.user.id).deliver_later
2018-03-27 19:54:05 +05:30
end
2019-12-04 20:38:33 +05:30
def fallback_to_group_access_request_approvers?(recipients, source)
2018-03-27 19:54:05 +05:30
return false if recipients.present?
2019-12-04 20:38:33 +05:30
source.respond_to?(:group) && source.group
2018-03-27 19:54:05 +05:30
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
NotificationService.prepend_if_ee('EE::NotificationService')