gitlab-org--gitlab-foss/app/controllers/admin/hooks_controller.rb

81 lines
1.5 KiB
Ruby
Raw Normal View History

class Admin::HooksController < Admin::ApplicationController
include HooksExecution
before_action :hook_logs, only: :edit
2017-04-20 08:31:37 +00:00
2012-07-12 19:10:34 +00:00
def index
@hooks = SystemHook.all
@hook = SystemHook.new
end
def create
@hook = SystemHook.new(hook_params)
2012-07-12 19:10:34 +00:00
2012-07-15 12:29:06 +00:00
if @hook.save
redirect_to admin_hooks_path, notice: 'Hook was successfully created.'
else
@hooks = SystemHook.all
render :index
2012-07-12 19:10:34 +00:00
end
end
2017-04-20 08:31:37 +00:00
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
2012-07-12 19:10:34 +00:00
def destroy
2017-04-20 08:31:37 +00:00
hook.destroy
2012-07-12 19:10:34 +00:00
redirect_to admin_hooks_path, status: 302
2012-07-12 19:10:34 +00:00
end
def test
status, message = hook.execute(sample_hook_data, 'system_hooks')
set_hook_execution_notice(status, message)
2012-07-12 19:10:34 +00:00
redirect_back_or_default
2012-07-12 19:10:34 +00:00
end
2017-04-20 08:31:37 +00:00
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,
:push_events,
:tag_push_events,
:repository_update_events,
:token,
:url
)
end
def sample_hook_data
{
event_name: "project_create",
name: "Ruby",
path: "ruby",
project_id: 1,
owner_name: "Someone",
owner_email: "example@gitlabhq.com"
}
end
2012-07-12 19:10:34 +00:00
end