gitlab-org--gitlab-foss/app/services/notes/create_service.rb

39 lines
1012 B
Ruby
Raw Normal View History

2012-07-31 05:32:49 +00:00
module Notes
class CreateService < BaseService
2012-07-31 05:32:49 +00:00
def execute
2014-06-17 19:09:01 +00:00
note = project.notes.new(params)
2012-07-31 05:32:49 +00:00
note.author = current_user
note.system = false
2014-06-17 19:09:01 +00:00
if note.save
notification_service.new_note(note)
# Skip system notes, like status changes and cross-references.
unless note.system
event_service.leave_note(note, note.author)
# Create a cross-reference note if this Note contains GFM that names an
# issue, merge request, or commit.
note.references.each do |mentioned|
Note.create_cross_reference_note(mentioned, note.noteable, note.author)
2014-06-17 19:09:01 +00:00
end
execute_hooks(note)
2014-06-17 19:09:01 +00:00
end
end
2012-07-31 05:32:49 +00:00
note
end
def hook_data(note)
Gitlab::NoteDataBuilder.build(note, current_user)
end
def execute_hooks(note)
note_data = hook_data(note)
note.project.execute_hooks(note_data, :note_hooks)
note.project.execute_services(note_data, :note_hooks)
end
2012-07-31 05:32:49 +00:00
end
end