80 lines
1.7 KiB
Ruby
80 lines
1.7 KiB
Ruby
class Projects::HooksController < Projects::ApplicationController
|
|
include HooksExecution
|
|
|
|
# Authorize
|
|
before_action :authorize_admin_project!
|
|
before_action :hook_logs, only: :edit
|
|
|
|
respond_to :html
|
|
|
|
layout "project_settings"
|
|
|
|
def index
|
|
redirect_to project_settings_integrations_path(@project)
|
|
end
|
|
|
|
def create
|
|
@hook = @project.hooks.new(hook_params)
|
|
@hook.save
|
|
|
|
unless @hook.valid?
|
|
@hooks = @project.hooks.select(&:persisted?)
|
|
flash[:alert] = @hook.errors.full_messages.join.html_safe
|
|
end
|
|
redirect_to project_settings_integrations_path(@project)
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
if hook.update_attributes(hook_params)
|
|
flash[:notice] = 'Hook was successfully updated.'
|
|
redirect_to project_settings_integrations_path(@project)
|
|
else
|
|
render 'edit'
|
|
end
|
|
end
|
|
|
|
def test
|
|
result = TestHooks::ProjectService.new(hook, current_user, params[:trigger]).execute
|
|
|
|
set_hook_execution_notice(result)
|
|
|
|
redirect_back_or_default(default: { action: 'index' })
|
|
end
|
|
|
|
def destroy
|
|
hook.destroy
|
|
|
|
redirect_to project_settings_integrations_path(@project), status: 302
|
|
end
|
|
|
|
private
|
|
|
|
def hook
|
|
@hook ||= @project.hooks.find(params[:id])
|
|
end
|
|
|
|
def hook_logs
|
|
@hook_logs ||=
|
|
Kaminari.paginate_array(hook.web_hook_logs.order(created_at: :desc)).page(params[:page])
|
|
end
|
|
|
|
def hook_params
|
|
params.require(:hook).permit(
|
|
:job_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
|
|
end
|