notification_service.rb 8.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
# NotificationService class
#
# Used for notifing 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
11 12 13
  #
  # This is security email so it will be sent
  # even if user disabled notifications
14 15
  def new_key(key)
    if key.user
D
Dmitriy Zaporozhets 已提交
16
      mailer.new_ssh_key_email(key.id)
17 18 19
    end
  end

20 21 22 23 24 25
  # When create an issue we should send next emails:
  #
  #  * issue assignee if his notification level is not Disabled
  #  * project team members with notification level higher then Participating
  #
  def new_issue(issue, current_user)
I
Izaak Alpert 已提交
26
    new_resource_email(issue, issue.project, 'new_issue_email')
27 28 29
  end

  # When we close an issue we should send next emails:
30 31 32 33 34 35
  #
  #  * issue author if his notification level is not Disabled
  #  * issue assignee if his notification level is not Disabled
  #  * project team members with notification level higher then Participating
  #
  def close_issue(issue, current_user)
I
Izaak Alpert 已提交
36
    close_resource_email(issue, issue.project, current_user, 'closed_issue_email')
37 38 39 40
  end

  # When we reassign an issue we should send next emails:
  #
41 42
  #  * issue old assignee if his notification level is not Disabled
  #  * issue new assignee if his notification level is not Disabled
43 44
  #
  def reassigned_issue(issue, current_user)
I
Izaak Alpert 已提交
45
    reassign_resource_email(issue, issue.project, current_user, 'reassigned_issue_email')
46 47
  end

48 49 50 51 52 53

  # When create a merge request we should send next emails:
  #
  #  * mr assignee if his notification level is not Disabled
  #
  def new_merge_request(merge_request, current_user)
I
Izaak Alpert 已提交
54
    new_resource_email(merge_request, merge_request.target_project, 'new_merge_request_email')
55
  end
56 57 58 59 60 61 62

  # When we reassign a merge_request we should send next emails:
  #
  #  * merge_request old assignee if his notification level is not Disabled
  #  * merge_request assignee if his notification level is not Disabled
  #
  def reassigned_merge_request(merge_request, current_user)
I
Izaak Alpert 已提交
63
    reassign_resource_email(merge_request, merge_request.target_project, current_user, 'reassigned_merge_request_email')
64
  end
65

66 67 68 69 70 71
  # When we close a merge request we should send next emails:
  #
  #  * merge_request author if his notification level is not Disabled
  #  * merge_request assignee if his notification level is not Disabled
  #  * project team members with notification level higher then Participating
  #
72
  def close_mr(merge_request, current_user)
I
Izaak Alpert 已提交
73
    close_resource_email(merge_request, merge_request.target_project, current_user, 'closed_merge_request_email')
74 75 76 77 78 79 80 81 82
  end

  # When we merge a merge request we should send next emails:
  #
  #  * merge_request author if his notification level is not Disabled
  #  * merge_request assignee if his notification level is not Disabled
  #  * project team members with notification level higher then Participating
  #
  def merge_mr(merge_request)
I
Izaak Alpert 已提交
83 84 85 86
    recipients = reject_muted_users([merge_request.author, merge_request.assignee], merge_request.source_project)
    recipients = recipients.concat(reject_muted_users([merge_request.author, merge_request.assignee], merge_request.target_project))
    recipients = recipients.concat(project_watchers(merge_request.source_project))
    recipients = recipients.concat(project_watchers(merge_request.target_project)).uniq
87 88

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
89
      mailer.merged_merge_request_email(recipient.id, merge_request.id)
90 91 92
    end
  end

93 94 95
  # Notify new user with email after creation
  def new_user(user)
    # Dont email omniauth created users
D
Dmitriy Zaporozhets 已提交
96
    mailer.new_user_email(user.id, user.password) unless user.extern_uid?
97 98 99 100 101 102 103
  end

  # Notify users on new note in system
  #
  # TODO: split on methods and refactor
  #
  def new_note(note)
104 105 106
    # ignore wall messages
    return true unless note.noteable_type.present?

