2011-01-23 13:22:00 +03:00
# Redmine - project management software
2013-01-12 13:29:31 +04:00
# Copyright (C) 2006-2013 Jean-Philippe Lang
2011-01-23 13:22:00 +03:00
#
# 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.
2011-09-01 04:48:02 +04:00
#
2011-01-23 13:22:00 +03:00
# 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.
2011-09-01 04:48:02 +04:00
#
2011-01-23 13:22:00 +03:00
# 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.
module Redmine
module Configuration
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
# Configuration default values
@defaults = {
2012-12-11 00:09:41 +04:00
'email_delivery' = > nil ,
'max_concurrent_ajax_uploads' = > 2
2011-01-23 13:22:00 +03:00
}
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
@config = nil
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
class << self
# Loads the Redmine configuration file
# Valid options:
# * <tt>:file</tt>: the configuration file to load (default: config/configuration.yml)
2011-09-01 04:48:02 +04:00
# * <tt>:env</tt>: the environment to load the configuration for (default: Rails.env)
2011-01-23 13:22:00 +03:00
def load ( options = { } )
filename = options [ :file ] || File . join ( Rails . root , 'config' , 'configuration.yml' )
env = options [ :env ] || Rails . env
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
@config = @defaults . dup
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
load_deprecated_email_configuration ( env )
if File . file? ( filename )
@config . merge! ( load_from_yaml ( filename , env ) )
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
# Compatibility mode for those who copy email.yml over configuration.yml
%w( delivery_method smtp_settings sendmail_settings ) . each do | key |
if value = @config . delete ( key )
@config [ 'email_delivery' ] || = { }
@config [ 'email_delivery' ] [ key ] = value
end
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
if @config [ 'email_delivery' ]
ActionMailer :: Base . perform_deliveries = true
@config [ 'email_delivery' ] . each do | k , v |
v . symbolize_keys! if v . respond_to? ( :symbolize_keys! )
ActionMailer :: Base . send ( " #{ k } = " , v )
end
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
@config
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
# Returns a configuration setting
def [] ( name )
load unless @config
@config [ name ]
end
2011-09-01 04:48:02 +04:00
2011-02-25 17:30:05 +03:00
# Yields a block with the specified hash configuration settings
def with ( settings )
settings . stringify_keys!
load unless @config
was = settings . keys . inject ( { } ) { | h , v | h [ v ] = @config [ v ] ; h }
@config . merge! settings
yield if block_given?
@config . merge! was
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
private
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
def load_from_yaml ( filename , env )
2011-12-07 22:54:41 +04:00
yaml = nil
begin
yaml = YAML :: load_file ( filename )
rescue ArgumentError
$stderr . puts " Your Redmine configuration file located at #{ filename } is not a valid YAML file and could not be loaded. "
exit 1
end
2011-01-23 13:22:00 +03:00
conf = { }
if yaml . is_a? ( Hash )
if yaml [ 'default' ]
conf . merge! ( yaml [ 'default' ] )
end
if yaml [ env ]
conf . merge! ( yaml [ env ] )
end
else
2011-12-07 22:54:41 +04:00
$stderr . puts " Your Redmine configuration file located at #{ filename } is not a valid Redmine configuration file. "
2011-01-23 13:22:00 +03:00
exit 1
end
conf
end
2011-09-01 04:48:02 +04:00
2011-01-23 13:22:00 +03:00
def load_deprecated_email_configuration ( env )
deprecated_email_conf = File . join ( Rails . root , 'config' , 'email.yml' )
if File . file? ( deprecated_email_conf )
warn " Storing outgoing emails configuration in config/email.yml is deprecated. You should now store it in config/configuration.yml using the email_delivery setting. "
@config . merge! ( { 'email_delivery' = > load_from_yaml ( deprecated_email_conf , env ) } )
end
end
end
end
end