gitlab-org--gitlab-foss/lib/api/labels.rb

86 lines
3.0 KiB
Ruby
Raw Normal View History

2014-08-12 12:16:25 +00:00
module API
# Labels API
class Labels < Grape::API
before { authenticate! }
2016-10-24 12:05:33 +00:00
params do
requires :id, type: String, desc: 'The ID of a project'
end
2014-08-12 12:16:25 +00:00
resource :projects do
2016-10-24 12:05:33 +00:00
desc 'Get all labels of the project' do
success Entities::Label
end
2014-08-12 12:16:25 +00:00
get ':id/labels' do
present available_labels, with: Entities::Label, current_user: current_user
2014-08-12 12:16:25 +00:00
end
2016-10-24 12:05:33 +00:00
desc 'Create a new label' do
success Entities::Label
end
params do
requires :name, type: String, desc: 'The name of the label to be created'
requires :color, type: String, desc: "The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB)"
optional :description, type: String, desc: 'The description of label to be created'
end
2014-08-12 12:16:25 +00:00
post ':id/labels' do
authorize! :admin_label, user_project
2014-08-12 12:16:25 +00:00
2016-10-24 12:05:33 +00:00
label = user_project.find_label(params[:name])
conflict!('Label already exists') if label
2014-08-12 12:16:25 +00:00
2016-10-24 12:05:33 +00:00
label = user_project.labels.create(declared(params, include_parent_namespaces: false).to_h)
2014-08-12 12:16:25 +00:00
if label.valid?
present label, with: Entities::Label, current_user: current_user
2014-08-12 12:16:25 +00:00
else
render_validation_error!(label)
2014-08-12 12:16:25 +00:00
end
end
2016-10-24 12:05:33 +00:00
desc 'Delete an existing label' do
success Entities::Label
end
params do
requires :name, type: String, desc: 'The name of the label to be deleted'
end
2014-08-12 12:16:25 +00:00
delete ':id/labels' do
authorize! :admin_label, user_project
2014-08-12 12:16:25 +00:00
label = user_project.find_label(params[:name])
not_found!('Label') unless label
2014-08-12 12:16:25 +00:00
2016-10-24 12:05:33 +00:00
present label.destroy, with: Entities::Label, current_user: current_user
2014-08-12 12:16:25 +00:00
end
2014-08-13 10:23:51 +00:00
2016-10-24 12:05:33 +00:00
desc 'Update an existing label. At least one optional parameter is required.' do
success Entities::Label
end
params do
requires :name, type: String, desc: 'The name of the label to be updated'
optional :new_name, type: String, desc: 'The new name of the label'
optional :color, type: String, desc: "The new color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB)"
optional :description, type: String, desc: 'The new description of label'
at_least_one_of :new_name, :color, :description
end
2014-08-13 10:23:51 +00:00
put ':id/labels' do
authorize! :admin_label, user_project
2014-08-13 10:23:51 +00:00
label = user_project.find_label(params[:name])
not_found!('Label not found') unless label
2014-08-13 10:23:51 +00:00
2016-10-24 12:05:33 +00:00
update_params = declared(params,
include_parent_namespaces: false,
include_missing: false).to_h
2014-08-13 10:23:51 +00:00
# Rename new name to the actual label attribute name
2016-10-24 12:05:33 +00:00
update_params['name'] = update_params.delete('new_name') if update_params.key?('new_name')
2014-08-13 10:23:51 +00:00
2016-10-24 12:05:33 +00:00
if label.update(update_params)
present label, with: Entities::Label, current_user: current_user
2014-08-13 10:23:51 +00:00
else
render_validation_error!(label)
2014-08-13 10:23:51 +00:00
end
end
2014-08-12 12:16:25 +00:00
end
end
end