67 lines
1.2 KiB
Ruby
67 lines
1.2 KiB
Ruby
class Admin::HooksController < Admin::ApplicationController
|
|
include HooksExecution
|
|
|
|
before_action :hook_logs, only: :edit
|
|
|
|
def index
|
|
@hooks = SystemHook.all
|
|
@hook = SystemHook.new
|
|
end
|
|
|
|
def create
|
|
@hook = SystemHook.new(hook_params)
|
|
|
|
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_attributes(hook_params)
|
|
flash[:notice] = 'System hook was successfully updated.'
|
|
redirect_to admin_hooks_path
|
|
else
|
|
render 'edit'
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
hook.destroy
|
|
|
|
redirect_to admin_hooks_path, status: 302
|
|
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 ||=
|
|
Kaminari.paginate_array(hook.web_hook_logs.order(created_at: :desc)).page(params[:page])
|
|
end
|
|
|
|
def hook_params
|
|
params.require(:hook).permit(
|
|
:enable_ssl_verification,
|
|
:token,
|
|
:url,
|
|
*SystemHook.triggers.values
|
|
)
|
|
end
|
|
end
|