debian-mirror-gitlab/app/services/notes/create_service.rb

137 lines
4.6 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module Notes
2018-12-13 13:39:08 +05:30
class CreateService < ::Notes::BaseService
2020-11-24 15:15:51 +05:30
include IncidentManagement::UsageData
2014-09-02 18:07:02 +05:30
def execute
2020-03-13 15:44:24 +05:30
note = Notes::BuildService.new(project, current_user, params.except(:merge_request_diff_head_sha)).execute
2018-03-17 18:26:18 +05:30
2019-12-04 20:38:33 +05:30
# n+1: https://gitlab.com/gitlab-org/gitlab-foss/issues/37440
2018-03-17 18:26:18 +05:30
note_valid = Gitlab::GitalyClient.allow_n_plus_1_calls do
2020-01-01 13:55:28 +05:30
# We may set errors manually in Notes::BuildService for this reason
# we also need to check for already existing errors.
note.errors.empty? && note.valid?
2018-03-17 18:26:18 +05:30
end
return note unless note_valid
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
# We execute commands (extracted from `params[:note]`) on the noteable
# **before** we save the note because if the note consists of commands
# only, there is no need be create a note!
2020-04-22 19:07:51 +05:30
execute_quick_actions(note) do |only_commands|
note.run_after_commit do
# Finish the harder work in the background
NewNoteWorker.perform_async(note.id)
end
2016-09-13 17:45:13 +05:30
2020-04-22 19:07:51 +05:30
note_saved = note.with_transaction_returning_status do
2021-03-11 19:13:27 +05:30
break false if only_commands
note.save.tap do
update_discussions(note)
end
2020-04-22 19:07:51 +05:30
end
2016-09-13 17:45:13 +05:30
2020-04-22 19:07:51 +05:30
when_saved(note) if note_saved
2016-09-13 17:45:13 +05:30
end
2020-04-22 19:07:51 +05:30
note
end
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
private
2020-01-01 13:55:28 +05:30
2020-04-22 19:07:51 +05:30
def execute_quick_actions(note)
return yield(false) unless quick_actions_service.supported?(note)
2019-03-02 22:35:43 +05:30
2020-04-22 19:07:51 +05:30
content, update_params, message = quick_actions_service.execute(note, quick_action_options)
only_commands = content.empty?
note.note = content
2019-12-26 22:10:19 +05:30
2020-04-22 19:07:51 +05:30
yield(only_commands)
do_commands(note, update_params, message, only_commands)
end
def quick_actions_service
@quick_actions_service ||= QuickActionsService.new(project, current_user)
end
2021-03-11 19:13:27 +05:30
def update_discussions(note)
# Ensure that individual notes that are promoted into discussions are
# updated in a transaction with the note creation to avoid inconsistencies:
# https://gitlab.com/gitlab-org/gitlab/-/issues/301237
2020-04-22 19:07:51 +05:30
if note.part_of_discussion? && note.discussion.can_convert_to_discussion?
2020-10-24 23:57:45 +05:30
note.discussion.convert_to_discussion!.save
note.clear_memoization(:discussion)
2016-09-13 17:45:13 +05:30
end
2021-03-11 19:13:27 +05:30
end
2016-09-13 17:45:13 +05:30
2021-03-11 19:13:27 +05:30
def when_saved(note)
2020-04-22 19:07:51 +05:30
todo_service.new_note(note, current_user)
clear_noteable_diffs_cache(note)
Suggestions::CreateService.new(note).execute
increment_usage_counter(note)
2020-11-24 15:15:51 +05:30
track_event(note, current_user)
2016-09-13 17:45:13 +05:30
2021-01-03 14:25:43 +05:30
if note.for_merge_request? && note.diff_note? && note.start_of_discussion?
2020-04-22 19:07:51 +05:30
Discussions::CaptureDiffNotePositionService.new(note.noteable, note.diff_file&.paths).execute(note.discussion)
end
2014-09-02 18:07:02 +05:30
end
2019-12-26 22:10:19 +05:30
2020-04-22 19:07:51 +05:30
def do_commands(note, update_params, message, only_commands)
2020-10-24 23:57:45 +05:30
return if quick_actions_service.commands_executed_count.to_i == 0
2020-04-22 19:07:51 +05:30
if update_params.present?
quick_actions_service.apply_updates(update_params, note)
note.commands_changes = update_params
end
# We must add the error after we call #save because errors are reset
# when #save is called
if only_commands
note.errors.add(:commands_only, message.presence || _('Failed to apply commands.'))
# Allow consumers to detect problems applying commands
note.errors.add(:commands, _('Failed to apply commands.')) unless message.present?
end
end
2019-12-26 22:10:19 +05:30
2020-03-13 15:44:24 +05:30
def quick_action_options
2020-06-23 00:09:42 +05:30
{
merge_request_diff_head_sha: params[:merge_request_diff_head_sha],
review_id: params[:review_id]
}
2020-03-13 15:44:24 +05:30
end
2021-04-29 21:17:54 +05:30
def track_event(note, user)
track_note_creation_usage_for_issues(note) if note.for_issue?
track_note_creation_usage_for_merge_requests(note) if note.for_merge_request?
track_usage_event(:incident_management_incident_comment, user.id) if note.for_issue? && note.noteable.incident?
if Feature.enabled?(:notes_create_service_tracking, project)
Gitlab::Tracking.event('Notes::CreateService', 'execute', **tracking_data_for(note))
end
end
2019-12-26 22:10:19 +05:30
def tracking_data_for(note)
label = Gitlab.ee? && note.author == User.visual_review_bot ? 'anonymous_visual_review_note' : 'note'
{
label: label,
value: note.id
}
end
2020-11-24 15:15:51 +05:30
2021-01-29 00:20:46 +05:30
def track_note_creation_usage_for_issues(note)
Gitlab::UsageDataCounters::IssueActivityUniqueCounter.track_issue_comment_added_action(author: note.author)
end
2021-03-08 18:12:59 +05:30
def track_note_creation_usage_for_merge_requests(note)
Gitlab::UsageDataCounters::MergeRequestActivityUniqueCounter.track_create_comment_action(note: note)
end
2014-09-02 18:07:02 +05:30
end
end
2021-04-29 21:17:54 +05:30
Notes::CreateService.prepend_if_ee('EE::Notes::CreateService')