67 lines
2.1 KiB
Ruby
67 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ApplicationSettings
|
|
class UpdateService < ApplicationSettings::BaseService
|
|
include ValidatesClassificationLabel
|
|
|
|
attr_reader :params, :application_setting
|
|
|
|
MARKDOWN_CACHE_INVALIDATING_PARAMS = %w(asset_proxy_enabled asset_proxy_url asset_proxy_secret_key asset_proxy_whitelist).freeze
|
|
|
|
def execute
|
|
validate_classification_label(application_setting, :external_authorization_service_default_label)
|
|
|
|
if application_setting.errors.any?
|
|
return false
|
|
end
|
|
|
|
update_terms(@params.delete(:terms))
|
|
|
|
if params.key?(:performance_bar_allowed_group_path)
|
|
params[:performance_bar_allowed_group_id] = performance_bar_allowed_group_id
|
|
end
|
|
|
|
if usage_stats_updated? && !params.delete(:skip_usage_stats_user)
|
|
params[:usage_stats_set_by_user_id] = current_user.id
|
|
end
|
|
|
|
@application_setting.assign_attributes(params)
|
|
|
|
if invalidate_markdown_cache?
|
|
@application_setting[:local_markdown_version] = @application_setting.local_markdown_version + 1
|
|
end
|
|
|
|
@application_setting.save
|
|
end
|
|
|
|
private
|
|
|
|
def usage_stats_updated?
|
|
params.key?(:usage_ping_enabled) || params.key?(:version_check_enabled)
|
|
end
|
|
|
|
def invalidate_markdown_cache?
|
|
!params.key?(:local_markdown_version) &&
|
|
(@application_setting.changes.keys & MARKDOWN_CACHE_INVALIDATING_PARAMS).any?
|
|
end
|
|
|
|
def update_terms(terms)
|
|
return unless terms.present?
|
|
|
|
# Avoid creating a new terms record if the text is exactly the same.
|
|
terms = terms.strip
|
|
return if terms == @application_setting.terms
|
|
|
|
ApplicationSetting::Term.create(terms: terms)
|
|
@application_setting.reset_memoized_terms
|
|
end
|
|
|
|
def performance_bar_allowed_group_id
|
|
performance_bar_enabled = !params.key?(:performance_bar_enabled) || params.delete(:performance_bar_enabled)
|
|
group_full_path = params.delete(:performance_bar_allowed_group_path)
|
|
return unless Gitlab::Utils.to_boolean(performance_bar_enabled)
|
|
|
|
Group.find_by_full_path(group_full_path)&.id if group_full_path.present?
|
|
end
|
|
end
|
|
end
|