mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
75 lines
2.0 KiB
Ruby
75 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module DraftNotes
|
|
class CreateService < DraftNotes::BaseService
|
|
attr_accessor :in_draft_mode, :in_reply_to_discussion_id
|
|
|
|
def initialize(merge_request, current_user, params = nil)
|
|
@in_reply_to_discussion_id = params.delete(:in_reply_to_discussion_id)
|
|
super
|
|
end
|
|
|
|
def execute
|
|
if in_reply_to_discussion_id.present?
|
|
unless discussion
|
|
return base_error(_('Thread to reply to cannot be found'))
|
|
end
|
|
|
|
params[:discussion_id] = discussion.reply_id
|
|
end
|
|
|
|
if params[:resolve_discussion] && !can_resolve_discussion?
|
|
return base_error(_('User is not allowed to resolve thread'))
|
|
end
|
|
|
|
draft_note = DraftNote.new(params)
|
|
draft_note.merge_request = merge_request
|
|
draft_note.author = current_user
|
|
|
|
return draft_note unless draft_note.save
|
|
|
|
if in_reply_to_discussion_id.blank? && draft_note.diff_file&.unfolded?
|
|
merge_request.diffs.clear_cache
|
|
end
|
|
|
|
if draft_note.persisted?
|
|
merge_request_activity_counter.track_create_review_note_action(user: current_user)
|
|
end
|
|
|
|
draft_note.keep_around_commits if draft_note.on_diff?
|
|
|
|
after_execute
|
|
|
|
draft_note
|
|
end
|
|
|
|
private
|
|
|
|
def after_execute
|
|
# Update reviewer state to `REVIEW_STARTED` when a new review has started
|
|
return unless draft_notes.one?
|
|
|
|
::MergeRequests::UpdateReviewerStateService
|
|
.new(project: merge_request.project, current_user: current_user)
|
|
.execute(merge_request, 'review_started')
|
|
end
|
|
|
|
def base_error(text)
|
|
DraftNote.new.tap do |draft|
|
|
draft.errors.add(:base, text)
|
|
end
|
|
end
|
|
|
|
def discussion
|
|
@discussion ||= merge_request.notes.find_discussion(in_reply_to_discussion_id)
|
|
end
|
|
|
|
def can_resolve_discussion?
|
|
note = discussion&.notes&.first
|
|
return false unless note
|
|
|
|
current_user && Ability.allowed?(current_user, :resolve_note, note)
|
|
end
|
|
end
|
|
end
|