# NotificationService class # # Used for notifying users with emails about different events # # 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 # # This is security email so it will be sent # even if user disabled notifications def new_key(key) if key.user mailer.new_ssh_key_email(key.id) end end # Always notify user about email added to profile def new_email(email) if email.user mailer.new_email_email(email.id) end end # When create an issue we should send next emails: # # * issue assignee if their notification level is not Disabled # * project team members with notification level higher then Participating # def new_issue(issue, current_user) new_resource_email(issue, issue.project, 'new_issue_email') end # When we close an issue we should send next emails: # # * 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 # def close_issue(issue, current_user) close_resource_email(issue, issue.project, current_user, 'closed_issue_email') end # When we reassign an issue we should send next emails: # # * issue old assignee if their notification level is not Disabled # * issue new assignee if their notification level is not Disabled # def reassigned_issue(issue, current_user) reassign_resource_email(issue, issue.project, current_user, 'reassigned_issue_email') end # When create a merge request we should send next emails: # # * mr assignee if their notification level is not Disabled # def new_merge_request(merge_request, current_user) new_resource_email(merge_request, merge_request.target_project, 'new_merge_request_email') end # When we reassign a merge_request we should send next emails: # # * merge_request old assignee if their notification level is not Disabled # * merge_request assignee if their notification level is not Disabled # def reassigned_merge_request(merge_request, current_user) reassign_resource_email(merge_request, merge_request.target_project, current_user, 'reassigned_merge_request_email') end # When we close a merge request we should send next emails: # # * merge_request author if their notification level is not Disabled # * merge_request assignee if their notification level is not Disabled # * project team members with notification level higher then Participating # def close_mr(merge_request, current_user) close_resource_email(merge_request, merge_request.target_project, current_user, 'closed_merge_request_email') end # When we merge a merge request we should send next emails: # # * merge_request author if their notification level is not Disabled # * merge_request assignee if their notification level is not Disabled # * project team members with notification level higher then Participating # def merge_mr(merge_request, current_user) recipients = reject_muted_users([merge_request.author, merge_request.assignee], merge_request.target_project) recipients = recipients.concat(project_watchers(merge_request.target_project)).uniq recipients.each do |recipient| mailer.merged_merge_request_email(recipient.id, merge_request.id, current_user.id) end end # Notify new user with email after creation def new_user(user) # Don't email omniauth created users mailer.new_user_email(user.id, user.password) unless user.extern_uid? end # Notify users on new note in system # # TODO: split on methods and refactor # def new_note(note) # ignore wall messages return true unless note.noteable_type.present? # ignore gitlab service messages return true if note.note =~ /\A_Status changed to closed_/ return true if note.note =~ /\A_mentioned in / && note.system == true opts = { noteable_type: note.noteable_type, project_id: note.project_id } target = note.noteable if target.respond_to?(:participants) recipients = target.participants else recipients = note.mentioned_users end 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 # Get users who left comment in thread recipients = recipients.concat(User.where(id: Note.where(opts).pluck(:author_id))) # Merge project watchers recipients = recipients.concat(project_watchers(note.project)).compact.uniq # Reject mutes users recipients = reject_muted_users(recipients, note.project) # 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| mailer.send(notify_method, recipient.id, note.id) end end def new_team_member(users_project) mailer.project_access_granted_email(users_project.id) end def update_team_member(users_project) mailer.project_access_granted_email(users_project.id) end 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 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 protected # Get project users with WATCH notification level def project_watchers(project) # Gather all user that have WATCH notification setting for project and group project_uids, group_uids = project_and_group_watchers(project, Notification::N_WATCH) # Gather all user that have WATCH as their GLOBAL setting global_setting_project, global_setting_group = project_and_group_watchers(project, Notification::N_GLOBAL) global_uids = [global_setting_project, global_setting_group].flatten.uniq global_watchers_ids = User.where(id: global_uids, notification_level: Notification::N_WATCH).pluck(:id) # Select watchers based on what the project setting is project_watchers, user_ids = select_watchers(global_watchers_ids, global_setting_project, project_uids) # Select watchers based on what the group setting is group_watchers, ids = select_watchers(user_ids, global_setting_group, group_uids) project_watchers.concat(group_watchers.concat(ids)).uniq watchers = User.where(id: project_watchers) watchers.to_a end def project_notification_list(project, notification_level) project.users_projects.where(notification_level: notification_level).pluck(:user_id) end def group_notification_list(project, notification_level) if project.group project.group.users_groups.where(notification_level: notification_level).pluck(:user_id) else [] end end def select_watchers(user_ids, global_setting, setting) watchers = [] user_ids.each do |i| if setting.include?(i) watchers << i elsif global_setting.include?(i) watchers << i else user_ids.delete(i) end end [watchers, user_ids] end def project_and_group_watchers(project, notification_level) [ project_notification_list(project, notification_level), group_notification_list(project, notification_level) ] end # Remove users with disabled notifications from array # Also remove duplications and nil recipients def reject_muted_users(users, project = nil) users = users.compact.uniq users.reject do |user| next user.notification.disabled? unless project tm = project.users_projects.find_by(user_id: user.id) if !tm && project.group tm = project.group.users_groups.find_by(user_id: user.id) end # 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? end end def new_resource_email(target, project, method) if target.respond_to?(:participants) recipients = target.participants else recipients = [] end recipients = reject_muted_users(recipients, project) recipients = recipients.concat(project_watchers(project)).uniq recipients.delete(target.author) recipients.each do |recipient| mailer.send(method, recipient.id, target.id) end end 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 recipients.delete(current_user) recipients.each do |recipient| mailer.send(method, recipient.id, target.id, current_user.id) end end def reassign_resource_email(target, project, current_user, method) recipients = User.where(id: [target.assignee_id, target.assignee_id_was]) # Add watchers to email list recipients = recipients.concat(project_watchers(project)) # reject users with disabled notifications recipients = reject_muted_users(recipients, project) # Reject me from recipients if I reassign an item recipients.delete(current_user) recipients.each do |recipient| mailer.send(method, recipient.id, target.id, target.assignee_id_was, current_user.id) end end def mailer Notify.delay end end