Class: Gitlab::Email::Handler::CreateNoteHandler

Inherits:
BaseHandler
  • Object
show all
Includes:
ReplyProcessing
Defined in:
lib/gitlab/email/handler/create_note_handler.rb

Instance Attribute Summary

Attributes inherited from BaseHandler

#mail, #mail_key

Instance Method Summary collapse

Methods included from ReplyProcessing

#project

Methods inherited from BaseHandler

#initialize, #metrics_params

Constructor Details

This class inherits a constructor from Gitlab::Email::Handler::BaseHandler

Instance Method Details

#can_handle?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/gitlab/email/handler/create_note_handler.rb', line 18

def can_handle?
  mail_key =~ /\A\w+\z/
end

#executeObject



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/gitlab/email/handler/create_note_handler.rb', line 22

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

#metrics_eventObject



38
39
40
# File 'lib/gitlab/email/handler/create_note_handler.rb', line 38

def metrics_event
  :receive_email_create_note
end