diff options
author | Francisco Javier López <fjlopez@gitlab.com> | 2018-07-31 12:35:02 -0400 |
---|---|---|
committer | Francisco Javier López <fjlopez@gitlab.com> | 2018-11-07 14:03:30 +0100 |
commit | 28cbb2acfe413148ff23b8ed4b3293e09ab376f5 (patch) | |
tree | 0d8546cda9e06b79d03886e9ee82128b03c1d8d6 /lib/api/submodules.rb | |
parent | 681d927f18f81755d88c56c0b6e267c9866c7bb4 (diff) | |
download | gitlab-ce-28cbb2acfe413148ff23b8ed4b3293e09ab376f5.tar.gz |
Add submodule update API endpoint
This new endpoint allow users to update a submodule's reference.
The MR involves adding a new operation RPC operation in gitaly-proto
(see gitlab-org/gitaly-proto!233) and change Gitaly to use this
new version (see gitlab-org/gitaly!936).
See gitlab-org/gitlab-ce!20949
Diffstat (limited to 'lib/api/submodules.rb')
-rw-r--r-- | lib/api/submodules.rb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/api/submodules.rb b/lib/api/submodules.rb new file mode 100644 index 00000000000..72d7d994102 --- /dev/null +++ b/lib/api/submodules.rb @@ -0,0 +1,47 @@ +# frozen_string_literal: true + +module API + class Submodules < Grape::API + before { authenticate! } + + helpers do + def commit_params(attrs) + { + submodule: attrs[:submodule], + commit_sha: attrs[:commit_sha], + branch_name: attrs[:branch], + commit_message: attrs[:commit_message] + } + end + end + + params do + requires :id, type: String, desc: 'The project ID' + end + resource :projects, requirements: Files::FILE_ENDPOINT_REQUIREMENTS do + desc 'Update existing submodule reference in repository' do + success Entities::Commit + end + params do + requires :submodule, type: String, desc: 'Url encoded full path to submodule.' + requires :commit_sha, type: String, desc: 'Commit sha to update the submodule to.' + requires :branch, type: String, desc: 'Name of the branch to commit into.' + optional :commit_message, type: String, desc: 'Commit message. If no message is provided a default one will be set.' + end + put ":id/repository/submodules/:submodule", requirements: Files::FILE_ENDPOINT_REQUIREMENTS do + authorize! :push_code, user_project + + submodule_params = declared_params(include_missing: false) + + result = ::Submodules::UpdateService.new(user_project, current_user, commit_params(submodule_params)).execute + + if result[:status] == :success + commit_detail = user_project.repository.commit(result[:result]) + present commit_detail, with: Entities::CommitDetail + else + render_api_error!(result[:message], result[:http_status] || 400) + end + end + end + end +end |