kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.6 KiB
104 lines
3.6 KiB
7 years ago
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
# Copyright (C) 2012-2017 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# 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-2017 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 doc/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
|
module API
|
||
|
module V3
|
||
|
module CustomActions
|
||
|
class CustomActionsAPI < ::API::OpenProjectAPI
|
||
|
resources :custom_actions do
|
||
|
params do
|
||
|
requires :id, desc: 'Custom action id', type: Integer
|
||
|
end
|
||
|
route_param :id do
|
||
|
helpers do
|
||
|
def custom_action
|
||
|
@custom_action ||= CustomAction.find(params[:id])
|
||
|
end
|
||
|
end
|
||
|
|
||
|
helpers ::API::V3::WorkPackages::WorkPackagesSharedHelpers
|
||
|
|
||
|
before do
|
||
|
authorize(:edit_work_packages, global: true)
|
||
|
end
|
||
|
|
||
|
get do
|
||
|
::API::V3::CustomActions::CustomActionRepresenter.new(custom_action,
|
||
|
current_user: current_user)
|
||
|
end
|
||
|
|
||
|
namespace 'execute' do
|
||
|
helpers do
|
||
|
def parsed_params
|
||
|
@parsed_params ||= begin
|
||
|
struct = OpenStruct.new
|
||
|
|
||
|
representer = ::API::V3::CustomActions::CustomActionExecuteRepresenter.new(struct,
|
||
|
current_user: current_user)
|
||
|
representer.from_hash(Hash(request_body))
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
before do
|
||
|
contract = ::CustomActions::ExecuteContract.new(parsed_params)
|
||
|
|
||
|
unless contract.valid?
|
||
|
fail ::API::Errors::ErrorBase.create_and_merge_errors(contract.errors)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
post do
|
||
|
work_package = WorkPackage.visible.find_by(id: parsed_params.work_package_id)
|
||
|
work_package.lock_version = parsed_params.lock_version
|
||
|
|
||
|
::CustomActions::UpdateWorkPackageService
|
||
|
.new(user: current_user,
|
||
|
action: custom_action)
|
||
|
.call(work_package: work_package) do |call|
|
||
|
|
||
|
call.on_success do
|
||
|
work_package.reload
|
||
|
|
||
|
status 200
|
||
|
body work_package_representer(work_package)
|
||
|
end
|
||
|
|
||
|
call.on_failure do
|
||
|
fail ::API::Errors::ErrorBase.create_and_merge_errors(call.errors)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|