notification_service.rb 12.7 KB
Newer Older
1 2
# NotificationService class
#
J
Johannes Schleifenbaum 已提交
3
# Used for notifying users with emails about different events
4 5 6 7 8 9 10
#
# 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 26
  # Always notify user about email added to profile
  def new_email(email)
    if email.user
      mailer.new_email_email(email.id)
    end
  end

27 28
  # When create an issue we should send next emails:
  #
29
  #  * issue assignee if their notification level is not Disabled
30 31 32
  #  * project team members with notification level higher then Participating
  #
  def new_issue(issue, current_user)
I
Izaak Alpert 已提交
33
    new_resource_email(issue, issue.project, 'new_issue_email')
34 35 36
  end

  # When we close an issue we should send next emails:
37
  #
38 39
  #  * issue author if their notification level is not Disabled
  #  * issue assignee if their notification level is not Disabled
40 41 42
  #  * project team members with notification level higher then Participating
  #
  def close_issue(issue, current_user)
I
Izaak Alpert 已提交
43
    close_resource_email(issue, issue.project, current_user, 'closed_issue_email')
44 45 46 47
  end

  # When we reassign an issue we should send next emails:
  #
48 49
  #  * issue old assignee if their notification level is not Disabled
  #  * issue new assignee if their notification level is not Disabled
50 51
  #
  def reassigned_issue(issue, current_user)
I
Izaak Alpert 已提交
52
    reassign_resource_email(issue, issue.project, current_user, 'reassigned_issue_email')
53 54
  end

55 56 57

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

  # When we reassign a merge_request we should send next emails:
  #
66 67
  #  * merge_request old assignee if their notification level is not Disabled
  #  * merge_request assignee if their notification level is not Disabled
68 69
  #
  def reassigned_merge_request(merge_request, current_user)
I
Izaak Alpert 已提交
70
    reassign_resource_email(merge_request, merge_request.target_project, current_user, 'reassigned_merge_request_email')
71
  end
72

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

83 84 85 86
  def reopen_issue(issue, current_user)
    reopen_resource_email(issue, issue.project, current_user, 'issue_status_changed_email', 'reopened')
  end

87 88
  # When we merge a merge request we should send next emails:
  #
89 90
  #  * merge_request author if their notification level is not Disabled
  #  * merge_request assignee if their notification level is not Disabled
91 92
  #  * project team members with notification level higher then Participating
  #
93
  def merge_mr(merge_request, current_user)
94
    recipients = reject_muted_users([merge_request.author, merge_request.assignee], merge_request.target_project)
I
Izaak Alpert 已提交
95
    recipients = recipients.concat(project_watchers(merge_request.target_project)).uniq
96
    recipients.delete(current_user)
97 98

    recipients.each do |recipient|
99
      mailer.merged_merge_request_email(recipient.id, merge_request.id, current_user.id)
100 101 102
    end
  end

M
Marin Jankovski 已提交
103 104 105 106
  def reopen_mr(merge_request, current_user)
    reopen_resource_email(merge_request, merge_request.target_project, current_user, 'merge_request_status_email', 'reopened')
  end

107
  # Notify new user with email after creation
108
  def new_user(user, token = nil)
J
Johannes Schleifenbaum 已提交
109
    # Don't email omniauth created users
110
    mailer.new_user_email(user.id, token) unless user.identities.any?
111 112 113 114 115 116 117
  end

  # Notify users on new note in system
  #
  # TODO: split on methods and refactor
  #
  def new_note(note)
118 119
    return true unless note.noteable_type.present?

120
    # ignore gitlab service messages
121
    return true if note.note.start_with?('_Status changed to closed_')
122
    return true if note.cross_reference? && note.system == true
123

124 125
    opts = { noteable_type: note.noteable_type, project_id: note.project_id }

126
    target = note.noteable
127

128 129 130 131
    if target.respond_to?(:participants)
      recipients = target.participants
    else
      recipients = note.mentioned_users
132
    end
