| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2011  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00: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-05-18 02:19:08 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00: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-05-18 02:19:08 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Setting < ActiveRecord::Base | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 20:26:36 +00:00
										 |  |  |   DATE_FORMATS = [ | 
					
						
							|  |  |  | 	'%Y-%m-%d', | 
					
						
							|  |  |  | 	'%d/%m/%Y', | 
					
						
							|  |  |  | 	'%d.%m.%Y', | 
					
						
							|  |  |  | 	'%d-%m-%Y', | 
					
						
							|  |  |  | 	'%m/%d/%Y', | 
					
						
							|  |  |  | 	'%d %b %Y', | 
					
						
							|  |  |  | 	'%d %B %Y', | 
					
						
							|  |  |  | 	'%b %d, %Y', | 
					
						
							|  |  |  | 	'%B %d, %Y' | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 20:26:36 +00:00
										 |  |  |   TIME_FORMATS = [ | 
					
						
							|  |  |  |     '%H:%M', | 
					
						
							|  |  |  |     '%I:%M %p' | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  |   ENCODINGS = %w(US-ASCII
 | 
					
						
							|  |  |  |                   windows-1250
 | 
					
						
							|  |  |  |                   windows-1251
 | 
					
						
							|  |  |  |                   windows-1252
 | 
					
						
							|  |  |  |                   windows-1253
 | 
					
						
							|  |  |  |                   windows-1254
 | 
					
						
							|  |  |  |                   windows-1255
 | 
					
						
							|  |  |  |                   windows-1256
 | 
					
						
							|  |  |  |                   windows-1257
 | 
					
						
							|  |  |  |                   windows-1258
 | 
					
						
							|  |  |  |                   windows-31j | 
					
						
							|  |  |  |                   ISO-2022-JP | 
					
						
							|  |  |  |                   ISO-2022-KR | 
					
						
							|  |  |  |                   ISO-8859-1
 | 
					
						
							|  |  |  |                   ISO-8859-2
 | 
					
						
							|  |  |  |                   ISO-8859-3
 | 
					
						
							|  |  |  |                   ISO-8859-4
 | 
					
						
							|  |  |  |                   ISO-8859-5
 | 
					
						
							|  |  |  |                   ISO-8859-6
 | 
					
						
							|  |  |  |                   ISO-8859-7
 | 
					
						
							|  |  |  |                   ISO-8859-8
 | 
					
						
							|  |  |  |                   ISO-8859-9
 | 
					
						
							|  |  |  |                   ISO-8859-13
 | 
					
						
							|  |  |  |                   ISO-8859-15
 | 
					
						
							|  |  |  |                   KOI8-R | 
					
						
							|  |  |  |                   UTF-8
 | 
					
						
							|  |  |  |                   UTF-16
 | 
					
						
							|  |  |  |                   UTF-16BE | 
					
						
							|  |  |  |                   UTF-16LE | 
					
						
							|  |  |  |                   EUC-JP | 
					
						
							|  |  |  |                   Shift_JIS | 
					
						
							| 
									
										
										
										
											2011-02-21 09:41:34 +00:00
										 |  |  |                   CP932 | 
					
						
							| 
									
										
										
										
											2008-08-26 12:13:15 +00:00
										 |  |  |                   GB18030 | 
					
						
							|  |  |  |                   GBK | 
					
						
							|  |  |  |                   ISCII91 | 
					
						
							|  |  |  |                   EUC-KR | 
					
						
							|  |  |  |                   Big5 | 
					
						
							|  |  |  |                   Big5-HKSCS | 
					
						
							|  |  |  |                   TIS-620) | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |   cattr_accessor :available_settings | 
					
						
							| 
									
										
										
										
											2011-06-16 01:52:45 +00:00
										 |  |  |   @@available_settings = YAML::load(File.open("#{Rails.root}/config/settings.yml")) | 
					
						
							| 
									
										
										
										
											2008-11-16 15:38:37 +00:00
										 |  |  |   Redmine::Plugin.all.each do |plugin| | 
					
						
							| 
									
										
										
										
											2007-09-23 17:19:27 +00:00
										 |  |  |     next unless plugin.settings | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  |     @@available_settings["plugin_#{plugin.id}"] = {'default' => plugin.settings[:default], 'serialized' => true} | 
					
						
							| 
									
										
										
										
											2007-09-23 17:19:27 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |   validates_uniqueness_of :name | 
					
						
							|  |  |  |   validates_inclusion_of :name, :in => @@available_settings.keys | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  |   validates_numericality_of :value, :only_integer => true, :if => Proc.new { |setting| @@available_settings[setting.name]['format'] == 'int' } | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Hash used to cache setting values | 
					
						
							|  |  |  |   @cached_settings = {} | 
					
						
							|  |  |  |   @cached_cleared_on = Time.now | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-14 15:30:46 +00:00
										 |  |  |   def value | 
					
						
							|  |  |  |     v = read_attribute(:value) | 
					
						
							|  |  |  |     # Unserialize serialized settings | 
					
						
							|  |  |  |     v = YAML::load(v) if @@available_settings[name]['serialized'] && v.is_a?(String) | 
					
						
							| 
									
										
										
										
											2008-01-25 10:31:06 +00:00
										 |  |  |     v = v.to_sym if @@available_settings[name]['format'] == 'symbol' && !v.blank? | 
					
						
							| 
									
										
										
										
											2007-09-14 15:30:46 +00:00
										 |  |  |     v | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-18 17:50:17 +00:00
										 |  |  |   def value=(v) | 
					
						
							| 
									
										
										
										
											2010-02-12 22:08:02 +00:00
										 |  |  |     v = v.to_yaml if v && @@available_settings[name] && @@available_settings[name]['serialized'] | 
					
						
							| 
									
										
										
										
											2008-01-25 10:31:06 +00:00
										 |  |  |     write_attribute(:value, v.to_s) | 
					
						
							| 
									
										
										
										
											2007-09-18 17:50:17 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |   # Returns the value of the setting named name | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |   def self.[](name) | 
					
						
							| 
									
										
										
										
											2007-09-14 15:30:46 +00:00
										 |  |  |     v = @cached_settings[name] | 
					
						
							|  |  |  |     v ? v : (@cached_settings[name] = find_or_default(name).value) | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-14 15:30:46 +00:00
										 |  |  |   def self.[]=(name, v) | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |     setting = find_or_default(name) | 
					
						
							| 
									
										
										
										
											2007-09-14 15:30:46 +00:00
										 |  |  |     setting.value = (v ? v : "") | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |     @cached_settings[name] = nil | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |     setting.save | 
					
						
							|  |  |  |     setting.value | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |   # Defines getter and setter for each setting | 
					
						
							|  |  |  |   # Then setting values can be read using: Setting.some_setting_name | 
					
						
							|  |  |  |   # or set using Setting.some_setting_name = "some value" | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |   @@available_settings.each do |name, params| | 
					
						
							|  |  |  |     src = <<-END_SRC
 | 
					
						
							|  |  |  |     def self.#{name} | 
					
						
							|  |  |  |       self[:#{name}] | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def self.#{name}? | 
					
						
							| 
									
										
										
										
											2007-05-06 12:49:32 +00:00
										 |  |  |       self[:#{name}].to_i > 0 | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def self.#{name}=(value) | 
					
						
							| 
									
										
										
										
											2007-02-02 14:28:54 +00:00
										 |  |  |       self[:#{name}] = value | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     END_SRC | 
					
						
							|  |  |  |     class_eval src, __FILE__, __LINE__ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-29 11:36:30 +00:00
										 |  |  |   # Helper that returns an array based on per_page_options setting | 
					
						
							|  |  |  |   def self.per_page_options_array | 
					
						
							|  |  |  |     per_page_options.split(%r{[\s,]}).collect(&:to_i).select {|n| n > 0}.sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-12 21:25:50 +00:00
										 |  |  |   def self.openid? | 
					
						
							| 
									
										
										
										
											2009-02-19 21:03:08 +00:00
										 |  |  |     Object.const_defined?(:OpenID) && self[:openid].to_i > 0
 | 
					
						
							| 
									
										
										
										
											2009-02-12 21:25:50 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |   # Checks if settings have changed since the values were read | 
					
						
							|  |  |  |   # and clears the cache hash if it's the case | 
					
						
							|  |  |  |   # Called once per request | 
					
						
							|  |  |  |   def self.check_cache | 
					
						
							|  |  |  |     settings_updated_on = Setting.maximum(:updated_on) | 
					
						
							|  |  |  |     if settings_updated_on && @cached_cleared_on <= settings_updated_on | 
					
						
							| 
									
										
										
										
											2011-11-13 15:20:31 +00:00
										 |  |  |       clear_cache | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-13 15:20:31 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   # Clears the settings cache | 
					
						
							|  |  |  |   def self.clear_cache | 
					
						
							|  |  |  |     @cached_settings.clear | 
					
						
							|  |  |  |     @cached_cleared_on = Time.now | 
					
						
							|  |  |  |     logger.info "Settings cache cleared." if logger | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  | private | 
					
						
							|  |  |  |   # Returns the Setting instance for the setting named name | 
					
						
							|  |  |  |   # (record found in database or new record with default value) | 
					
						
							|  |  |  |   def self.find_or_default(name) | 
					
						
							|  |  |  |     name = name.to_s | 
					
						
							| 
									
										
										
										
											2011-05-18 02:19:08 +00:00
										 |  |  |     raise "There's no setting named #{name}" unless @@available_settings.has_key?(name) | 
					
						
							| 
									
										
										
										
											2007-08-31 17:45:32 +00:00
										 |  |  |     setting = find_by_name(name) | 
					
						
							|  |  |  |     setting ||= new(:name => name, :value => @@available_settings[name]['default']) if @@available_settings.has_key? name | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-01-21 11:50:22 +00:00
										 |  |  | end |