Merge pull request #3156 from m4tthumphrey/api-system-hooks
Added methods to manage system hooks from API
This commit is contained in:
commit
65d78253cb
4 changed files with 177 additions and 0 deletions
|
@ -20,5 +20,6 @@ module Gitlab
|
|||
mount MergeRequests
|
||||
mount Notes
|
||||
mount Internal
|
||||
mount SystemHooks
|
||||
end
|
||||
end
|
||||
|
|
60
lib/api/system_hooks.rb
Normal file
60
lib/api/system_hooks.rb
Normal file
|
@ -0,0 +1,60 @@
|
|||
module Gitlab
|
||||
# Hooks API
|
||||
class SystemHooks < Grape::API
|
||||
before { authenticated_as_admin! }
|
||||
|
||||
resource :hooks do
|
||||
# Get the list of system hooks
|
||||
#
|
||||
# Example Request:
|
||||
# GET /hooks
|
||||
get do
|
||||
@hooks = SystemHook.all
|
||||
present @hooks, with: Entities::Hook
|
||||
end
|
||||
|
||||
# Create new system hook
|
||||
#
|
||||
# Parameters:
|
||||
# url (required) - url for system hook
|
||||
# Example Request
|
||||
# POST /hooks
|
||||
post do
|
||||
attrs = attributes_for_keys [:url]
|
||||
@hook = SystemHook.new attrs
|
||||
if @hook.save
|
||||
present @hook, with: Entities::Hook
|
||||
else
|
||||
not_found!
|
||||
end
|
||||
end
|
||||
|
||||
# Test a hook
|
||||
#
|
||||
# Example Request
|
||||
# GET /hooks/:id
|
||||
get ":id" do
|
||||
@hook = SystemHook.find(params[:id])
|
||||
data = {
|
||||
event_name: "project_create",
|
||||
name: "Ruby",
|
||||
path: "ruby",
|
||||
project_id: 1,
|
||||
owner_name: "Someone",
|
||||
owner_email: "example@gitlabhq.com"
|
||||
}
|
||||
@hook.execute(data)
|
||||
data
|
||||
end
|
||||
|
||||
# Delete a hook
|
||||
#
|
||||
# Example Request:
|
||||
# DELETE /hooks/:id
|
||||
delete ":id" do
|
||||
@hook = SystemHook.find(params[:id])
|
||||
@hook.destroy
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue