2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module ApplicationSettings
|
|
|
|
class UpdateService < ApplicationSettings::BaseService
|
2019-07-07 11:18:12 +05:30
|
|
|
include ValidatesClassificationLabel
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
attr_reader :params, :application_setting
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def execute
|
2019-07-07 11:18:12 +05:30
|
|
|
validate_classification_label(application_setting, :external_authorization_service_default_label)
|
|
|
|
|
|
|
|
if application_setting.errors.any?
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
update_terms(@params.delete(:terms))
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
if params.key?(:performance_bar_allowed_group_path)
|
|
|
|
params[:performance_bar_allowed_group_id] = performance_bar_allowed_group_id
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
if usage_stats_updated? && !params.delete(:skip_usage_stats_user)
|
|
|
|
params[:usage_stats_set_by_user_id] = current_user.id
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
@application_setting.update(@params)
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
def usage_stats_updated?
|
|
|
|
params.key?(:usage_ping_enabled) || params.key?(:version_check_enabled)
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
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
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
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)
|
2019-07-07 11:18:12 +05:30
|
|
|
return unless Gitlab::Utils.to_boolean(performance_bar_enabled)
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
Group.find_by_full_path(group_full_path)&.id if group_full_path.present?
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|