debian-mirror-gitlab/app/controllers/projects/hooks_controller.rb

80 lines
1.9 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Projects::HooksController < Projects::ApplicationController
# Authorize
2015-09-11 14:41:01 +05:30
before_action :authorize_admin_project!
2017-08-17 22:00:37 +05:30
before_action :hook, only: :edit
2014-09-02 18:07:02 +05:30
respond_to :html
layout "project_settings"
def create
@hook = @project.hooks.new(hook_params)
@hook.save
2017-08-17 22:00:37 +05:30
unless @hook.valid?
2014-09-02 18:07:02 +05:30
@hooks = @project.hooks.select(&:persisted?)
2017-08-17 22:00:37 +05:30
flash[:alert] = @hook.errors.full_messages.join.html_safe
end
redirect_to namespace_project_settings_integrations_path(@project.namespace, @project)
end
def edit
end
def update
if hook.update_attributes(hook_params)
flash[:notice] = 'Hook was successfully updated.'
redirect_to namespace_project_settings_integrations_path(@project.namespace, @project)
else
render 'edit'
2014-09-02 18:07:02 +05:30
end
end
def test
if !@project.empty_repo?
2015-12-23 02:04:40 +05:30
status, message = TestHookService.new.execute(hook, current_user)
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
if status && status >= 200 && status < 400
flash[:notice] = "Hook executed successfully: HTTP #{status}"
elsif status
flash[:alert] = "Hook executed successfully but returned HTTP #{status} #{message}"
2014-09-02 18:07:02 +05:30
else
2015-12-23 02:04:40 +05:30
flash[:alert] = "Hook execution failed: #{message}"
2014-09-02 18:07:02 +05:30
end
else
flash[:alert] = 'Hook execution failed. Ensure the project has commits.'
end
2015-10-24 18:46:33 +05:30
redirect_back_or_default(default: { action: 'index' })
2014-09-02 18:07:02 +05:30
end
def destroy
hook.destroy
2017-08-17 22:00:37 +05:30
redirect_to namespace_project_settings_integrations_path(@project.namespace, @project)
2014-09-02 18:07:02 +05:30
end
private
def hook
@hook ||= @project.hooks.find(params[:id])
end
def hook_params
2016-06-02 11:05:42 +05:30
params.require(:hook).permit(
2017-08-17 22:00:37 +05:30
:job_events,
2016-09-13 17:45:13 +05:30
:pipeline_events,
2016-06-02 11:05:42 +05:30
:enable_ssl_verification,
:issues_events,
2016-09-29 09:46:39 +05:30
:confidential_issues_events,
2016-06-02 11:05:42 +05:30
:merge_requests_events,
:note_events,
:push_events,
:tag_push_events,
:token,
:url,
:wiki_page_events
2016-06-02 11:05:42 +05:30
)
2014-09-02 18:07:02 +05:30
end
end