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

71 lines
1.5 KiB
Ruby
Raw Normal View History

class Projects::HooksController < Projects::ApplicationController
2012-01-03 17:42:14 -05:00
# Authorize
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
@hook = ProjectHook.new
2012-01-03 17:42:14 -05:00
end
def create
@hook = @project.hooks.new(hook_params)
2012-01-03 17:42:14 -05:00
@hook.save
if @hook.valid?
redirect_to namespace_project_hooks_path(@project.namespace, @project)
2012-01-03 17:42:14 -05:00
else
@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
def test
if !@project.empty_repo?
status, message = TestHookService.new.execute(hook, current_user)
if status && status >= 200 && status < 400
2016-05-03 07:42:56 -04:00
flash[:notice] = "Hook executed successfully: HTTP #{status}"
elsif status
flash[:alert] = "Hook executed successfully but returned HTTP #{status} #{message}"
else
flash[:alert] = "Hook execution failed: #{message}"
end
else
flash[:alert] = 'Hook execution failed. Ensure the project has commits.'
end
redirect_back_or_default(default: { action: 'index' })
end
2012-01-03 17:42:14 -05:00
def destroy
hook.destroy
2012-01-03 17:42:14 -05:00
redirect_to namespace_project_hooks_path(@project.namespace, @project)
2012-01-03 17:42:14 -05:00
end
private
def hook
@hook ||= @project.hooks.find(params[:id])
end
def hook_params
params.require(:hook).permit(
:build_events,
:enable_ssl_verification,
:issues_events,
:merge_requests_events,
:note_events,
:push_events,
:tag_push_events,
:token,
:url,
:wiki_page_events
)
end
2012-01-03 17:42:14 -05:00
end