Files
Marcello Rocha 81e5726838 [OP#73293] Creates POST /api/v3/wiki_page_links endpoint (#23529)
* Remove the `render_author` method as it is unnecessary
* Add the necessary paths, clarify the param to wiki_provider path
* Rework the representers, merge upstream changes to the create contract
* Remove unnecessary mixin and make everything read-only
* Create Endpoint for POST /api/v3/wiki_page_links
* Incorporates @Kharonus feedback in testing multiple page link creation
2026-06-04 10:06:13 +02:00

102 lines
3.1 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
module API
module Utilities
module Endpoints
class Modify < Bodied
def default_instance_generator(model)
lambda do |_params, _current_user|
instance_variable_get(:"@#{model.name.demodulize.underscore}")
end
end
private
def present_success(_request, _call)
raise SubclassResponsibilityError
end
def present_error(call)
api_errors = [::API::Errors::ErrorBase.create_and_merge_errors(postprocess_errors(call))]
fail(::API::Errors::MultipleErrors
.create_if_many(api_errors))
end
def postprocess_errors(call)
errors = call.errors
errors = merge_dependent_errors call if errors.empty?
errors
end
def merge_dependent_errors(call)
errors = ActiveModel::Errors.new call.all_results.first
call.dependent_results.each do |dr|
dr.errors.full_messages.each do |full_message|
errors.add :base, :dependent_invalid, message: dependent_error_message(dr.result, full_message)
end
end
errors
end
def dependent_error_message(result, full_message)
key =
if result.id.blank?
:error_in_new_dependent
else
:error_in_dependent
end
I18n.t(
key,
dependent_class: result.model_name.human,
related_id: result.id,
related_subject: dependent_error_subject(result),
error: full_message
)
end
def dependent_error_subject(dependent_result) = dependent_result.name
def deduce_process_service
lookup_namespaced_class("#{update_or_create}Service")
end
def deduce_process_contract
nil
end
end
end
end
end