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
2016-08-24 12:49:21 +05:30
include ServiceParams
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
before_action :service
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 ]
2020-06-23 00:09:42 +05:30
before_action only : :edit do
2020-07-28 23:09:34 +05:30
push_frontend_feature_flag ( :jira_issues_integration , @project , { default_enabled : true } )
2020-06-23 00:09:42 +05:30
end
2014-09-02 18:07:02 +05:30
respond_to :html
layout " project_settings "
def edit
2020-11-24 15:15:51 +05:30
@default_integration = Service . default_integration ( service . type , project )
2014-09-02 18:07:02 +05:30
end
def update
2017-09-10 17:25:29 +05:30
@service . attributes = service_params [ :service ]
2020-07-28 23:09:34 +05:30
@service . inherit_from_id = nil if service_params [ :service ] [ :inherit_from_id ] . blank?
2017-09-10 17:25:29 +05:30
2019-12-04 20:38:33 +05:30
saved = @service . save ( context : :manual_change )
respond_to do | format |
format . html do
if saved
2020-07-28 23:09:34 +05:30
target_url = safe_redirect_path ( params [ :redirect_to ] ) . presence || edit_project_service_path ( @project , @service )
2020-06-23 00:09:42 +05:30
redirect_to target_url , 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
2018-03-27 19:54:05 +05:30
if @service . can_test?
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
def service_test_response
2020-04-08 14:13:33 +05:30
unless @service . update ( service_params [ :service ] )
return { error : true , message : _ ( 'Validations failed.' ) , service_response : @service . errors . full_messages . join ( ',' ) , test_failed : false }
end
2020-07-28 23:09:34 +05:30
result = :: Integrations :: Test :: ProjectService . new ( @service , 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
{ }
2018-05-09 12:01:36 +05:30
rescue Gitlab :: HTTP :: BlockedUrlError = > 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
2020-11-24 15:15:51 +05:30
if @service . active?
s_ ( 'Integrations|%{integration} settings saved and active.' ) % { integration : @service . title }
else
s_ ( 'Integrations|%{integration} settings saved, but not active.' ) % { integration : @service . title }
end
2017-09-10 17:25:29 +05:30
end
2014-09-02 18:07:02 +05:30
def service
2017-08-17 22:00:37 +05:30
@service || = @project . find_or_initialize_service ( params [ :id ] )
2014-09-02 18:07:02 +05:30
end
2018-03-27 19:54:05 +05:30
2020-01-01 13:55:28 +05:30
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-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
@service
. as_json ( only : @service . json_fields )
. merge ( errors : @service . errors . as_json )
end
2020-03-13 15:44:24 +05:30
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
2014-09-02 18:07:02 +05:30
end