2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
require 'gitlab/email/handler/base_handler'
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'gitlab/email/handler/reply_processing'
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
# handles note/reply creation emails with these formats:
|
|
|
|
# incoming+1234567890abcdef1234567890abcdef@incoming.gitlab.com
|
2016-09-13 17:45:13 +05:30
|
|
|
module Gitlab
|
|
|
|
module Email
|
|
|
|
module Handler
|
|
|
|
class CreateNoteHandler < BaseHandler
|
2017-08-17 22:00:37 +05:30
|
|
|
include ReplyProcessing
|
|
|
|
|
|
|
|
delegate :project, to: :sent_notification, allow_nil: true
|
2018-10-15 14:42:47 +05:30
|
|
|
delegate :noteable, to: :sent_notification
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
def can_handle?
|
|
|
|
mail_key =~ /\A\w+\z/
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
raise SentNotificationNotFoundError unless sent_notification
|
|
|
|
|
|
|
|
validate_permission!(:create_note)
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
raise NoteableNotFoundError unless noteable
|
2016-09-13 17:45:13 +05:30
|
|
|
raise EmptyEmailError if message.blank?
|
|
|
|
|
|
|
|
verify_record!(
|
|
|
|
record: create_note,
|
|
|
|
invalid_exception: InvalidNoteError,
|
|
|
|
record_name: 'comment')
|
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
def metrics_event
|
|
|
|
:receive_email_create_note
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def author
|
|
|
|
sent_notification.recipient
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def sent_notification
|
|
|
|
@sent_notification ||= SentNotification.for(mail_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_note
|
2017-08-17 22:00:37 +05:30
|
|
|
sent_notification.create_reply(message)
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|