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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
2.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
class SystemHooks < ::API::Base
include PaginationParams
feature_category :integrations
before do
2013-03-20 21:46:30 +00:00
authenticate!
authenticated_as_admin!
end
2013-03-20 21:46:30 +00:00
helpers ::API::Helpers::WebHooksHelpers
helpers do
def hook_scope
SystemHook
end
params :hook_parameters do
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 :repository_update_events, type: Boolean, desc: "Trigger hook on repository update events"
optional :enable_ssl_verification, type: Boolean, desc: "Do SSL verification when triggering the hook"
use :url_variables
end
end
2013-03-20 21:46:30 +00:00
resource :hooks do
mount ::API::Hooks::UrlVariables
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
desc 'Get a hook' do
success Entities::Hook
end
params do
requires :hook_id, type: Integer, desc: 'The ID of the system hook'
end
get ":hook_id" do
present find_hook, with: Entities::Hook
end
2016-10-13 15:52:21 +00:00
desc 'Create a new system hook' do
success Entities::Hook
end
params do
use :requires_url
use :hook_parameters
2016-10-13 15:52:21 +00:00
end
2013-03-20 21:46:30 +00:00
post do
hook_params = create_hook_params
hook = SystemHook.new(hook_params)
2016-10-13 15:52:21 +00:00
save_hook(hook, Entities::Hook)
2013-03-20 21:46:30 +00:00
end
desc 'Update an existing system hook' do
success Entities::Hook
end
2016-10-13 15:52:21 +00:00
params do
requires :hook_id, type: Integer, desc: "The ID of the hook to update"
use :optional_url
use :hook_parameters
2016-10-13 15:52:21 +00:00
end
put ":hook_id" do
update_hook(entity: Entities::Hook)
end
mount ::API::Hooks::Test, with: {
data: {
2013-03-20 21:46:30 +00:00
event_name: "project_create",
name: "Ruby",
path: "ruby",
project_id: 1,
owner_name: "Someone",
owner_email: "example@gitlabhq.com"
},
kind: 'system_hooks'
}
2013-03-20 21:46:30 +00:00
2016-10-13 15:52:21 +00:00
desc 'Delete a hook' do
success Entities::Hook
end
params do
requires :hook_id, type: Integer, desc: 'The ID of the system hook'
2016-10-13 15:52:21 +00:00
end
delete ":hook_id" do
hook = find_hook
2016-10-13 17:32:10 +00:00
destroy_conditionally!(hook) do
WebHooks::DestroyService.new(current_user).execute(hook)
end
2013-03-20 21:46:30 +00:00
end
end
end
end