71 lines
1.3 KiB
Ruby
71 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::HooksController < Admin::ApplicationController
|
|
include ::Integrations::HooksExecution
|
|
|
|
before_action :hook_logs, only: :edit
|
|
|
|
feature_category :integrations
|
|
urgency :low, [:test]
|
|
|
|
def index
|
|
@hooks = SystemHook.all.load
|
|
@hook = SystemHook.new
|
|
end
|
|
|
|
def create
|
|
@hook = SystemHook.new(hook_params.to_h)
|
|
|
|
if @hook.save
|
|
redirect_to admin_hooks_path, notice: _('Hook was successfully created.')
|
|
else
|
|
@hooks = SystemHook.all
|
|
render :index
|
|
end
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
if hook.update(hook_params)
|
|
flash[:notice] = _('System hook was successfully updated.')
|
|
redirect_to admin_hooks_path
|
|
else
|
|
render 'edit'
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
destroy_hook(hook)
|
|
|
|
redirect_to admin_hooks_path, status: :found
|
|
end
|
|
|
|
def test
|
|
result = TestHooks::SystemService.new(hook, current_user, params[:trigger]).execute
|
|
|
|
set_hook_execution_notice(result)
|
|
|
|
redirect_back_or_default
|
|
end
|
|
|
|
private
|
|
|
|
def hook
|
|
@hook ||= SystemHook.find(params[:id])
|
|
end
|
|
|
|
def hook_logs
|
|
@hook_logs ||= hook.web_hook_logs.recent.page(params[:page])
|
|
end
|
|
|
|
def hook_params
|
|
params.require(:hook).permit(
|
|
:enable_ssl_verification,
|
|
:token,
|
|
:url,
|
|
*SystemHook.triggers.values
|
|
)
|
|
end
|
|
end
|