trabajo-afectivo/app/models/setting.rb

67 lines
1.5 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
class Setting < ApplicationModel
store :options
store :state
store :state_initial
2013-01-24 00:37:27 +00:00
before_create :state_check, :set_initial
before_update :state_check
after_create :delete_cache
after_update :delete_cache
2012-04-10 14:06:46 +00:00
@@current = {}
2012-04-10 14:06:46 +00:00
def self.load
2012-07-28 16:37:18 +00:00
# check if config is already generated
return @@current[:settings_config] if @@current[:settings_config]
2012-07-28 16:37:18 +00:00
# read all config settings
2012-04-10 14:06:46 +00:00
config = {}
Setting.select('name, state').order(:id).each { |setting|
config[setting.name] = setting.state[:value]
}
2012-07-28 16:37:18 +00:00
# config lookups
config.each { |key, value|
next if value.class.to_s != 'String'
config[key].gsub!( /\#\{config\.(.+?)\}/ ) { |s|
s = config[$1].to_s
}
}
2012-07-28 16:37:18 +00:00
# store for class requests
@@current[:settings_config] = config
2012-04-10 14:06:46 +00:00
return config
end
def self.set(name, value)
setting = Setting.where( :name => name ).first
if !setting
raise "Can't find config setting '#{name}'"
end
setting.state = { :value => value }
setting.save
end
2012-04-10 14:06:46 +00:00
def self.get(name)
self.load
return @@current[:settings_config][name]
2012-04-10 14:06:46 +00:00
end
2012-07-28 16:37:18 +00:00
2012-04-10 14:06:46 +00:00
private
def delete_cache
@@current[:settings_config] = nil
end
def set_initial
self.state_initial = self.state
end
def state_check
if self.state || self.state == false
if !self.state.respond_to?('has_key?') || !self.state.has_key?(:value)
self.state = { :value => self.state }
2013-01-24 00:37:27 +00:00
end
end
end
2012-04-10 14:06:46 +00:00
end