2013-06-23 12:47:22 -04:00
|
|
|
class Projects::HooksController < Projects::ApplicationController
|
2012-01-03 17:42:14 -05:00
|
|
|
# Authorize
|
2013-09-25 07:05:35 -04:00
|
|
|
before_filter :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?
|
2014-07-29 05:49:46 -04:00
|
|
|
status = TestHookService.new.execute(hook, current_user)
|
2014-12-04 08:07:01 -05:00
|
|
|
|
2014-07-29 05:49:46 -04:00
|
|
|
if status
|
|
|
|
flash[:notice] = 'Hook successfully executed.'
|
|
|
|
else
|
|
|
|
flash[:alert] = 'Hook execution failed. '\
|
|
|
|
'Ensure hook URL is correct and service is up.'
|
|
|
|
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
|
|
|
|
|
|
|
redirect_to :back
|
|
|
|
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
|
2014-06-26 11:51:11 -04:00
|
|
|
params.require(:hook).permit(:url, :push_events, :issues_events, :merge_requests_events, :tag_push_events)
|
2014-06-26 11:45:33 -04:00
|
|
|
end
|
2012-01-03 17:42:14 -05:00
|
|
|
end
|