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

61 lines
1.9 KiB
Ruby
Raw Normal View History

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
@target_url = namespace_project_commit_url(*note_target_url_options)
mail_answer_thread(@commit,
from: sender(@note.author_id),
to: recipient(recipient_id),
subject: subject("#{@commit.title} (#{@commit.short_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
@target_url = namespace_project_issue_url(*note_target_url_options)
mail_answer_thread(@issue, 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
@target_url = namespace_project_merge_request_url(*note_target_url_options)
mail_answer_thread(@merge_request, note_thread_options(recipient_id))
2015-12-23 02:04:40 +05:30
end
2016-06-02 11:05:42 +05:30
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
2015-12-23 02:04:40 +05:30
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),
2016-06-02 11:05:42 +05:30
subject: subject("#{@note.noteable.title} (#{@note.noteable.to_reference})")
2015-12-23 02:04:40 +05:30
}
end
def setup_note_mail(note_id, recipient_id)
2014-09-02 18:07:02 +05:30
@note = Note.find(note_id)
@project = @note.project
2015-12-23 02:04:40 +05:30
@sent_notification = SentNotification.record_note(@note, recipient_id, reply_key)
2014-09-02 18:07:02 +05:30
end
end
end