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

67 lines
1.5 KiB
Ruby
Raw Normal View History

module API
2013-03-20 17:46:30 -04:00
# Hooks API
class SystemHooks < Grape::API
before do
2013-03-20 17:46:30 -04:00
authenticate!
authenticated_as_admin!
end
2013-03-20 17:46:30 -04:00
resource :hooks do
2016-10-13 11:52:21 -04:00
desc 'Get the list of system hooks' do
success Entities::Hook
end
2013-03-20 17:46:30 -04:00
get do
2016-10-13 11:52:21 -04:00
hooks = SystemHook.all
present hooks, with: Entities::Hook
2013-03-20 17:46:30 -04:00
end
2016-10-13 11:52:21 -04:00
desc 'Create a new system hook' do
success Entities::Hook
end
params do
requires :url, type: String, desc: 'The URL for the system hook'
end
2013-03-20 17:46:30 -04:00
post do
2016-10-13 11:52:21 -04:00
hook = SystemHook.new declared(params).to_h
if hook.save
present hook, with: Entities::Hook
2013-03-20 17:46:30 -04:00
else
not_found!
end
end
2016-10-13 11:52:21 -04:00
desc 'Test a hook'
params do
requires :id, type: Integer, desc: 'The ID of the system hook'
end
2013-03-20 17:46:30 -04:00
get ":id" do
2016-10-13 11:52:21 -04:00
hook = SystemHook.find(params[:id])
2013-03-20 17:46:30 -04:00
data = {
event_name: "project_create",
name: "Ruby",
path: "ruby",
project_id: 1,
owner_name: "Someone",
owner_email: "example@gitlabhq.com"
}
2016-10-13 11:52:21 -04:00
hook.execute(data, 'system_hooks')
2013-03-20 17:46:30 -04:00
data
end
2016-10-13 11:52:21 -04:00
desc 'Delete a hook' do
success Entities::Hook
end
params do
requires :id, type: Integer, desc: 'The ID of the system hook'
end
2013-03-20 17:46:30 -04:00
delete ":id" do
2016-10-13 13:32:10 -04:00
hook = SystemHook.find_by(id: params[:id])
not_found!('System hook') unless hook
present hook.destroy, with: Entities::Hook
2013-03-20 17:46:30 -04:00
end
end
end
end