2013-03-26 03:48:13 -04:00
|
|
|
# NotificationService class
|
|
|
|
#
|
2013-07-29 06:46:00 -04:00
|
|
|
# Used for notifying users with emails about different events
|
2013-03-26 03:48:13 -04:00
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# NotificationService.new.new_issue(issue, current_user)
|
|
|
|
#
|
|
|
|
class NotificationService
|
|
|
|
# Always notify user about ssh key added
|
|
|
|
# only if ssh key is not deploy key
|
2013-03-27 14:28:00 -04:00
|
|
|
#
|
|
|
|
# This is security email so it will be sent
|
|
|
|
# even if user disabled notifications
|
2013-03-26 03:48:13 -04:00
|
|
|
def new_key(key)
|
|
|
|
if key.user
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.new_ssh_key_email(key.id)
|
2013-03-26 03:48:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-28 05:59:06 -04:00
|
|
|
# When create an issue we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * issue assignee if their notification level is not Disabled
|
2013-03-28 05:59:06 -04:00
|
|
|
# * project team members with notification level higher then Participating
|
|
|
|
#
|
|
|
|
def new_issue(issue, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
new_resource_email(issue, issue.project, 'new_issue_email')
|
2013-03-28 05:59:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# When we close an issue we should send next emails:
|
2013-03-26 03:48:13 -04:00
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * issue author if their notification level is not Disabled
|
|
|
|
# * issue assignee if their notification level is not Disabled
|
2013-03-26 03:48:13 -04:00
|
|
|
# * project team members with notification level higher then Participating
|
|
|
|
#
|
|
|
|
def close_issue(issue, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
close_resource_email(issue, issue.project, current_user, 'closed_issue_email')
|
2013-03-26 03:48:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# When we reassign an issue we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * issue old assignee if their notification level is not Disabled
|
|
|
|
# * issue new assignee if their notification level is not Disabled
|
2013-03-26 03:48:13 -04:00
|
|
|
#
|
|
|
|
def reassigned_issue(issue, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
reassign_resource_email(issue, issue.project, current_user, 'reassigned_issue_email')
|
2013-03-26 03:48:13 -04:00
|
|
|
end
|
|
|
|
|
2013-03-26 11:16:06 -04:00
|
|
|
|
|
|
|
# When create a merge request we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * mr assignee if their notification level is not Disabled
|
2013-03-26 11:16:06 -04:00
|
|
|
#
|
|
|
|
def new_merge_request(merge_request, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
new_resource_email(merge_request, merge_request.target_project, 'new_merge_request_email')
|
2013-03-26 11:16:06 -04:00
|
|
|
end
|
2013-03-26 11:23:28 -04:00
|
|
|
|
|
|
|
# When we reassign a merge_request we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * merge_request old assignee if their notification level is not Disabled
|
|
|
|
# * merge_request assignee if their notification level is not Disabled
|
2013-03-26 11:23:28 -04:00
|
|
|
#
|
|
|
|
def reassigned_merge_request(merge_request, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
reassign_resource_email(merge_request, merge_request.target_project, current_user, 'reassigned_merge_request_email')
|
2013-03-26 11:23:28 -04:00
|
|
|
end
|
2013-03-26 11:51:06 -04:00
|
|
|
|
2013-03-28 05:59:06 -04:00
|
|
|
# When we close a merge request we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * merge_request author if their notification level is not Disabled
|
|
|
|
# * merge_request assignee if their notification level is not Disabled
|
2013-03-28 05:59:06 -04:00
|
|
|
# * project team members with notification level higher then Participating
|
|
|
|
#
|
2013-03-28 06:14:53 -04:00
|
|
|
def close_mr(merge_request, current_user)
|
2013-04-25 10:15:33 -04:00
|
|
|
close_resource_email(merge_request, merge_request.target_project, current_user, 'closed_merge_request_email')
|
2013-03-28 05:59:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# When we merge a merge request we should send next emails:
|
|
|
|
#
|
2013-12-01 05:53:00 -05:00
|
|
|
# * merge_request author if their notification level is not Disabled
|
|
|
|
# * merge_request assignee if their notification level is not Disabled
|
2013-03-28 05:59:06 -04:00
|
|
|
# * project team members with notification level higher then Participating
|
|
|
|
#
|
|
|
|
def merge_mr(merge_request)
|
2013-07-16 17:14:03 -04:00
|
|
|
recipients = reject_muted_users([merge_request.author, merge_request.assignee], merge_request.target_project)
|
2013-04-25 10:15:33 -04:00
|
|
|
recipients = recipients.concat(project_watchers(merge_request.target_project)).uniq
|
2013-03-28 05:59:06 -04:00
|
|
|
|
|
|
|
recipients.each do |recipient|
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.merged_merge_request_email(recipient.id, merge_request.id)
|
2013-03-28 05:59:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-26 11:51:06 -04:00
|
|
|
# Notify new user with email after creation
|
|
|
|
def new_user(user)
|
2013-07-29 06:46:00 -04:00
|
|
|
# Don't email omniauth created users
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.new_user_email(user.id, user.password) unless user.extern_uid?
|
2013-03-26 11:51:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Notify users on new note in system
|
|
|
|
#
|
|
|
|
# TODO: split on methods and refactor
|
|
|
|
#
|
|
|
|
def new_note(note)
|
2013-03-28 08:39:59 -04:00
|
|
|
# ignore wall messages
|
|
|
|
return true unless note.noteable_type.present?
|
|
|
|
|
2013-08-04 09:22:06 -04:00
|
|
|
# ignore gitlab service messages
|
|
|
|
return true if note.note =~ /\A_Status changed to closed_/
|
|
|
|
|
2013-03-28 08:39:59 -04:00
|
|
|
opts = { noteable_type: note.noteable_type, project_id: note.project_id }
|
|
|
|
|
2013-07-22 14:45:56 -04:00
|
|
|
target = note.noteable
|
|
|
|
if target.respond_to?(:participants)
|
|
|
|
recipients = target.participants
|
|
|
|
else
|
|
|
|
recipients = note.mentioned_users
|
2013-03-28 08:39:59 -04:00
|
|
|
end
|
2013-09-13 09:38:37 -04:00
|
|
|
|
|
|
|
if note.commit_id.present?
|
|
|
|
opts.merge!(commit_id: note.commit_id)
|
|
|
|
recipients << note.commit_author
|
|
|
|
else
|
|
|
|
opts.merge!(noteable_id: note.noteable_id)
|
|
|
|
end
|
2013-03-28 08:39:59 -04:00
|
|
|
|
|
|
|
# Get users who left comment in thread
|
2013-03-28 08:51:25 -04:00
|
|
|
recipients = recipients.concat(User.where(id: Note.where(opts).pluck(:author_id)))
|
2013-03-28 08:39:59 -04:00
|
|
|
|
|
|
|
# Merge project watchers
|
|
|
|
recipients = recipients.concat(project_watchers(note.project)).compact.uniq
|
|
|
|
|
|
|
|
# Reject mutes users
|
2013-04-04 15:11:51 -04:00
|
|
|
recipients = reject_muted_users(recipients, note.project)
|
2013-03-28 08:39:59 -04:00
|
|
|
|
|
|
|
# Reject author
|
|
|
|
recipients.delete(note.author)
|
|
|
|
|
|
|
|
# build notify method like 'note_commit_email'
|
|
|
|
notify_method = "note_#{note.noteable_type.underscore}_email".to_sym
|
|
|
|
|
|
|
|
recipients.each do |recipient|
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.send(notify_method, recipient.id, note.id)
|
2013-03-26 11:51:06 -04:00
|
|
|
end
|
|
|
|
end
|
2013-03-26 13:00:54 -04:00
|
|
|
|
|
|
|
def new_team_member(users_project)
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.project_access_granted_email(users_project.id)
|
2013-03-26 13:00:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_team_member(users_project)
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.project_access_granted_email(users_project.id)
|
2013-03-26 13:00:54 -04:00
|
|
|
end
|
2013-03-27 14:28:00 -04:00
|
|
|
|
2013-09-12 12:00:32 -04:00
|
|
|
def new_group_member(users_group)
|
|
|
|
mailer.group_access_granted_email(users_group.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_group_member(users_group)
|
|
|
|
mailer.group_access_granted_email(users_group.id)
|
|
|
|
end
|
|
|
|
|
2014-01-15 07:03:52 -05:00
|
|
|
def project_was_moved(project)
|
|
|
|
recipients = project.team.members
|
|
|
|
recipients = reject_muted_users(recipients, project)
|
|
|
|
|
|
|
|
recipients.each do |recipient|
|
|
|
|
mailer.project_was_moved_email(project.id, recipient.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-27 14:28:00 -04:00
|
|
|
protected
|
|
|
|
|
2013-03-28 05:59:06 -04:00
|
|
|
# Get project users with WATCH notification level
|
|
|
|
def project_watchers(project)
|
2013-06-21 16:36:02 -04:00
|
|
|
project_watchers = []
|
|
|
|
member_methods = { project => :users_projects }
|
|
|
|
member_methods.merge!(project.group => :users_groups) if project.group
|
2013-04-04 15:11:51 -04:00
|
|
|
|
2013-06-21 16:36:02 -04:00
|
|
|
member_methods.each do |object, member_method|
|
2013-06-21 16:17:58 -04:00
|
|
|
# Get project notification settings since it has higher priority
|
2013-06-21 16:36:02 -04:00
|
|
|
user_ids = object.send(member_method).where(notification_level: Notification::N_WATCH).pluck(:user_id)
|
|
|
|
project_watchers += User.where(id: user_ids)
|
2013-06-21 16:17:58 -04:00
|
|
|
|
|
|
|
# next collect users who use global settings with watch state
|
2013-06-21 16:36:02 -04:00
|
|
|
user_ids = object.send(member_method).where(notification_level: Notification::N_GLOBAL).pluck(:user_id)
|
2013-06-21 16:17:58 -04:00
|
|
|
project_watchers += User.where(id: user_ids, notification_level: Notification::N_WATCH)
|
|
|
|
end
|
2013-04-04 15:11:51 -04:00
|
|
|
|
|
|
|
project_watchers.uniq
|
2013-03-28 05:59:06 -04:00
|
|
|
end
|
|
|
|
|
2013-03-27 14:28:00 -04:00
|
|
|
# Remove users with disabled notifications from array
|
|
|
|
# Also remove duplications and nil recipients
|
2013-04-04 15:11:51 -04:00
|
|
|
def reject_muted_users(users, project = nil)
|
|
|
|
users = users.compact.uniq
|
|
|
|
|
|
|
|
users.reject do |user|
|
|
|
|
next user.notification.disabled? unless project
|
|
|
|
|
2014-01-19 13:55:59 -05:00
|
|
|
tm = project.users_projects.find_by(user_id: user.id)
|
2013-04-04 15:11:51 -04:00
|
|
|
|
2013-06-21 16:21:55 -04:00
|
|
|
if !tm && project.group
|
2014-01-19 13:55:59 -05:00
|
|
|
tm = project.group.users_groups.find_by(user_id: user.id)
|
2013-06-21 16:21:55 -04:00
|
|
|
end
|
|
|
|
|
2013-04-04 15:11:51 -04:00
|
|
|
# reject users who globally disabled notification and has no membership
|
|
|
|
next user.notification.disabled? unless tm
|
|
|
|
|
|
|
|
# reject users who disabled notification in project
|
|
|
|
next true if tm.notification.disabled?
|
|
|
|
|
|
|
|
# reject users who have N_GLOBAL in project and disabled in global settings
|
|
|
|
tm.notification.global? && user.notification.disabled?
|
2013-03-27 14:28:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-25 10:15:33 -04:00
|
|
|
def new_resource_email(target, project, method)
|
2013-05-09 19:37:47 -04:00
|
|
|
if target.respond_to?(:participants)
|
|
|
|
recipients = target.participants
|
|
|
|
else
|
|
|
|
recipients = []
|
|
|
|
end
|
2013-04-25 10:15:33 -04:00
|
|
|
recipients = reject_muted_users(recipients, project)
|
|
|
|
recipients = recipients.concat(project_watchers(project)).uniq
|
2013-03-28 06:14:53 -04:00
|
|
|
recipients.delete(target.author)
|
|
|
|
|
|
|
|
recipients.each do |recipient|
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.send(method, recipient.id, target.id)
|
2013-03-28 06:14:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-25 10:15:33 -04:00
|
|
|
def close_resource_email(target, project, current_user, method)
|
|
|
|
recipients = reject_muted_users([target.author, target.assignee], project)
|
|
|
|
recipients = recipients.concat(project_watchers(project)).uniq
|
2013-03-28 06:14:53 -04:00
|
|
|
recipients.delete(current_user)
|
|
|
|
|
|
|
|
recipients.each do |recipient|
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.send(method, recipient.id, target.id, current_user.id)
|
2013-03-28 06:14:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-25 10:15:33 -04:00
|
|
|
def reassign_resource_email(target, project, current_user, method)
|
2013-03-27 14:28:00 -04:00
|
|
|
recipients = User.where(id: [target.assignee_id, target.assignee_id_was])
|
|
|
|
|
2013-03-28 05:59:06 -04:00
|
|
|
# Add watchers to email list
|
2013-04-25 10:15:33 -04:00
|
|
|
recipients = recipients.concat(project_watchers(project))
|
2013-03-28 05:59:06 -04:00
|
|
|
|
2013-03-27 14:28:00 -04:00
|
|
|
# reject users with disabled notifications
|
2013-04-25 10:15:33 -04:00
|
|
|
recipients = reject_muted_users(recipients, project)
|
2013-03-27 14:28:00 -04:00
|
|
|
|
|
|
|
# Reject me from recipients if I reassign an item
|
|
|
|
recipients.delete(current_user)
|
|
|
|
|
2013-03-27 16:33:59 -04:00
|
|
|
recipients.each do |recipient|
|
2013-04-11 16:54:20 -04:00
|
|
|
mailer.send(method, recipient.id, target.id, target.assignee_id_was)
|
2013-03-27 14:28:00 -04:00
|
|
|
end
|
|
|
|
end
|
2013-04-11 16:54:20 -04:00
|
|
|
|
|
|
|
def mailer
|
|
|
|
Notify.delay
|
|
|
|
end
|
2013-03-26 03:48:13 -04:00
|
|
|
end
|