debian-mirror-gitlab/lib/api/applications.rb

53 lines
1.5 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module API
# External applications API
2021-01-03 14:25:43 +05:30
class Applications < ::API::Base
2018-03-17 18:26:18 +05:30
before { authenticated_as_admin! }
2021-01-29 00:20:46 +05:30
feature_category :authentication_and_authorization
2018-03-17 18:26:18 +05:30
resource :applications do
desc 'Create a new application' do
detail 'This feature was introduced in GitLab 10.5'
success Entities::ApplicationWithSecret
end
params do
requires :name, type: String, desc: 'Application name'
requires :redirect_uri, type: String, desc: 'Application redirect URI'
2021-10-29 20:43:33 +05:30
requires :scopes, type: String, desc: 'Application scopes', allow_blank: false
2020-03-13 15:44:24 +05:30
optional :confidential, type: Boolean, default: true,
desc: 'Application will be used where the client secret is confidential'
2018-03-17 18:26:18 +05:30
end
post do
application = Doorkeeper::Application.new(declared_params)
if application.save
present application, with: Entities::ApplicationWithSecret
else
render_validation_error! application
end
end
2018-12-13 13:39:08 +05:30
desc 'Get applications' do
success Entities::Application
end
get do
applications = ApplicationsFinder.new.execute
present applications, with: Entities::Application
end
desc 'Delete an application'
delete ':id' do
application = ApplicationsFinder.new(params).execute
2021-04-29 21:17:54 +05:30
break not_found!('Application') unless application
2018-12-13 13:39:08 +05:30
application.destroy
2020-03-13 15:44:24 +05:30
no_content!
2018-12-13 13:39:08 +05:30
end
2018-03-17 18:26:18 +05:30
end
end
end