2013-06-23 12:47:22 -04:00
|
|
|
class Projects::HooksController < Projects::ApplicationController
|
2012-01-03 17:42:14 -05:00
|
|
|
# Authorize
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_project!
|
2012-01-03 17:42:14 -05:00
|
|
|
|
|
|
|
respond_to :html
|
|
|
|
|
2013-06-19 15:44:57 -04:00
|
|
|
layout "project_settings"
|
|
|
|
|
2012-01-03 17:42:14 -05:00
|
|
|
def index
|
2013-12-14 08:43:48 -05:00
|
|
|
@hooks = @project.hooks
|
2012-07-12 08:36:33 -04:00
|
|
|
@hook = ProjectHook.new
|
2012-01-03 17:42:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-06-26 11:45:33 -04:00
|
|
|
@hook = @project.hooks.new(hook_params)
|
2012-01-03 17:42:14 -05:00
|
|
|
@hook.save
|
|
|
|
|
|
|
|
if @hook.valid?
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_hooks_path(@project.namespace, @project)
|
2012-01-03 17:42:14 -05:00
|
|
|
else
|
2014-04-06 11:42:24 -04:00
|
|
|
@hooks = @project.hooks.select(&:persisted?)
|
2012-04-26 13:43:12 -04:00
|
|
|
render :index
|
2012-01-03 17:42:14 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-08 05:20:24 -05:00
|
|
|
def test
|
2014-07-27 16:26:23 -04:00
|
|
|
if !@project.empty_repo?
|
2015-12-01 19:15:01 -05:00
|
|
|
status, message = TestHookService.new.execute(hook, current_user)
|
2014-12-04 08:07:01 -05:00
|
|
|
|
2016-05-03 07:40:59 -04:00
|
|
|
if status && status >= 200 && status < 400
|
2016-05-03 07:42:56 -04:00
|
|
|
flash[:notice] = "Hook executed successfully: HTTP #{status}"
|
2016-05-03 07:40:59 -04:00
|
|
|
elsif status
|
|
|
|
flash[:alert] = "Hook executed successfully but returned HTTP #{status} #{message}"
|
2014-07-29 05:49:46 -04:00
|
|
|
else
|
2015-12-01 19:15:01 -05:00
|
|
|
flash[:alert] = "Hook execution failed: #{message}"
|
2014-07-29 05:49:46 -04:00
|
|
|
end
|
2014-07-27 16:26:23 -04:00
|
|
|
else
|
|
|
|
flash[:alert] = 'Hook execution failed. Ensure the project has commits.'
|
|
|
|
end
|
2012-01-08 05:20:24 -05:00
|
|
|
|
2015-10-20 03:28:28 -04:00
|
|
|
redirect_back_or_default(default: { action: 'index' })
|
2012-01-08 05:20:24 -05:00
|
|
|
end
|
|
|
|
|
2012-01-03 17:42:14 -05:00
|
|
|
def destroy
|
2014-01-15 07:38:50 -05:00
|
|
|
hook.destroy
|
2012-01-03 17:42:14 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
redirect_to namespace_project_hooks_path(@project.namespace, @project)
|
2012-01-03 17:42:14 -05:00
|
|
|
end
|
2014-01-15 07:38:50 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def hook
|
|
|
|
@hook ||= @project.hooks.find(params[:id])
|
|
|
|
end
|
2014-06-26 11:45:33 -04:00
|
|
|
|
|
|
|
def hook_params
|
2016-04-30 04:34:31 -04:00
|
|
|
params.require(:hook).permit(
|
|
|
|
:build_events,
|
2016-08-02 06:06:31 -04:00
|
|
|
:pipeline_events,
|
2016-04-30 04:34:31 -04:00
|
|
|
:enable_ssl_verification,
|
|
|
|
:issues_events,
|
2016-08-30 16:56:26 -04:00
|
|
|
:confidential_issues_events,
|
2016-04-30 04:34:31 -04:00
|
|
|
:merge_requests_events,
|
|
|
|
:note_events,
|
|
|
|
:push_events,
|
|
|
|
:tag_push_events,
|
|
|
|
:token,
|
2016-05-12 23:25:33 -04:00
|
|
|
:url,
|
|
|
|
:wiki_page_events
|
2016-04-30 04:34:31 -04:00
|
|
|
)
|
2014-06-26 11:45:33 -04:00
|
|
|
end
|
2012-01-03 17:42:14 -05:00
|
|
|
end
|