gitlab-org--gitlab-foss/app/services/issuable/clone/base_service.rb

92 lines
2.3 KiB
Ruby

# frozen_string_literal: true
module Issuable
module Clone
class BaseService < IssuableBaseService
attr_reader :original_entity, :new_entity, :target_project
alias_method :old_project, :project
def execute(original_entity, target_project = nil)
@original_entity = original_entity
@target_project = target_project
# Using transaction because of a high resources footprint
# on rewriting notes (unfolding references)
#
ActiveRecord::Base.transaction do
@new_entity = create_new_entity
update_new_entity
update_old_entity
create_notes
end
end
private
def copy_award_emoji
AwardEmojis::CopyService.new(original_entity, new_entity).execute
end
def copy_notes
Notes::CopyService.new(current_user, original_entity, new_entity).execute
end
def update_new_entity
update_new_entity_description
update_new_entity_attributes
copy_award_emoji
copy_notes
end
def update_new_entity_description
rewritten_description = MarkdownContentRewriterService.new(
current_user,
original_entity.description,
original_entity.project,
new_parent
).execute
new_entity.update!(description: rewritten_description)
end
def update_new_entity_attributes
AttributesRewriter.new(current_user, original_entity, new_entity).execute
end
def update_old_entity
close_issue
end
def create_notes
add_note_from
add_note_to
end
def close_issue
close_service = Issues::CloseService.new(old_project, current_user)
close_service.execute(original_entity, notifications: false, system_note: false)
end
def new_parent
new_entity.resource_parent
end
def group
if new_entity.project&.group && current_user.can?(:read_group, new_entity.project.group)
new_entity.project.group
end
end
def relative_position
return if original_entity.project.root_ancestor.id != target_project.root_ancestor.id
original_entity.relative_position
end
end
end
end
Issuable::Clone::BaseService.prepend_if_ee('EE::Issuable::Clone::BaseService')