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

107 lines
3.3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
module Notes
class UpdateService < BaseService
2015-09-11 14:41:01 +05:30
def execute(note)
2020-03-13 15:44:24 +05:30
return note unless note.editable? && params.present?
2015-04-26 12:48:37 +05:30
2019-12-21 20:55:43 +05:30
old_mentioned_users = note.mentioned_users(current_user).to_a
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
note.assign_attributes(params.merge(updated_by: current_user))
note.with_transaction_returning_status do
2020-07-28 23:09:34 +05:30
update_confidentiality(note)
2020-03-13 15:44:24 +05:30
note.save
2020-01-01 13:55:28 +05:30
end
2015-04-26 12:48:37 +05:30
2021-01-29 00:20:46 +05:30
track_note_edit_usage_for_issues(note) if note.for_issue?
2021-03-08 18:12:59 +05:30
track_note_edit_usage_for_merge_requests(note) if note.for_merge_request?
2021-01-29 00:20:46 +05:30
2019-12-04 20:38:33 +05:30
only_commands = false
quick_actions_service = QuickActionsService.new(project, current_user)
if quick_actions_service.supported?(note)
content, update_params, message = quick_actions_service.execute(note, {})
only_commands = content.empty?
note.note = content
end
2020-10-24 23:57:45 +05:30
unless only_commands || note.for_personal_snippet?
2019-12-04 20:38:33 +05:30
note.create_new_cross_references!(current_user)
update_todos(note, old_mentioned_users)
update_suggestions(note)
2016-04-02 18:10:28 +05:30
end
2019-12-04 20:38:33 +05:30
if quick_actions_service.commands_executed_count.to_i > 0
if update_params.present?
quick_actions_service.apply_updates(update_params, note)
note.commands_changes = update_params
2019-02-15 15:39:39 +05:30
end
2019-12-04 20:38:33 +05:30
if only_commands
delete_note(note, message)
note = nil
else
note.save
end
2019-02-15 15:39:39 +05:30
end
2015-04-26 12:48:37 +05:30
note
end
2019-12-04 20:38:33 +05:30
private
def delete_note(note, message)
# We must add the error after we call #save because errors are reset
# when #save is called
note.errors.add(:commands_only, message.presence || _('Commands did not apply'))
2020-04-22 19:07:51 +05:30
# Allow consumers to detect problems applying commands
note.errors.add(:commands, _('Commands did not apply')) unless message.present?
2019-12-04 20:38:33 +05:30
Notes::DestroyService.new(project, current_user).execute(note)
end
def update_suggestions(note)
return unless note.supports_suggestion?
Suggestion.transaction do
note.suggestions.delete_all
Suggestions::CreateService.new(note).execute
end
# We need to refresh the previous suggestions call cache
# in order to get the new records.
note.reset
end
def update_todos(note, old_mentioned_users)
return unless note.previous_changes.include?('note')
TodoService.new.update_note(note, current_user, old_mentioned_users)
end
2020-07-28 23:09:34 +05:30
# This method updates confidentiality of all discussion notes at once
def update_confidentiality(note)
return unless params.key?(:confidential)
return unless note.is_a?(DiscussionNote) # we don't need to do bulk update for single notes
return unless note.start_of_discussion? # don't update all notes if a response is being updated
Note.id_in(note.discussion.notes.map(&:id)).update_all(confidential: params[:confidential])
end
2021-01-29 00:20:46 +05:30
def track_note_edit_usage_for_issues(note)
Gitlab::UsageDataCounters::IssueActivityUniqueCounter.track_issue_comment_edited_action(author: note.author)
end
2021-03-08 18:12:59 +05:30
def track_note_edit_usage_for_merge_requests(note)
Gitlab::UsageDataCounters::MergeRequestActivityUniqueCounter.track_edit_comment_action(note: note)
end
2015-04-26 12:48:37 +05:30
end
end
2020-04-22 19:07:51 +05:30
Notes::UpdateService.prepend_if_ee('EE::Notes::UpdateService')