2025-11-11 09:17:49 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2015-04-20 18:13:16 +02:00
|
|
|
#-- copyright
|
2020-01-15 11:31:26 +01:00
|
|
|
# OpenProject is an open source project management software.
|
2024-07-30 13:42:36 +02:00
|
|
|
# Copyright (C) the OpenProject GmbH
|
2015-04-20 18:13:16 +02:00
|
|
|
#
|
|
|
|
|
# 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:
|
2021-01-13 17:47:45 +01:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2015-04-20 18:13:16 +02:00
|
|
|
# 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.
|
|
|
|
|
#
|
2021-09-02 21:49:06 +02:00
|
|
|
# See COPYRIGHT and LICENSE files for more details.
|
2015-04-20 18:13:16 +02:00
|
|
|
#++
|
|
|
|
|
|
2014-07-28 12:51:29 +00:00
|
|
|
namespace :setting do
|
2014-11-03 22:13:00 +01:00
|
|
|
desc "Allow to set a Setting: rake setting:set[key1=value1,key2=value2]"
|
|
|
|
|
task set: :environment do |_t, args|
|
2014-07-28 12:51:29 +00:00
|
|
|
args.extras.each do |tuple|
|
2014-11-03 22:13:00 +01:00
|
|
|
key, value = tuple.split("=")
|
2022-05-16 20:45:03 +02:00
|
|
|
setting = Setting.find_or_initialize_by(name: key)
|
2022-05-12 15:05:28 +02:00
|
|
|
setting.set_value! value, force: true
|
|
|
|
|
setting.save!
|
2014-07-28 12:51:29 +00:00
|
|
|
end
|
|
|
|
|
end
|
2014-08-21 07:12:38 +00:00
|
|
|
|
2014-11-03 22:13:00 +01:00
|
|
|
desc "Allow to get a Setting: rake setting:get[key]"
|
|
|
|
|
task :get, [:key] => :environment do |_t, args|
|
2015-06-26 11:23:13 +02:00
|
|
|
setting = Setting.find_by(name: args[:key])
|
2014-08-21 07:12:38 +00:00
|
|
|
unless setting.nil?
|
|
|
|
|
puts(setting.value)
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-05-06 15:02:48 +01:00
|
|
|
|
|
|
|
|
desc "Allow to set a Setting read from an ENV var. Example: rake setting:set_to_env[smtp_address=SMTP_HOST]"
|
|
|
|
|
task set_to_env: :environment do |_t, args|
|
|
|
|
|
args.extras.each do |tuple|
|
|
|
|
|
setting_name, env_var_name = tuple.split("=")
|
|
|
|
|
|
|
|
|
|
next unless Settings::Definition.exists? setting_name
|
|
|
|
|
next unless ENV.has_key? env_var_name
|
|
|
|
|
|
2022-05-16 20:45:03 +02:00
|
|
|
setting = Setting.find_or_initialize_by(name: setting_name)
|
2022-05-06 15:02:48 +01:00
|
|
|
setting.set_value! ENV[env_var_name].presence, force: true
|
2022-05-12 10:45:41 +01:00
|
|
|
setting.save!
|
2022-05-06 15:02:48 +01:00
|
|
|
end
|
|
|
|
|
end
|
2022-05-16 11:11:32 +02:00
|
|
|
|
|
|
|
|
desc "List the supported environment variables to override settings"
|
|
|
|
|
task available_envs: :environment do
|
2025-11-11 09:17:49 +01:00
|
|
|
names_and_definitions = Settings::Definition.all.map do |_, definition|
|
|
|
|
|
env_name = Settings::Definition.possible_env_names(definition).first
|
|
|
|
|
env_name = definition.env_alias if definition.env_alias&.start_with?("OPENPROJECT_")
|
|
|
|
|
|
|
|
|
|
[env_name, definition]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
names_and_definitions.sort_by { |env_name, _| env_name.downcase }.each do |env_name, definition|
|
|
|
|
|
puts "#{env_name} (default=#{definition.default.inspect}) #{definition.description}"
|
2022-05-16 11:11:32 +02:00
|
|
|
end
|
|
|
|
|
end
|
2014-07-28 12:51:29 +00:00
|
|
|
end
|