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
|
2021-10-27 15:23:28 +05:30
|
|
|
before_action :default_integration, only: [:edit, :update]
|
2020-01-01 13:55:28 +05:30
|
|
|
before_action :web_hook_logs, only: [:edit, :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
|
2021-12-11 22:18:48 +05:30
|
|
|
urgency :low, [:test]
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2021-10-27 15:23:28 +05:30
|
|
|
attributes = integration_params[:integration]
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
if use_inherited_settings?(attributes)
|
2021-11-11 11:23:49 +05:30
|
|
|
integration.inherit_from_id = default_integration.id
|
2021-10-27 15:23:28 +05:30
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
if saved = integration.save(context: :manual_change)
|
|
|
|
BulkUpdateIntegrationService.new(default_integration, [integration]).execute
|
2021-10-27 15:23:28 +05:30
|
|
|
end
|
|
|
|
else
|
|
|
|
attributes[:inherit_from_id] = nil
|
2021-11-11 11:23:49 +05:30
|
|
|
integration.attributes = attributes
|
|
|
|
saved = integration.save(context: :manual_change)
|
2021-10-27 15:23:28 +05:30
|
|
|
end
|
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-09-30 23:02:18 +05:30
|
|
|
if integration.testable?
|
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
|
2022-03-02 08:16:31 +05:30
|
|
|
safe_redirect_path(params[:redirect_to]).presence || edit_project_integration_path(project, integration)
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
def service_test_response
|
2021-11-11 11:23:49 +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-11-11 11:23:49 +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
|
2021-11-11 11:23:49 +05:30
|
|
|
@integration ||= project.find_or_initialize_integration(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
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
def default_integration
|
|
|
|
@default_integration ||= Integration.default_integration(integration.type, project)
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
def use_inherited_settings?(attributes)
|
|
|
|
default_integration && attributes[:inherit_from_id] == default_integration.id.to_s
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|