gitlab-org--gitlab-foss/app/controllers/projects/services_controller.rb

111 lines
3.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class Projects::ServicesController < Projects::ApplicationController
include ServiceParams
2012-11-19 19:34:05 +00:00
# Authorize
before_action :authorize_admin_project!
before_action :ensure_service_enabled
before_action :service
before_action :web_hook_logs, only: [:edit, :update]
before_action :set_deprecation_notice_for_prometheus_service, only: [:edit, :update]
before_action :redirect_deprecated_prometheus_service, only: [:update]
2012-11-19 19:34:05 +00:00
respond_to :html
2013-06-19 19:44:57 +00:00
layout "project_settings"
2012-11-19 19:34:05 +00:00
def edit
end
def update
@service.attributes = service_params[:service]
saved = @service.save(context: :manual_change)
respond_to do |format|
format.html do
if saved
redirect_to project_settings_integrations_path(@project),
notice: success_message
else
render 'edit'
end
end
format.json do
status = saved ? :ok : :unprocessable_entity
render json: serialize_as_json, status: status
end
2012-11-19 19:34:05 +00:00
end
end
def test
if @service.can_test?
render json: service_test_response, status: :ok
else
render json: {}, status: :not_found
end
end
private
def service_test_response
2018-07-02 10:43:06 +00:00
if @service.update(service_params[:service])
data = @service.test_data(project, current_user)
outcome = @service.test(data)
2016-07-12 21:19:47 +00:00
if outcome[:success]
{}
else
{ error: true, message: _('Test failed.'), service_response: outcome[:result].to_s, test_failed: true }
end
else
{ error: true, message: _('Validations failed.'), service_response: @service.errors.full_messages.join(','), test_failed: false }
end
rescue Gitlab::HTTP::BlockedUrlError => e
{ error: true, message: _('Test failed.'), service_response: e.message, test_failed: true }
2012-11-19 19:34:05 +00:00
end
2013-05-22 13:58:44 +00:00
def success_message
if @service.active?
_("%{service_title} activated.") % { service_title: @service.title }
else
_("%{service_title} settings saved, but not activated.") % { service_title: @service.title }
end
end
2013-05-22 13:58:44 +00:00
def service
@service ||= @project.find_or_initialize_service(params[:id])
2013-05-22 13:58:44 +00:00
end
def web_hook_logs
return unless @service.service_hook.present?
@web_hook_logs ||= @service.service_hook.web_hook_logs.recent.page(params[:page])
end
def ensure_service_enabled
render_404 unless service
end
def serialize_as_json
@service
.as_json(only: @service.json_fields)
.merge(errors: @service.errors.as_json)
end
def redirect_deprecated_prometheus_service
redirect_to edit_project_service_path(project, @service) if @service.is_a?(::PrometheusService) && Feature.enabled?(:settings_operations_prometheus_service, project)
end
def set_deprecation_notice_for_prometheus_service
return if !@service.is_a?(::PrometheusService) || !Feature.enabled?(:settings_operations_prometheus_service, project)
operations_link_start = "<a href=\"#{project_settings_operations_path(project)}\">"
message = s_('PrometheusService|You can now manage your Prometheus settings on the %{operations_link_start}Operations%{operations_link_end} page. Fields on this page has been deprecated.') % { operations_link_start: operations_link_start, operations_link_end: "</a>" }
flash.now[:alert] = message.html_safe
end
2012-11-19 19:34:05 +00:00
end