2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2013-03-20 17:46:30 -04:00
|
|
|
class SystemHooks < Grape::API
|
2017-01-16 23:45:07 -05:00
|
|
|
include PaginationParams
|
|
|
|
|
2015-02-03 00:22:57 -05:00
|
|
|
before do
|
2013-03-20 17:46:30 -04:00
|
|
|
authenticate!
|
|
|
|
authenticated_as_admin!
|
2015-02-03 00:22:57 -05:00
|
|
|
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
|
2017-01-16 23:45:07 -05:00
|
|
|
params do
|
|
|
|
use :pagination
|
|
|
|
end
|
2013-03-20 17:46:30 -04:00
|
|
|
get do
|
2017-01-16 23:45:07 -05:00
|
|
|
present paginate(SystemHook.all), 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
|
2016-10-18 14:10:08 -04:00
|
|
|
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 :enable_ssl_verification, type: Boolean, desc: "Do SSL verification when triggering the hook"
|
2016-10-13 11:52:21 -04:00
|
|
|
end
|
2013-03-20 17:46:30 -04:00
|
|
|
post do
|
2016-11-14 08:44:27 -05:00
|
|
|
hook = SystemHook.new(declared_params(include_missing: false))
|
2016-10-13 11:52:21 -04:00
|
|
|
|
|
|
|
if hook.save
|
|
|
|
present hook, with: Entities::Hook
|
2013-03-20 17:46:30 -04:00
|
|
|
else
|
2016-11-08 04:05:19 -05:00
|
|
|
render_validation_error!(hook)
|
2013-03-20 17:46:30 -04:00
|
|
|
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
|
|
|
|
|
2017-02-20 13:18:12 -05:00
|
|
|
hook.destroy
|
2013-03-20 17:46:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|