2013-03-19 14:00:41 -04:00
|
|
|
module Emails
|
|
|
|
module Notes
|
|
|
|
def note_commit_email(recipient_id, note_id)
|
2016-01-09 13:32:03 -05:00
|
|
|
setup_note_mail(note_id, recipient_id)
|
2015-12-09 05:59:25 -05:00
|
|
|
|
|
|
|
@commit = @note.noteable
|
2017-06-29 13:06:35 -04:00
|
|
|
@target_url = project_commit_url(*note_target_url_options)
|
2017-09-15 02:58:21 -04:00
|
|
|
mail_answer_note_thread(@commit, @note, note_thread_options(recipient_id))
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_issue_email(recipient_id, note_id)
|
2016-01-09 13:32:03 -05:00
|
|
|
setup_note_mail(note_id, recipient_id)
|
2015-12-09 05:59:25 -05:00
|
|
|
|
|
|
|
@issue = @note.noteable
|
2017-06-29 13:06:35 -04:00
|
|
|
@target_url = project_issue_url(*note_target_url_options)
|
2017-09-15 02:58:21 -04:00
|
|
|
mail_answer_note_thread(@issue, @note, note_thread_options(recipient_id))
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
2016-01-09 13:32:03 -05:00
|
|
|
setup_note_mail(note_id, recipient_id)
|
2015-12-09 05:59:25 -05:00
|
|
|
|
|
|
|
@merge_request = @note.noteable
|
2017-06-29 13:06:35 -04:00
|
|
|
@target_url = project_merge_request_url(*note_target_url_options)
|
2017-09-15 02:58:21 -04:00
|
|
|
mail_answer_note_thread(@merge_request, @note, note_thread_options(recipient_id))
|
2015-11-17 05:55:43 -05:00
|
|
|
end
|
|
|
|
|
2016-04-29 19:02:28 -04:00
|
|
|
def note_snippet_email(recipient_id, note_id)
|
|
|
|
setup_note_mail(note_id, recipient_id)
|
|
|
|
|
|
|
|
@snippet = @note.noteable
|
2017-06-29 13:06:35 -04:00
|
|
|
@target_url = project_snippet_url(*note_target_url_options)
|
2017-09-15 02:58:21 -04:00
|
|
|
mail_answer_note_thread(@snippet, @note, note_thread_options(recipient_id))
|
2016-04-29 19:02:28 -04:00
|
|
|
end
|
|
|
|
|
2017-01-05 08:36:06 -05:00
|
|
|
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)
|
2017-09-15 02:58:21 -04:00
|
|
|
mail_answer_note_thread(@snippet, @note, note_thread_options(recipient_id))
|
2017-01-05 08:36:06 -05:00
|
|
|
end
|
|
|
|
|
2015-11-17 05:55:43 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def note_target_url_options
|
2017-06-29 13:06:35 -04:00
|
|
|
[@project, @note.noteable, anchor: "note_#{@note.id}"]
|
2015-11-17 05:55:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_thread_options(recipient_id)
|
|
|
|
{
|
|
|
|
from: sender(@note.author_id),
|
|
|
|
to: recipient(recipient_id),
|
2017-04-04 18:27:23 -04:00
|
|
|
subject: subject("#{@note.noteable.title} (#{@note.noteable.reference_link_text})")
|
2015-11-17 05:55:43 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-01-09 13:32:03 -05:00
|
|
|
def setup_note_mail(note_id, recipient_id)
|
2017-04-04 18:27:23 -04:00
|
|
|
# `note_id` is a `Note` when originating in `NotifyPreview`
|
|
|
|
@note = note_id.is_a?(Note) ? note_id : Note.find(note_id)
|
2013-03-19 14:00:41 -04:00
|
|
|
@project = @note.project
|
2015-11-17 05:55:43 -05:00
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
if @project && @note.persisted?
|
|
|
|
@sent_notification = SentNotification.record_note(@note, recipient_id, reply_key)
|
|
|
|
end
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|