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

67 lines
1.6 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 create
@hook = @project.hooks.new(hook_params)
2012-01-03 22:42:14 +00:00
@hook.save
2017-01-18 21:40:16 +00:00
unless @hook.valid?
@hooks = @project.hooks.select(&:persisted?)
flash[:alert] = @hook.errors.full_messages.join.html_safe
2012-01-03 22:42:14 +00:00
end
2017-01-18 21:40:16 +00:00
redirect_to namespace_project_settings_integrations_path(@project.namespace, @project)
2012-01-03 22:42:14 +00:00
end
def test
if !@project.empty_repo?
status, message = TestHookService.new.execute(hook, current_user)
if status && status >= 200 && status < 400
2016-05-03 11:42:56 +00: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 22:42:14 +00:00
def destroy
hook.destroy
2012-01-03 22:42:14 +00:00
redirect_to namespace_project_settings_integrations_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
params.require(:hook).permit(
:build_events,
:pipeline_events,
:enable_ssl_verification,
:issues_events,
:confidential_issues_events,
:merge_requests_events,
:note_events,
:push_events,
:tag_push_events,
:token,
:url,
:wiki_page_events
)
end
2012-01-03 22:42:14 +00:00
end