Sha256: 366ee0e47ec0ed1a8d17d2a0599193dc13a390a266e25d6718e7a4c9cdd993f2
Contents?: true
Size: 1.8 KB
Versions: 3
Compression:
Stored size: 1.8 KB
Contents
class Spree::Preference < ActiveRecord::Base validates :key, :presence => true validates :value_type, :presence => true scope :valid, where(Spree::Preference.arel_table[:key].not_eq(nil)).where(Spree::Preference.arel_table[:value_type].not_eq(nil)) # The type conversions here should match # the ones in spree::preferences::preferrable#convert_preference_value def value if self[:value_type].present? case self[:value_type].to_sym when :string, :text self[:value].to_s when :password self[:value].to_s when :decimal BigDecimal.new(self[:value].to_s).round(2, BigDecimal::ROUND_HALF_UP) when :integer self[:value].to_i when :boolean (self[:value].to_s =~ /^[t|1]/i) != nil end else self[:value] end end def raw_value self[:value] end # For the rc releases of 1.0, we stored the object class names, this converts # to preferences definition types. This code should eventually be removed. # it is called during the load_preferences of the Preferences::Store def self.convert_old_value_types(preference) return unless [Symbol.to_s, Fixnum.to_s, Bignum.to_s, Float.to_s, TrueClass.to_s, FalseClass.to_s].include? preference.value_type case preference.value_type when Symbol.to_s preference.value_type = 'string' when Fixnum.to_s preference.value_type = 'integer' when Bignum.to_s preference.value_type = 'integer' preference.value = preference.value.to_f.to_i when Float.to_s preference.value_type = 'decimal' when TrueClass.to_s preference.value_type = 'boolean' preference.value = "true" when FalseClass.to_s preference.value_type = 'boolean' preference.value = "false" end preference.save end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
spree_core-1.0.4 | app/models/spree/preference.rb |
spree_core-1.0.3 | app/models/spree/preference.rb |
spree_core-1.0.2 | app/models/spree/preference.rb |