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

76 lines
2.4 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
2019-12-04 20:38:33 +05:30
def note_commit_email(recipient_id, note_id, reason = nil)
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)
2019-12-04 20:38:33 +05:30
mail_answer_note_thread(@commit, @note, note_thread_options(recipient_id, reason))
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
def note_issue_email(recipient_id, note_id, reason = nil)
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)
2019-12-04 20:38:33 +05:30
mail_answer_note_thread(@issue, @note, note_thread_options(recipient_id, reason))
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
def note_merge_request_email(recipient_id, note_id, reason = nil)
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)
2019-12-04 20:38:33 +05:30
mail_answer_note_thread(@merge_request, @note, note_thread_options(recipient_id, reason))
2015-12-23 02:04:40 +05:30
end
2020-03-13 15:44:24 +05:30
def note_snippet_email(recipient_id, note_id, reason = nil)
2016-06-02 11:05:42 +05:30
setup_note_mail(note_id, recipient_id)
@snippet = @note.noteable
2020-03-13 15:44:24 +05:30
case @snippet
when ProjectSnippet
@target_url = project_snippet_url(*note_target_url_options)
when Snippet
@target_url = gitlab_snippet_url(@note.noteable)
end
2017-08-17 22:00:37 +05:30
2019-12-04 20:38:33 +05:30
mail_answer_note_thread(@snippet, @note, note_thread_options(recipient_id, reason))
2017-08-17 22:00:37 +05:30
end
2015-12-23 02:04:40 +05:30
private
def note_target_url_options
2019-12-04 20:38:33 +05:30
[@project || @group, @note.noteable, note_target_url_query_params]
2015-12-23 02:04:40 +05:30
end
2019-12-04 20:38:33 +05:30
def note_target_url_query_params
{ anchor: "note_#{@note.id}" }
end
def note_thread_options(recipient_id, reason)
2015-12-23 02:04:40 +05:30
{
from: sender(@note.author_id),
2019-12-21 20:55:43 +05:30
to: User.find(recipient_id).notification_email_for(@project&.group || @group),
2019-12-04 20:38:33 +05:30
subject: subject("#{@note.noteable.title} (#{@note.noteable.reference_link_text})"),
'X-GitLab-NotificationReason' => reason
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
2019-09-30 21:07:59 +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
2019-12-04 20:38:33 +05:30
Emails::Notes.prepend_if_ee('EE::Emails::Notes')