summaryrefslogtreecommitdiff
path: root/app/observers/note_observer.rb
blob: 0a353cf1092ea5a6376bf46576ed8a0dfc752acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class NoteObserver < ActiveRecord::Observer

  def after_create(note)
    send_notify_mails(note)
  end

  protected

  def send_notify_mails(note)
    if note.notify
      notify_team(note)
    elsif note.notify_author
      # Notify only author of resource
      Notify.note_commit_email(note.noteable.author_email, note.id).deliver
    else
      # Otherwise ignore it
      nil
    end
  end

  # Notifies the whole team except the author of note
  def notify_team(note)
    # Note: wall posts are not "attached" to anything, so fall back to "Wall"
    noteable_type = note.noteable_type.presence || "Wall"
    notify_method = "note_#{noteable_type.underscore}_email".to_sym

    if Notify.respond_to? notify_method
      team_without_note_author(note).map do |u|
        Notify.send(notify_method, u.id, note.id).deliver
      end
    end
  end

  def team_without_note_author(note)
    note.project.users.reject { |u| u.id == note.author.id }
  end
end