# frozen_string_literal: true module API module Release class Links < ::API::Base include PaginationParams release_links_tags = %w[release_links] RELEASE_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS .merge(tag_name: API::NO_SLASH_URL_PART_REGEX) before { authorize! :read_release, user_project } feature_category :release_orchestration urgency :low params do requires :id, type: [String, Integer], desc: 'The ID or URL-encoded path of the project' end resource 'projects/:id', requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do params do requires :tag_name, type: String, desc: 'The tag associated with the release', as: :tag end resource 'releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMENTS do resource :assets do desc 'List links of a release' do detail 'Get assets as links from a release. This feature was introduced in GitLab 11.7.' success Entities::Releases::Link failure [ { code: 401, message: 'Unauthorized' }, { code: 404, message: 'Not found' } ] is_array true tags release_links_tags end params do use :pagination end route_setting :authentication, job_token_allowed: true get 'links' do authorize! :read_release, release present paginate(release.links.sorted), with: Entities::Releases::Link end desc 'Create a release link' do detail 'Create an asset as a link from a release. This feature was introduced in GitLab 11.7.' success Entities::Releases::Link failure [ { code: 400, message: 'Bad request' }, { code: 401, message: 'Unauthorized' } ] tags release_links_tags end params do requires :name, type: String, desc: 'The name of the link. Link names must be unique in the release' requires :url, type: String, desc: 'The URL of the link. Link URLs must be unique in the release.' optional :filepath, type: String, desc: 'Optional path for a direct asset link' optional :link_type, type: String, values: %w[other runbook image package], default: 'other', desc: 'The type of the link: `other`, `runbook`, `image`, or `package`. Defaults to `other`' end route_setting :authentication, job_token_allowed: true post 'links' do authorize! :create_release, release new_link = release.links.create(declared_params(include_missing: false)) if new_link.persisted? present new_link, with: Entities::Releases::Link else render_api_error!(new_link.errors.messages, 400) end end params do requires :link_id, type: Integer, desc: 'The ID of the link' end resource 'links/:link_id' do desc 'Get a release link' do detail 'Get an asset as a link from a release. This feature was introduced in GitLab 11.7.' success Entities::Releases::Link failure [ { code: 401, message: 'Unauthorized' }, { code: 404, message: 'Not found' } ] tags release_links_tags end route_setting :authentication, job_token_allowed: true get do authorize! :read_release, release present link, with: Entities::Releases::Link end desc 'Update a release link' do detail 'Update an asset as a link from a release. This feature was introduced in GitLab 11.7.' success Entities::Releases::Link failure [ { code: 400, message: 'Bad request' }, { code: 401, message: 'Unauthorized' } ] tags release_links_tags end params do optional :name, type: String, desc: 'The name of the link' optional :url, type: String, desc: 'The URL of the link' optional :filepath, type: String, desc: 'Optional path for a direct asset link' optional :link_type, type: String, values: %w[other runbook image package], default: 'other', desc: 'The type of the link: `other`, `runbook`, `image`, or `package`. Defaults to `other`' at_least_one_of :name, :url end route_setting :authentication, job_token_allowed: true put do authorize! :update_release, release if link.update(declared_params(include_missing: false)) present link, with: Entities::Releases::Link else render_api_error!(link.errors.messages, 400) end end desc 'Delete a release link' do detail 'Deletes an asset as a link from a release. This feature was introduced in GitLab 11.7.' success Entities::Releases::Link failure [ { code: 400, message: 'Bad request' }, { code: 401, message: 'Unauthorized' } ] tags release_links_tags end route_setting :authentication, job_token_allowed: true delete do authorize! :destroy_release, release if link.destroy present link, with: Entities::Releases::Link else render_api_error!(link.errors.messages, 400) end end end end end end helpers do def release @release ||= user_project.releases.find_by_tag!(params[:tag]) end def link @link ||= release.links.find(params[:link_id]) end end end end end