75 lines
1.9 KiB
Ruby
75 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'gitlab/email/handler/base_handler'
|
|
require 'gitlab/email/handler/reply_processing'
|
|
|
|
# handles note/reply creation emails with these formats:
|
|
# incoming+1234567890abcdef1234567890abcdef@incoming.gitlab.com
|
|
# Quoted material is _not_ stripped but appended as a `details` section
|
|
module Gitlab
|
|
module Email
|
|
module Handler
|
|
class CreateNoteHandler < BaseHandler
|
|
include ReplyProcessing
|
|
|
|
delegate :project, to: :sent_notification, allow_nil: true
|
|
delegate :noteable, to: :sent_notification
|
|
|
|
def can_handle?
|
|
mail_key =~ /\A\w+\z/
|
|
end
|
|
|
|
def execute
|
|
raise SentNotificationNotFoundError unless sent_notification
|
|
|
|
validate_permission!(:create_note)
|
|
|
|
validate_from_address!
|
|
|
|
raise NoteableNotFoundError unless noteable
|
|
raise EmptyEmailError if note_message.blank?
|
|
|
|
verify_record!(
|
|
record: create_note,
|
|
invalid_exception: InvalidNoteError,
|
|
record_name: 'comment')
|
|
end
|
|
|
|
def metrics_event
|
|
:receive_email_create_note
|
|
end
|
|
|
|
private
|
|
|
|
def author
|
|
sent_notification.recipient
|
|
end
|
|
|
|
def sent_notification
|
|
@sent_notification ||= SentNotification.for(mail_key)
|
|
end
|
|
|
|
def create_note
|
|
sent_notification.create_reply(note_message)
|
|
end
|
|
|
|
def note_message
|
|
return message unless sent_notification.noteable_type == "Issue"
|
|
|
|
message_with_appended_reply
|
|
end
|
|
|
|
def from_address
|
|
mail.from&.first
|
|
end
|
|
|
|
def validate_from_address!
|
|
# Recipieint is always set to Support bot for ServiceDesk issues so we should exclude those.
|
|
return if author == User.support_bot
|
|
|
|
raise UserNotFoundError unless from_address && author.verified_email?(from_address)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|