2016-01-27 10:59:16 -05:00
|
|
|
module Notes
|
|
|
|
class PostProcessService
|
|
|
|
attr_accessor :note
|
|
|
|
|
|
|
|
def initialize(note)
|
|
|
|
@note = note
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
# Skip system notes, like status changes and cross-references and awards
|
2016-06-01 05:23:09 -04:00
|
|
|
unless @note.system?
|
2016-01-27 10:59:16 -05:00
|
|
|
EventCreateService.new.leave_note(@note, @note.author)
|
2017-01-20 05:28:40 -05:00
|
|
|
|
|
|
|
return if @note.for_personal_snippet?
|
|
|
|
|
|
|
|
@note.create_cross_references!
|
|
|
|
execute_note_hooks
|
2016-01-27 10:59:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def hook_data
|
2016-08-12 04:09:29 -04:00
|
|
|
Gitlab::DataBuilder::Note.build(@note, @note.author)
|
2016-01-27 10:59:16 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def execute_note_hooks
|
|
|
|
note_data = hook_data
|
|
|
|
@note.project.execute_hooks(note_data, :note_hooks)
|
|
|
|
@note.project.execute_services(note_data, :note_hooks)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|