BigW Consortium Gitlab

notes.rb 2.12 KB
Newer Older
1 2 3
module Emails
  module Notes
    def note_commit_email(recipient_id, note_id)
4
      setup_note_mail(note_id, recipient_id)
5 6 7

      @commit = @note.noteable
      @target_url = namespace_project_commit_url(*note_target_url_options)
Douwe Maan committed
8
      mail_answer_thread(@commit, note_thread_options(recipient_id))
9 10 11
    end

    def note_issue_email(recipient_id, note_id)
12
      setup_note_mail(note_id, recipient_id)
13 14 15 16

      @issue = @note.noteable
      @target_url = namespace_project_issue_url(*note_target_url_options)
      mail_answer_thread(@issue, note_thread_options(recipient_id))
17 18 19
    end

    def note_merge_request_email(recipient_id, note_id)
20
      setup_note_mail(note_id, recipient_id)
21 22 23 24

      @merge_request = @note.noteable
      @target_url = namespace_project_merge_request_url(*note_target_url_options)
      mail_answer_thread(@merge_request, note_thread_options(recipient_id))
25 26
    end

27 28 29 30 31 32 33 34
    def note_snippet_email(recipient_id, note_id)
      setup_note_mail(note_id, recipient_id)

      @snippet = @note.noteable
      @target_url = namespace_project_snippet_url(*note_target_url_options)
      mail_answer_thread(@snippet, note_thread_options(recipient_id))
    end

35 36 37 38 39 40 41 42
    def note_personal_snippet_email(recipient_id, note_id)
      setup_note_mail(note_id, recipient_id)

      @snippet = @note.noteable
      @target_url = snippet_url(@note.noteable)
      mail_answer_thread(@snippet, note_thread_options(recipient_id))
    end

43 44 45 46 47 48 49 50 51 52
    private

    def note_target_url_options
      [@project.namespace, @project, @note.noteable, anchor: "note_#{@note.id}"]
    end

    def note_thread_options(recipient_id)
      {
        from: sender(@note.author_id),
        to: recipient(recipient_id),
Douwe Maan committed
53
        subject: subject("#{@note.noteable.title} (#{@note.noteable.reference_link_text})")
54 55 56
      }
    end

57
    def setup_note_mail(note_id, recipient_id)
Douwe Maan committed
58 59
      # `note_id` is a `Note` when originating in `NotifyPreview`
      @note = note_id.is_a?(Note) ? note_id : Note.find(note_id)
60
      @project = @note.project
61

Douwe Maan committed
62 63 64
      if @project && @note.persisted?
        @sent_notification = SentNotification.record_note(@note, recipient_id, reply_key)
      end
65 66 67
    end
  end
end