I
Izaak Alpert 已提交
107
    opts = {noteable_type: note.noteable_type, project_id: note.project_id}
108

D
Dmitriy Zaporozhets 已提交
109
    if note.commit_id.present?
110
      opts.merge!(commit_id: note.commit_id)
111
      recipients = [note.commit_author]
112 113
    else
      opts.merge!(noteable_id: note.noteable_id)
114
      target = note.noteable
115 116 117 118 119
      if target.respond_to?(:participants)
        recipients = target.participants
      else
        recipients = []
      end
120 121 122
    end

    # Get users who left comment in thread
123
    recipients = recipients.concat(User.where(id: Note.where(opts).pluck(:author_id)))
124 125 126 127 128

    # Merge project watchers
    recipients = recipients.concat(project_watchers(note.project)).compact.uniq

    # Reject mutes users
129
    recipients = reject_muted_users(recipients, note.project)
130 131 132 133 134 135 136 137

    # 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|
D
Dmitriy Zaporozhets 已提交
138
      mailer.send(notify_method, recipient.id, note.id)
139 140
    end
  end
141 142

  def new_team_member(users_project)
D
Dmitriy Zaporozhets 已提交
143
    mailer.project_access_granted_email(users_project.id)
144 145 146
  end

  def update_team_member(users_project)
D
Dmitriy Zaporozhets 已提交
147
    mailer.project_access_granted_email(users_project.id)
148
  end
149 150 151

  protected

152 153
  # Get project users with WATCH notification level
  def project_watchers(project)
154 155 156
    project_watchers = []
    member_methods = { project => :users_projects }
    member_methods.merge!(project.group => :users_groups) if project.group
157

158
    member_methods.each do |object, member_method|
159
      # Get project notification settings since it has higher priority
160 161
      user_ids = object.send(member_method).where(notification_level: Notification::N_WATCH).pluck(:user_id)
      project_watchers += User.where(id: user_ids)
162 163

      # next collect users who use global settings with watch state
164
      user_ids = object.send(member_method).where(notification_level: Notification::N_GLOBAL).pluck(:user_id)
165 166
      project_watchers += User.where(id: user_ids, notification_level: Notification::N_WATCH)
    end
167 168

    project_watchers.uniq
169 170
  end

171 172
  # Remove users with disabled notifications from array
  # Also remove duplications and nil recipients
173 174 175 176 177 178 179 180
  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)

181
      if !tm && project.group
182
        tm = project.group.users_groups.find_by_user_id(user.id)
183 184
      end

185 186 187 188 189 190 191 192
      # 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?
193 194 195
    end
  end

I
Izaak Alpert 已提交
196
  def new_resource_email(target, project, method)
197 198 199 200 201
    if target.respond_to?(:participants)
      recipients = target.participants
    else
      recipients = []
    end
I
Izaak Alpert 已提交
202 203
    recipients = reject_muted_users(recipients, project)
    recipients = recipients.concat(project_watchers(project)).uniq
204 205 206
    recipients.delete(target.author)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
207
      mailer.send(method, recipient.id, target.id)
208 209 210
    end
  end

I
Izaak Alpert 已提交
211 212 213
  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
214 215 216
    recipients.delete(current_user)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
217
      mailer.send(method, recipient.id, target.id, current_user.id)
218 219 220
    end
  end

I
Izaak Alpert 已提交
221
  def reassign_resource_email(target, project, current_user, method)
222 223
    recipients = User.where(id: [target.assignee_id, target.assignee_id_was])

224
    # Add watchers to email list
I
Izaak Alpert 已提交
225
    recipients = recipients.concat(project_watchers(project))
226

227
    # reject users with disabled notifications
I
Izaak Alpert 已提交
228
    recipients = reject_muted_users(recipients, project)
229 230 231 232

    # Reject me from recipients if I reassign an item
    recipients.delete(current_user)

233
    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
234
      mailer.send(method, recipient.id, target.id, target.assignee_id_was)
235 236
    end
  end
D
Dmitriy Zaporozhets 已提交
237 238 239 240

  def mailer
    Notify.delay
  end
241
end