Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
2.8 KiB
Ruby
Raw Permalink Normal View History

# 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.
# 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.
#
# 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)
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|
setting = Setting.find_by(name: args[:key])
2014-08-21 07:12:38 +00:00
unless setting.nil?
puts(setting.value)
end
end
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)
setting.set_value! ENV[env_var_name].presence, force: true
2022-05-12 10:45:41 +01:00
setting.save!
end
end
desc "List the supported environment variables to override settings"
task available_envs: :environment do
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}"
end
end
2014-07-28 12:51:29 +00:00
end