debian-mirror-gitlab/app/mailers/emails/notes.rb

71 lines
2.2 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module Emails
module Notes
def note_commit_email(recipient_id, note_id)
setup_note_mail(note_id, recipient_id)
@commit = @note.noteable
2017-09-10 17:25:29 +05:30
@target_url = project_commit_url(*note_target_url_options)
2018-03-17 18:26:18 +05:30
mail_answer_note_thread(@commit, @note, note_thread_options(recipient_id))
2014-09-02 18:07:02 +05:30
end
def note_issue_email(recipient_id, note_id)
setup_note_mail(note_id, recipient_id)
@issue = @note.noteable
2017-09-10 17:25:29 +05:30
@target_url = project_issue_url(*note_target_url_options)
2018-03-17 18:26:18 +05:30
mail_answer_note_thread(@issue, @note, note_thread_options(recipient_id))
2014-09-02 18:07:02 +05:30
end
def note_merge_request_email(recipient_id, note_id)
setup_note_mail(note_id, recipient_id)
@merge_request = @note.noteable
2017-09-10 17:25:29 +05:30
@target_url = project_merge_request_url(*note_target_url_options)
2018-03-17 18:26:18 +05:30
mail_answer_note_thread(@merge_request, @note, note_thread_options(recipient_id))
2015-12-23 02:04:40 +05:30
end
2018-11-29 20:51:05 +05:30
def note_project_snippet_email(recipient_id, note_id)
2016-06-02 11:05:42 +05:30
setup_note_mail(note_id, recipient_id)
@snippet = @note.noteable
2017-09-10 17:25:29 +05:30
@target_url = project_snippet_url(*note_target_url_options)
2018-03-17 18:26:18 +05:30
mail_answer_note_thread(@snippet, @note, note_thread_options(recipient_id))
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
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)
2018-03-17 18:26:18 +05:30
mail_answer_note_thread(@snippet, @note, note_thread_options(recipient_id))
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
private
def note_target_url_options
2018-10-15 14:42:47 +05:30
[@project || @group, @note.noteable, anchor: "note_#{@note.id}"]
2015-12-23 02:04:40 +05:30
end
def note_thread_options(recipient_id)
{
from: sender(@note.author_id),
to: recipient(recipient_id),
2017-08-17 22:00:37 +05:30
subject: subject("#{@note.noteable.title} (#{@note.noteable.reference_link_text})")
2015-12-23 02:04:40 +05:30
}
end
def setup_note_mail(note_id, recipient_id)
2017-08-17 22:00:37 +05:30
# `note_id` is a `Note` when originating in `NotifyPreview`
@note = note_id.is_a?(Note) ? note_id : Note.find(note_id)
2014-09-02 18:07:02 +05:30
@project = @note.project
2018-10-15 14:42:47 +05:30
@group = @note.noteable.try(:group)
2015-12-23 02:04:40 +05:30
2018-10-15 14:42:47 +05:30
if (@project || @group) && @note.persisted?
2017-08-17 22:00:37 +05:30
@sent_notification = SentNotification.record_note(@note, recipient_id, reply_key)
end
2014-09-02 18:07:02 +05:30
end
end
end