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

77 lines
2.1 KiB
Ruby
Raw Normal View History

module API
2013-03-20 21:46:30 +00:00
class SystemHooks < Grape::API
include PaginationParams
before do
2013-03-20 21:46:30 +00:00
authenticate!
authenticated_as_admin!
end
2013-03-20 21:46:30 +00:00
resource :hooks do
2016-10-13 15:52:21 +00:00
desc 'Get the list of system hooks' do
success Entities::Hook
end
params do
use :pagination
end
2013-03-20 21:46:30 +00:00
get do
present paginate(SystemHook.all), with: Entities::Hook
2013-03-20 21:46:30 +00:00
end
2016-10-13 15:52:21 +00:00
desc 'Create a new system hook' do
success Entities::Hook
end
params do
requires :url, type: String, desc: "The URL to send the request to"
optional :token, type: String, desc: 'The token used to validate payloads'
optional :push_events, type: Boolean, desc: "Trigger hook on push events"
optional :tag_push_events, type: Boolean, desc: "Trigger hook on tag push events"
optional :merge_requests_events, type: Boolean, desc: "Trigger hook on tag push events"
optional :enable_ssl_verification, type: Boolean, desc: "Do SSL verification when triggering the hook"
2016-10-13 15:52:21 +00:00
end
2013-03-20 21:46:30 +00:00
post do
2016-11-14 13:44:27 +00:00
hook = SystemHook.new(declared_params(include_missing: false))
2016-10-13 15:52:21 +00:00
if hook.save
present hook, with: Entities::Hook
2013-03-20 21:46:30 +00:00
else
render_validation_error!(hook)
2013-03-20 21:46:30 +00:00
end
end
2016-10-13 15:52:21 +00:00
desc 'Test a hook'
params do
requires :id, type: Integer, desc: 'The ID of the system hook'
end
2013-03-20 21:46:30 +00:00
get ":id" do
2016-10-13 15:52:21 +00:00
hook = SystemHook.find(params[:id])
2013-03-20 21:46:30 +00:00
data = {
event_name: "project_create",
name: "Ruby",
path: "ruby",
project_id: 1,
owner_name: "Someone",
owner_email: "example@gitlabhq.com"
}
2016-10-13 15:52:21 +00:00
hook.execute(data, 'system_hooks')
2013-03-20 21:46:30 +00:00
data
end
2016-10-13 15:52:21 +00:00
desc 'Delete a hook' do
success Entities::Hook
end
params do
requires :id, type: Integer, desc: 'The ID of the system hook'
end
# rubocop: disable CodeReuse/ActiveRecord
2013-03-20 21:46:30 +00:00
delete ":id" do
2016-10-13 17:32:10 +00:00
hook = SystemHook.find_by(id: params[:id])
not_found!('System hook') unless hook
2017-03-02 12:14:13 +00:00
destroy_conditionally!(hook)
2013-03-20 21:46:30 +00:00
end
# rubocop: enable CodeReuse/ActiveRecord
2013-03-20 21:46:30 +00:00
end
end
end