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
push_frontend_feature_flag ( :integration_form_refactor )
end
2014-09-02 18:07:02 +05:30
respond_to :html
layout " project_settings "
def edit
end
def update
2017-09-10 17:25:29 +05:30
@service . attributes = service_params [ :service ]
2019-12-04 20:38:33 +05:30
saved = @service . save ( context : :manual_change )
respond_to do | format |
format . html do
if saved
2020-06-23 00:09:42 +05:30
target_url = safe_redirect_path ( params [ :redirect_to ] ) . presence || project_settings_integrations_path ( @project )
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-06-23 00:09:42 +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 ]
return { error : true , message : _ ( 'Test failed.' ) , 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
2019-07-07 11:18:12 +05:30
{ error : true , message : _ ( 'Test failed.' ) , 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-04-08 14:13:33 +05:30
message = @service . active? ? _ ( 'activated' ) : _ ( 'settings saved, but not activated' )
_ ( '%{service_title} %{message}.' ) % { service_title : @service . title , message : message }
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