133 134 135 136 137 138 139

    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
140 141

    # Get users who left comment in thread
142
    recipients = recipients.concat(User.where(id: Note.where(opts).pluck(:author_id)))
143 144 145 146

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

147 148 149 150
    # Reject mention users unless mentioned in comment
    recipients = reject_mention_users(recipients - note.mentioned_users, note.project)
    recipients = recipients + note.mentioned_users

151
    # Reject mutes users
152
    recipients = reject_muted_users(recipients, note.project)
153 154 155 156 157 158 159 160

    # 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 已提交
161
      mailer.send(notify_method, recipient.id, note.id)
162 163
    end
  end
164

165 166
  def new_team_member(project_member)
    mailer.project_access_granted_email(project_member.id)
167 168
  end

169 170
  def update_team_member(project_member)
    mailer.project_access_granted_email(project_member.id)
171
  end
172

173
  def new_group_member(users_group)
174
    mailer.group_access_granted_email(users_group.id)
175 176 177
  end

  def update_group_member(users_group)
178
    mailer.group_access_granted_email(users_group.id)
179 180
  end

181 182 183 184 185 186 187 188 189
  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

190 191
  protected

192 193
  # Get project users with WATCH notification level
  def project_watchers(project)
194
    project_members = project_member_notification(project)
195

196
    users_with_project_level_global = project_member_notification(project, Notification::N_GLOBAL)
197 198
    users_with_group_level_global = users_group_notification(project, Notification::N_GLOBAL)
    users = users_with_global_level_watch([users_with_project_level_global, users_with_group_level_global].flatten.uniq)
199

200
    users_with_project_setting = select_project_member_setting(project, users_with_project_level_global, users)
201
    users_with_group_setting = select_users_group_setting(project, project_members, users_with_group_level_global, users)
202

203
    User.where(id: users_with_project_setting.concat(users_with_group_setting).uniq).to_a
204 205
  end

206
  def project_member_notification(project, notification_level=nil)
207
    project_members = project.project_members
208

209 210 211 212 213
    if notification_level
      project_members.where(notification_level: notification_level).pluck(:user_id)
    else
      project_members.pluck(:user_id)
    end
214 215
  end

216
  def users_group_notification(project, notification_level)
217
    if project.group
218
      project.group.group_members.where(notification_level: notification_level).pluck(:user_id)
219 220
    else
      []
221
    end
222
  end
223

224 225 226 227 228 229 230 231
  def users_with_global_level_watch(ids)
    User.where(
      id: ids,
      notification_level: Notification::N_WATCH
    ).pluck(:id)
  end

  # Build a list of users based on project notifcation settings
232 233
  def select_project_member_setting(project, global_setting, users_global_level_watch)
    users = project_member_notification(project, Notification::N_WATCH)
234

235 236 237 238
    # If project setting is global, add to watch list if global setting is watch
    global_setting.each do |user_id|
      if users_global_level_watch.include?(user_id)
        users << user_id
239 240
      end
    end
241 242

    users
243 244
  end

S
Steven Burgart 已提交
245
  # Build a list of users based on group notification settings
246 247 248 249 250 251 252 253
  def select_users_group_setting(project, project_members, global_setting, users_global_level_watch)
    uids = users_group_notification(project, Notification::N_WATCH)

    # Group setting is watch, add to users list if user is not project member
    users = []
    uids.each do |user_id|
      if project_members.exclude?(user_id)
        users << user_id
254 255 256
      end
    end

257 258 259 260
    # Group setting is global, add to users list if global setting is watch
    global_setting.each do |user_id|
      if project_members.exclude?(user_id) && users_global_level_watch.include?(user_id)
        users << user_id
261 262 263
      end
    end

264
    users
265 266
  end

267 268
  # Remove users with disabled notifications from array
  # Also remove duplications and nil recipients
269
  def reject_muted_users(users, project = nil)
D
Dmitriy Zaporozhets 已提交
270
    users = users.to_a.compact.uniq
