2018-09-25 23:45:43 -04:00
# frozen_string_literal: true
2013-06-23 12:47:22 -04:00
class Projects :: ServicesController < Projects :: ApplicationController
2016-07-12 16:00:49 -04:00
include ServiceParams
2015-10-20 03:28:28 -04:00
2012-11-19 14:34:05 -05:00
# Authorize
2015-04-16 08:03:37 -04:00
before_action :authorize_admin_project!
2018-02-18 18:47:37 -05:00
before_action :ensure_service_enabled
2018-02-23 22:18:14 -05:00
before_action :service
2019-12-17 10:08:15 -05:00
before_action :web_hook_logs , only : [ :edit , :update ]
2020-02-10 13:09:00 -05:00
before_action :set_deprecation_notice_for_prometheus_service , only : [ :edit , :update ]
before_action :redirect_deprecated_prometheus_service , only : [ :update ]
2012-11-19 14:34:05 -05:00
respond_to :html
2013-06-19 15:44:57 -04:00
layout " project_settings "
2012-11-19 14:34:05 -05:00
def edit
end
def update
2017-08-22 12:05:02 -04:00
@service . attributes = service_params [ :service ]
2019-09-09 16:22:00 -04:00
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 14:34:05 -05:00
end
end
def test
2018-02-23 22:18:14 -05:00
if @service . can_test?
render json : service_test_response , status : :ok
else
render json : { } , status : :not_found
end
end
private
2016-11-14 09:10:35 -05:00
2018-02-23 22:18:14 -05:00
def service_test_response
2020-03-13 05:09:23 -04:00
unless @service . update ( service_params [ :service ] )
return { error : true , message : _ ( 'Validations failed.' ) , service_response : @service . errors . full_messages . join ( ',' ) , test_failed : false }
end
data = @service . test_data ( project , current_user )
outcome = @service . test ( data )
unless outcome [ :success ]
return { error : true , message : _ ( 'Test failed.' ) , service_response : outcome [ :result ] . to_s , test_failed : true }
2015-01-23 23:50:17 -05:00
end
2020-03-13 05:09:23 -04:00
{ }
2018-03-29 02:23:47 -04:00
rescue Gitlab :: HTTP :: BlockedUrlError = > e
2019-03-27 12:52:52 -04:00
{ error : true , message : _ ( 'Test failed.' ) , service_response : e . message , test_failed : true }
2012-11-19 14:34:05 -05:00
end
2013-05-22 09:58:44 -04:00
2017-05-22 06:07:12 -04:00
def success_message
2020-03-13 05:09:23 -04:00
message = @service . active? ? _ ( 'activated' ) : _ ( 'settings saved, but not activated' )
_ ( '%{service_title} %{message}.' ) % { service_title : @service . title , message : message }
2017-05-22 06:07:12 -04:00
end
2013-05-22 09:58:44 -04:00
def service
2016-11-16 06:46:07 -05:00
@service || = @project . find_or_initialize_service ( params [ :id ] )
2013-05-22 09:58:44 -04:00
end
2018-02-18 18:47:37 -05:00
2019-12-17 10:08:15 -05:00
def web_hook_logs
return unless @service . service_hook . present?
@web_hook_logs || = @service . service_hook . web_hook_logs . recent . page ( params [ :page ] )
end
2018-02-18 18:47:37 -05:00
def ensure_service_enabled
render_404 unless service
end
2019-09-09 16:22:00 -04:00
def serialize_as_json
@service
. as_json ( only : @service . json_fields )
. merge ( errors : @service . errors . as_json )
end
2020-02-10 13:09:00 -05:00
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 14:34:05 -05:00
end