notification_service.rb 9.8 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 83 84
  end

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

    recipients.each do |recipient|
94
      mailer.merged_merge_request_email(recipient.id, merge_request.id, current_user.id)
95 96 97
    end
  end

98 99
  # Notify new user with email after creation
  def new_user(user)
J
Johannes Schleifenbaum 已提交
100
    # Don't email omniauth created users
D
Dmitriy Zaporozhets 已提交
101
    mailer.new_user_email(user.id, user.password) unless user.extern_uid?
102 103 104 105 106 107 108
  end

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

112 113
    # ignore gitlab service messages
    return true if note.note =~ /\A_Status changed to closed_/
114
    return true if note.note =~ /\A_mentioned in / && note.system == true
115

116 117
    opts = { noteable_type: note.noteable_type, project_id: note.project_id }

118 119 120 121 122
    target = note.noteable
    if target.respond_to?(:participants)
      recipients = target.participants
    else
      recipients = note.mentioned_users
123
    end
124 125 126 127 128 129 130

    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
131 132

    # Get users who left comment in thread
133
    recipients = recipients.concat(User.where(id: Note.where(opts).pluck(:author_id)))
134 135 136 137 138

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

    # Reject mutes users
139
    recipients = reject_muted_users(recipients, note.project)
140 141 142 143 144 145 146 147

    # 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 已提交
148
      mailer.send(notify_method, recipient.id, note.id)
149 150
    end
  end
151 152

  def new_team_member(users_project)
D
Dmitriy Zaporozhets 已提交
153
    mailer.project_access_granted_email(users_project.id)
154 155 156
  end

  def update_team_member(users_project)
D
Dmitriy Zaporozhets 已提交
157
    mailer.project_access_granted_email(users_project.id)
158
  end
159

160 161 162 163 164 165 166 167
  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

168 169 170 171 172 173 174 175 176
  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

177 178
  protected

179 180
  # Get project users with WATCH notification level
  def project_watchers(project)
181
    project_members = project_notification_list(project)
182

183 184 185 186 187 188
    project_global= project_notification_list(project, Notification::N_GLOBAL)
    group_global = group_notification_list(project, Notification::N_GLOBAL)
    global_watch = User.where(
                                      id: [project_global, group_global].flatten.uniq,
                                      notification_level: Notification::N_WATCH
                                    ).pluck(:id)
189

190 191
    project_watch = watch_project(project, project_global, global_watch)
    group_watch = watch_group(project, project_members, group_global, global_watch)
192

193
    User.where(id: project_watch.concat(group_watch).uniq).to_a
194 195
  end

196 197 198 199 200 201 202
  def project_notification_list(project, notification_level=nil)
    project_members = project.users_projects
    if notification_level
      project_members.where(notification_level: notification_level).pluck(:user_id)
    else
      project_members.pluck(:user_id)
    end
203 204 205 206 207 208 209
  end

  def group_notification_list(project, notification_level)
    if project.group
      project.group.users_groups.where(notification_level: notification_level).pluck(:user_id)
    else
      []
210
    end
211
  end
212

213 214 215 216 217 218
  def watch_project(project, global_setting, watch_global)
    uids = project_notification_list(project, Notification::N_WATCH)

    global_setting.each do |i|
      if watch_global.include?(i)
        uids << i
219 220
      end
    end
221
    uids.uniq
222 223
  end

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
  def watch_group(project, project_members, global_setting, watch_global)
    uids = group_notification_list(project, Notification::N_WATCH)
    # Group setting is watch, add to watchers list user is not project member
    watch = []
    uids.each do |i|
      if project_members.exclude?(i)
        watch << i
      end
    end

    global_setting.each do |i|
      if project_members.exclude?(i) && watch_global.include?(i)
        watch << i
      end
    end

    watch.uniq
241 242
  end

243 244
  # Remove users with disabled notifications from array
  # Also remove duplications and nil recipients
245 246 247 248 249 250
  def reject_muted_users(users, project = nil)
    users = users.compact.uniq

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

S
skv 已提交
251
      tm = project.users_projects.find_by(user_id: user.id)
252

253
      if !tm && project.group
S
skv 已提交
254
        tm = project.group.users_groups.find_by(user_id: user.id)
255 256
      end

257 258 259 260 261 262 263 264
      # 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?
265 266 267
    end
  end

I
Izaak Alpert 已提交
268
  def new_resource_email(target, project, method)
269 270 271 272 273
    if target.respond_to?(:participants)
      recipients = target.participants
    else
      recipients = []
    end
I
Izaak Alpert 已提交
274 275
    recipients = reject_muted_users(recipients, project)
    recipients = recipients.concat(project_watchers(project)).uniq
276 277 278
    recipients.delete(target.author)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
279
      mailer.send(method, recipient.id, target.id)
280 281 282
    end
  end

I
Izaak Alpert 已提交
283 284 285
  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
286 287 288
    recipients.delete(current_user)

    recipients.each do |recipient|
D
Dmitriy Zaporozhets 已提交
289
      mailer.send(method, recipient.id, target.id, current_user.id)
290 291 292
    end
  end

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

296
    # Add watchers to email list
I
Izaak Alpert 已提交
297
    recipients = recipients.concat(project_watchers(project))
298

299
    # reject users with disabled notifications
I
Izaak Alpert 已提交
300
    recipients = reject_muted_users(recipients, project)
301 302 303 304

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

305
    recipients.each do |recipient|
306
      mailer.send(method, recipient.id, target.id, target.assignee_id_was, current_user.id)
307 308
    end
  end
D
Dmitriy Zaporozhets 已提交
309 310 311 312

  def mailer
    Notify.delay
  end
313
end