2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class Projects :: ServicesController < Projects :: ApplicationController
2021-06-08 01:23:25 +05:30
include Integrations :: Params
2020-06-23 00:09:42 +05:30
include InternalRedirect
2015-10-24 18:46:33 +05:30
2014-09-02 18:07:02 +05:30
# Authorize
2015-09-11 14:41:01 +05:30
before_action :authorize_admin_project!
2018-03-27 19:54:05 +05:30
before_action :ensure_service_enabled
2021-06-08 01:23:25 +05:30
before_action :integration
2020-01-01 13:55:28 +05:30
before_action :web_hook_logs , only : [ :edit , :update ]
2020-03-13 15:44:24 +05:30
before_action :set_deprecation_notice_for_prometheus_service , only : [ :edit , :update ]
before_action :redirect_deprecated_prometheus_service , only : [ :update ]
2014-09-02 18:07:02 +05:30
respond_to :html
layout " project_settings "
2021-01-03 14:25:43 +05:30
feature_category :integrations
2014-09-02 18:07:02 +05:30
def edit
2021-06-08 01:23:25 +05:30
@default_integration = Integration . default_integration ( service . type , project )
2014-09-02 18:07:02 +05:30
end
def update
2021-06-08 01:23:25 +05:30
@integration . attributes = integration_params [ :integration ]
@integration . inherit_from_id = nil if integration_params [ :integration ] [ :inherit_from_id ] . blank?
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
saved = @integration . save ( context : :manual_change )
2019-12-04 20:38:33 +05:30
respond_to do | format |
format . html do
if saved
2021-06-08 01:23:25 +05:30
redirect_to redirect_path , notice : success_message
2019-12-04 20:38:33 +05:30
else
render 'edit'
end
end
format . json do
status = saved ? :ok : :unprocessable_entity
render json : serialize_as_json , status : status
end
2014-09-02 18:07:02 +05:30
end
end
def test
2021-06-08 01:23:25 +05:30
if integration . can_test?
2018-03-27 19:54:05 +05:30
render json : service_test_response , status : :ok
else
render json : { } , status : :not_found
end
end
2017-09-10 17:25:29 +05:30
2018-03-27 19:54:05 +05:30
private
2021-06-08 01:23:25 +05:30
def redirect_path
safe_redirect_path ( params [ :redirect_to ] ) . presence || edit_project_service_path ( @project , @integration )
end
2018-03-27 19:54:05 +05:30
def service_test_response
2021-06-08 01:23:25 +05:30
unless @integration . update ( integration_params [ :integration ] )
return { error : true , message : _ ( 'Validations failed.' ) , service_response : @integration . errors . full_messages . join ( ',' ) , test_failed : false }
2020-04-08 14:13:33 +05:30
end
2021-06-08 01:23:25 +05:30
result = :: Integrations :: Test :: ProjectService . new ( @integration , current_user , params [ :event ] ) . execute
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
unless result [ :success ]
2020-11-24 15:15:51 +05:30
return { error : true , message : s_ ( 'Integrations|Connection failed. Please check your settings.' ) , service_response : result [ :message ] . to_s , test_failed : true }
2015-04-26 12:48:37 +05:30
end
2020-04-08 14:13:33 +05:30
2021-01-29 00:20:46 +05:30
result [ :data ] . presence || { }
2021-04-29 21:17:54 +05:30
rescue * Gitlab :: HTTP :: HTTP_ERRORS = > e
2020-11-24 15:15:51 +05:30
{ error : true , message : s_ ( 'Integrations|Connection failed. Please check your settings.' ) , service_response : e . message , test_failed : true }
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
def success_message
2021-06-08 01:23:25 +05:30
if integration . active?
s_ ( 'Integrations|%{integration} settings saved and active.' ) % { integration : integration . title }
2020-11-24 15:15:51 +05:30
else
2021-06-08 01:23:25 +05:30
s_ ( 'Integrations|%{integration} settings saved, but not active.' ) % { integration : integration . title }
2020-11-24 15:15:51 +05:30
end
2017-09-10 17:25:29 +05:30
end
2021-06-08 01:23:25 +05:30
def integration
@integration || = @project . find_or_initialize_service ( params [ :id ] )
2014-09-02 18:07:02 +05:30
end
2021-06-08 01:23:25 +05:30
alias_method :service , :integration
2018-03-27 19:54:05 +05:30
2020-01-01 13:55:28 +05:30
def web_hook_logs
2021-09-04 01:27:46 +05:30
return unless integration . service_hook . present?
2020-01-01 13:55:28 +05:30
2021-09-04 01:27:46 +05:30
@web_hook_logs || = integration . service_hook . web_hook_logs . recent . page ( params [ :page ] )
2020-01-01 13:55:28 +05:30
end
2018-03-27 19:54:05 +05:30
def ensure_service_enabled
render_404 unless service
end
2019-12-04 20:38:33 +05:30
def serialize_as_json
2021-06-08 01:23:25 +05:30
integration
2021-09-04 01:27:46 +05:30
. as_json ( only : integration . json_fields )
. merge ( errors : integration . errors . as_json )
2019-12-04 20:38:33 +05:30
end
2020-03-13 15:44:24 +05:30
def redirect_deprecated_prometheus_service
2021-06-08 01:23:25 +05:30
redirect_to edit_project_service_path ( project , integration ) if integration . is_a? ( :: PrometheusService ) && Feature . enabled? ( :settings_operations_prometheus_service , project )
2020-03-13 15:44:24 +05:30
end
def set_deprecation_notice_for_prometheus_service
2021-06-08 01:23:25 +05:30
return if ! integration . is_a? ( :: PrometheusService ) || ! Feature . enabled? ( :settings_operations_prometheus_service , project )
2020-03-13 15:44:24 +05:30
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
2014-09-02 18:07:02 +05:30
end