271 272 273 274

    users.reject do |user|
      next user.notification.disabled? unless project

275
      tm = project.project_members.find_by(user_id: user.id)
276

277
      if !tm && project.group
278
        tm = project.group.group_members.find_by(user_id: user.id)
279 280
      end

281 282 283 284 285 286 287 288
      # 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?
289 290 291
    end
  end

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
  # Remove users with notification level 'Mentioned'
  def reject_mention_users(users, project = nil)
    users = users.to_a.compact.uniq

    users.reject do |user|
      next user.notification.mention? unless project

      tm = project.project_members.find_by(user_id: user.id)

      if !tm && project.group
        tm = project.group.group_members.find_by(user_id: user.id)
      end

      # reject users who globally set mention notification and has no membership
      next user.notification.mention? unless tm

      # reject users who set mention notification in project
      next true if tm.notification.mention?

      # reject users who have N_MENTION in project and disabled in global settings
      tm.notification.global? && user.notification.mention?
    end
  end

I
Izaak Alpert 已提交
316
  def new_resource_email(target, project, method)
317 318 319 320 321
    if target.respond_to?(:participants)
      recipients = target.participants
    else
      recipients = []
    end
322

I
Izaak Alpert 已提交
323
    recipients = reject_muted_users(recipients, project)
324
    recipients = reject_mention_users(recipients, project)
I
Izaak Alpert 已提交
325
    recipients = recipients.concat(project_watchers(project)).uniq
326 327 328
    recipients.delete(target.author)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
329
      mailer.send(method, recipient.id, target.id)
330 331 332
    end
  end

I
Izaak Alpert 已提交
333
  def close_resource_email(target, project, current_user, method)
334 335 336 337 338 339 340 341
    participants =
      if target.respond_to?(:participants)
        target.participants
      else
        [target.author, target.assignee]
      end

    recipients = reject_muted_users(participants, project)
342
    recipients = reject_mention_users(recipients, project)
I
Izaak Alpert 已提交
343
    recipients = recipients.concat(project_watchers(project)).uniq
344 345 346
    recipients.delete(current_user)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
347
      mailer.send(method, recipient.id, target.id, current_user.id)
348 349 350
    end
  end

I
Izaak Alpert 已提交
351
  def reassign_resource_email(target, project, current_user, method)
352 353 354
    assignee_id_was = previous_record(target, "assignee_id")

    recipients = User.where(id: [target.assignee_id, assignee_id_was])
355

356
    # Add watchers to email list
I
Izaak Alpert 已提交
357
    recipients = recipients.concat(project_watchers(project))
358

359
    # reject users with disabled notifications
I
Izaak Alpert 已提交
360
    recipients = reject_muted_users(recipients, project)
361
    recipients = reject_mention_users(recipients, project)
362 363 364 365

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

366
    recipients.each do |recipient|
367
      mailer.send(method, recipient.id, target.id, assignee_id_was, current_user.id)
368 369
    end
  end
D
Dmitriy Zaporozhets 已提交
370

371
  def reopen_resource_email(target, project, current_user, method, status)
372 373 374 375 376 377 378 379
    participants =
      if target.respond_to?(:participants)
        target.participants
      else
        [target.author, target.assignee]
      end

    recipients = reject_muted_users(participants, project)
380
    recipients = reject_mention_users(recipients, project)
381 382 383 384 385 386 387 388
    recipients = recipients.concat(project_watchers(project)).uniq
    recipients.delete(current_user)

    recipients.each do |recipient|
      mailer.send(method, recipient.id, target.id, status, current_user.id)
    end
  end

D
Dmitriy Zaporozhets 已提交
389 390 391
  def mailer
    Notify.delay
  end
392 393 394 395

  def previous_record(object, attribute)
    if object && attribute
      if object.previous_changes.include?(attribute)
M
Marin Jankovski 已提交
396
        object.previous_changes[attribute].first
397 398 399
      end
    end
  end
400
end