117 lines
3.7 KiB
Ruby
117 lines
3.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Projects
|
|
module Operations
|
|
class UpdateService < BaseService
|
|
def execute
|
|
Projects::UpdateService
|
|
.new(project, current_user, project_update_params)
|
|
.execute
|
|
end
|
|
|
|
private
|
|
|
|
def project_update_params
|
|
error_tracking_params
|
|
.merge(alerting_setting_params)
|
|
.merge(metrics_setting_params)
|
|
.merge(grafana_integration_params)
|
|
.merge(prometheus_integration_params)
|
|
.merge(incident_management_setting_params)
|
|
end
|
|
|
|
def alerting_setting_params
|
|
return {} unless can?(current_user, :read_prometheus_alerts, project)
|
|
|
|
attr = params[:alerting_setting_attributes]
|
|
return {} unless attr
|
|
|
|
regenerate_token = attr.delete(:regenerate_token)
|
|
|
|
if regenerate_token
|
|
attr[:token] = nil
|
|
else
|
|
attr = attr.except(:token)
|
|
end
|
|
|
|
{ alerting_setting_attributes: attr }
|
|
end
|
|
|
|
def metrics_setting_params
|
|
attribs = params[:metrics_setting_attributes]
|
|
return {} unless attribs
|
|
|
|
attribs[:external_dashboard_url] = attribs[:external_dashboard_url].presence
|
|
|
|
{ metrics_setting_attributes: attribs }
|
|
end
|
|
|
|
def error_tracking_params
|
|
settings = params[:error_tracking_setting_attributes]
|
|
return {} if settings.blank?
|
|
|
|
if error_tracking_params_partial_updates?(settings)
|
|
error_tracking_params_for_partial_update(settings)
|
|
else
|
|
error_tracking_params_for_update(settings)
|
|
end
|
|
end
|
|
|
|
def error_tracking_params_partial_updates?(settings)
|
|
# Help from @splattael :bow:
|
|
# Make sure we're converting to symbols because
|
|
# * ActionController::Parameters#keys returns a list of strings
|
|
# * in specs we're using hashes with symbols as keys
|
|
|
|
settings.keys.map(&:to_sym) == %i[enabled]
|
|
end
|
|
|
|
def error_tracking_params_for_partial_update(settings)
|
|
{ error_tracking_setting_attributes: settings }
|
|
end
|
|
|
|
def error_tracking_params_for_update(settings)
|
|
api_url = ::ErrorTracking::ProjectErrorTrackingSetting.build_api_url_from(
|
|
api_host: settings[:api_host],
|
|
project_slug: settings.dig(:project, :slug),
|
|
organization_slug: settings.dig(:project, :organization_slug)
|
|
)
|
|
|
|
params = {
|
|
error_tracking_setting_attributes: {
|
|
api_url: api_url,
|
|
enabled: settings[:enabled],
|
|
project_name: settings.dig(:project, :name),
|
|
organization_name: settings.dig(:project, :organization_name)
|
|
}
|
|
}
|
|
params[:error_tracking_setting_attributes][:token] = settings[:token] unless /\A\*+\z/.match?(settings[:token]) # Don't update token if we receive masked value
|
|
|
|
params
|
|
end
|
|
|
|
def grafana_integration_params
|
|
return {} unless attrs = params[:grafana_integration_attributes]
|
|
|
|
destroy = attrs[:grafana_url].blank? && attrs[:token].blank?
|
|
|
|
{ grafana_integration_attributes: attrs.merge(_destroy: destroy) }
|
|
end
|
|
|
|
def prometheus_integration_params
|
|
return {} unless attrs = params[:prometheus_integration_attributes]
|
|
|
|
service = project.find_or_initialize_service(::PrometheusService.to_param)
|
|
service.assign_attributes(attrs)
|
|
|
|
{ prometheus_service_attributes: service.attributes.except(*%w(id project_id created_at updated_at)) }
|
|
end
|
|
|
|
def incident_management_setting_params
|
|
params.slice(:incident_management_setting_attributes)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Projects::Operations::UpdateService.prepend_if_ee('::EE::Projects::Operations::UpdateService')
|