133 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module API
 | |
|   class Labels < ::API::Base
 | |
|     include PaginationParams
 | |
|     helpers ::API::Helpers::LabelHelpers
 | |
| 
 | |
|     before { authenticate! }
 | |
| 
 | |
|     feature_category :team_planning
 | |
| 
 | |
|     LABEL_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(
 | |
|       name: API::NO_SLASH_URL_PART_REGEX,
 | |
|       label_id: API::NO_SLASH_URL_PART_REGEX)
 | |
| 
 | |
|     params do
 | |
|       requires :id, type: String, desc: 'The ID of a project'
 | |
|     end
 | |
|     resource :projects, requirements: LABEL_ENDPOINT_REQUIREMENTS do
 | |
|       desc 'Get all labels of the project' do
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         optional :with_counts, type: Boolean, default: false,
 | |
|                  desc: 'Include issue and merge request counts'
 | |
|         optional :include_ancestor_groups, type: Boolean, default: true,
 | |
|                  desc: 'Include ancestor groups'
 | |
|         optional :search, type: String,
 | |
|                  desc: 'Keyword to filter labels by. This feature was added in GitLab 13.6'
 | |
|         use :pagination
 | |
|       end
 | |
|       get ':id/labels' do
 | |
|         get_labels(user_project, Entities::ProjectLabel, declared_params)
 | |
|       end
 | |
| 
 | |
|       desc 'Get a single label' do
 | |
|         detail 'This feature was added in GitLab 12.4.'
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         optional :include_ancestor_groups, type: Boolean, default: true,
 | |
|                  desc: 'Include ancestor groups'
 | |
|       end
 | |
|       get ':id/labels/:name' do
 | |
|         get_label(user_project, Entities::ProjectLabel, declared_params)
 | |
|       end
 | |
| 
 | |
|       desc 'Create a new label' do
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         use :label_create_params
 | |
|         optional :priority, type: Integer, desc: 'The priority of the label', allow_blank: true
 | |
|       end
 | |
|       post ':id/labels' do
 | |
|         create_label(user_project, Entities::ProjectLabel)
 | |
|       end
 | |
| 
 | |
|       desc 'Update an existing label. At least one optional parameter is required.' do
 | |
|         detail 'This feature was deprecated in GitLab 12.4.'
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         optional :label_id, type: Integer, desc: 'The ID of the label to be updated'
 | |
|         optional :name, type: String, desc: 'The name of the label to be updated'
 | |
|         use :project_label_update_params
 | |
|         exactly_one_of :label_id, :name
 | |
|       end
 | |
|       put ':id/labels' do
 | |
|         update_label(user_project, Entities::ProjectLabel)
 | |
|       end
 | |
| 
 | |
|       desc 'Delete an existing label' do
 | |
|         detail 'This feature was deprecated in GitLab 12.4.'
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         optional :label_id, type: Integer, desc: 'The ID of the label to be deleted'
 | |
|         optional :name, type: String, desc: 'The name of the label to be deleted'
 | |
|         exactly_one_of :label_id, :name
 | |
|       end
 | |
|       delete ':id/labels' do
 | |
|         delete_label(user_project)
 | |
|       end
 | |
| 
 | |
|       desc 'Promote a label to a group label' do
 | |
|         detail 'This feature was added in GitLab 12.3 and deprecated in GitLab 12.4.'
 | |
|         success Entities::GroupLabel
 | |
|       end
 | |
|       params do
 | |
|         requires :name, type: String, desc: 'The name of the label to be promoted'
 | |
|       end
 | |
|       put ':id/labels/promote' do
 | |
|         promote_label(user_project)
 | |
|       end
 | |
| 
 | |
|       desc 'Update an existing label. At least one optional parameter is required.' do
 | |
|         detail 'This feature was added in GitLab 12.4.'
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         requires :name, type: String, desc: 'The name or id of the label to be updated'
 | |
|         use :project_label_update_params
 | |
|       end
 | |
|       put ':id/labels/:name' do
 | |
|         update_label(user_project, Entities::ProjectLabel)
 | |
|       end
 | |
| 
 | |
|       desc 'Delete an existing label' do
 | |
|         detail 'This feature was added in GitLab 12.4.'
 | |
|         success Entities::ProjectLabel
 | |
|       end
 | |
|       params do
 | |
|         requires :name, type: String, desc: 'The name or id of the label to be deleted'
 | |
|       end
 | |
|       delete ':id/labels/:name' do
 | |
|         delete_label(user_project)
 | |
|       end
 | |
| 
 | |
|       desc 'Promote a label to a group label' do
 | |
|         detail 'This feature was added in GitLab 12.4.'
 | |
|         success Entities::GroupLabel
 | |
|       end
 | |
|       params do
 | |
|         requires :name, type: String, desc: 'The name or id of the label to be promoted'
 | |
|       end
 | |
|       put ':id/labels/:name/promote' do
 | |
|         promote_label(user_project)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |