gitlab-org--gitlab-foss/app/controllers/projects/hooks_controller.rb

60 lines
1.3 KiB
Ruby
Raw Normal View History

class Projects::HooksController < Projects::ApplicationController
2012-01-03 22:42:14 +00:00
# Authorize
before_action :authorize_admin_project!
2012-01-03 22:42:14 +00:00
respond_to :html
2013-06-19 19:44:57 +00:00
layout "project_settings"
2012-01-03 22:42:14 +00:00
def index
2013-12-14 13:43:48 +00:00
@hooks = @project.hooks
@hook = ProjectHook.new
2012-01-03 22:42:14 +00:00
end
def create
@hook = @project.hooks.new(hook_params)
2012-01-03 22:42:14 +00:00
@hook.save
if @hook.valid?
redirect_to namespace_project_hooks_path(@project.namespace, @project)
2012-01-03 22:42:14 +00:00
else
@hooks = @project.hooks.select(&:persisted?)
2012-04-26 17:43:12 +00:00
render :index
2012-01-03 22:42:14 +00:00
end
end
def test
if !@project.empty_repo?
status = TestHookService.new.execute(hook, current_user)
if status
flash[:notice] = 'Hook successfully executed.'
else
flash[:alert] = 'Hook execution failed. '\
'Ensure hook URL is correct and service is up.'
end
else
flash[:alert] = 'Hook execution failed. Ensure the project has commits.'
end
redirect_to :back
end
2012-01-03 22:42:14 +00:00
def destroy
hook.destroy
2012-01-03 22:42:14 +00:00
redirect_to namespace_project_hooks_path(@project.namespace, @project)
2012-01-03 22:42:14 +00:00
end
private
def hook
@hook ||= @project.hooks.find(params[:id])
end
def hook_params
2015-08-11 06:59:40 +00:00
params.require(:hook).permit(:url, :push_events, :issues_events,
:merge_requests_events, :tag_push_events, :note_events, :enable_ssl_verification)
end
2012-01-03 22:42:14 +00:00
end