mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
008f39b7f4
This reverts commit 75de0dbcd2.
90 lines
3.0 KiB
Ruby
90 lines
3.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
class Settings::UpdateService < BaseServices::BaseContracted
|
|
def initialize(user:)
|
|
super(user:,
|
|
contract_class: Settings::UpdateContract)
|
|
end
|
|
|
|
def persist(call)
|
|
params.each do |name, value|
|
|
set_setting_value(name, value)
|
|
rescue Setting::NotWritableError
|
|
i18n_name = I18n.t("setting_#{name}", default: name)
|
|
call.success = false
|
|
call.errors.add(:base, I18n.t("settings.errors.failed_to_update",
|
|
message: I18n.t("settings.errors.not_writable"),
|
|
name: i18n_name))
|
|
end
|
|
|
|
call
|
|
end
|
|
|
|
private
|
|
|
|
def set_setting_value(name, value)
|
|
old_value = Setting[name]
|
|
new_value = derive_value(value)
|
|
Setting[name] = new_value
|
|
|
|
if name == :work_package_done_ratio
|
|
trigger_update_job_for_progress_mode_change(old_value, new_value)
|
|
elsif name == :total_percent_complete_mode
|
|
trigger_update_job_for_total_percent_complete_mode_change(old_value, new_value)
|
|
end
|
|
end
|
|
|
|
def trigger_update_job_for_progress_mode_change(old_value, new_value)
|
|
return if old_value == new_value
|
|
return if new_value != "status" # only trigger if changing to status-based
|
|
|
|
WorkPackages::Progress::ApplyStatusesChangeJob.perform_later(cause_type: "progress_mode_changed_to_status_based")
|
|
end
|
|
|
|
def trigger_update_job_for_total_percent_complete_mode_change(old_value, new_value)
|
|
return if old_value == new_value
|
|
|
|
WorkPackages::Progress::ApplyTotalPercentCompleteModeChangeJob
|
|
.perform_later(mode: new_value,
|
|
cause_type: "total_percent_complete_mode_changed_to_#{new_value}")
|
|
end
|
|
|
|
def derive_value(value)
|
|
case value
|
|
when Array, Hash
|
|
# remove blank values in array, hash settings
|
|
value.compact_blank!
|
|
else
|
|
value.strip
|
|
end
|
|
end
|
|
end
|