2013-01-20 06:20:50 -05:00
|
|
|
class Admin::HooksController < Admin::ApplicationController
|
2017-04-27 06:08:57 -04:00
|
|
|
include HooksExecution
|
|
|
|
|
|
|
|
before_action :hook_logs, only: :edit
|
2017-04-20 04:31:37 -04:00
|
|
|
|
2012-07-12 15:10:34 -04:00
|
|
|
def index
|
|
|
|
@hooks = SystemHook.all
|
|
|
|
@hook = SystemHook.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2018-06-20 02:25:29 -04:00
|
|
|
@hook = SystemHook.new(hook_params.to_h)
|
2012-07-12 15:10:34 -04:00
|
|
|
|
2012-07-15 08:29:06 -04:00
|
|
|
if @hook.save
|
|
|
|
redirect_to admin_hooks_path, notice: 'Hook was successfully created.'
|
|
|
|
else
|
|
|
|
@hooks = SystemHook.all
|
2012-09-16 07:44:54 -04:00
|
|
|
render :index
|
2012-07-12 15:10:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2018-07-02 06:43:06 -04:00
|
|
|
if hook.update(hook_params)
|
2017-04-20 04:31:37 -04:00
|
|
|
flash[:notice] = 'System hook was successfully updated.'
|
|
|
|
redirect_to admin_hooks_path
|
|
|
|
else
|
|
|
|
render 'edit'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-12 15:10:34 -04:00
|
|
|
def destroy
|
2017-04-20 04:31:37 -04:00
|
|
|
hook.destroy
|
2012-07-12 15:10:34 -04:00
|
|
|
|
2018-07-02 06:43:06 -04:00
|
|
|
redirect_to admin_hooks_path, status: :found
|
2012-07-12 15:10:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2017-07-20 11:12:06 -04:00
|
|
|
result = TestHooks::SystemService.new(hook, current_user, params[:trigger]).execute
|
2017-04-27 06:08:57 -04:00
|
|
|
|
2017-07-20 11:12:06 -04:00
|
|
|
set_hook_execution_notice(result)
|
2012-07-12 15:10:34 -04:00
|
|
|
|
2015-10-20 03:28:28 -04:00
|
|
|
redirect_back_or_default
|
2012-07-12 15:10:34 -04:00
|
|
|
end
|
2014-06-26 11:51:11 -04:00
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def hook
|
|
|
|
@hook ||= SystemHook.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2017-04-27 06:08:57 -04:00
|
|
|
def hook_logs
|
2018-06-28 09:34:31 -04:00
|
|
|
@hook_logs ||= hook.web_hook_logs.recent.page(params[:page])
|
2017-04-27 06:08:57 -04:00
|
|
|
end
|
|
|
|
|
2014-06-26 11:51:11 -04:00
|
|
|
def hook_params
|
2016-04-30 04:34:31 -04:00
|
|
|
params.require(:hook).permit(
|
|
|
|
:enable_ssl_verification,
|
|
|
|
:token,
|
2017-12-18 05:14:51 -05:00
|
|
|
:url,
|
|
|
|
*SystemHook.triggers.values
|
2016-04-30 04:34:31 -04:00
|
|
|
)
|
2014-06-26 11:51:11 -04:00
|
|
|
end
|
2012-07-12 15:10:34 -04:00
|
|
|
end
|