# Represents a preferred value for a particular preference on a model. # # == Grouped preferences # # In addition to simple named preferences, preferences can also be grouped by # a particular value, be it a string or ActiveRecord object. For example, a # User may have a preferred color for a particular Car. In this case, the # +owner+ is the User record, the +name+ is "color", and the +group+ is the # Car record. This allows preferences to have a sort of context around them. class Preference < ActiveRecord::Base belongs_to :owner, :polymorphic => true belongs_to :group, :polymorphic => true validates_presence_of :name, :owner_id, :owner_type validates_presence_of :group_type, :if => :group_id? class << self # Splits the given group into its corresponding id and type. For simple # primitives, the id will be nil. For complex types, specifically # ActiveRecord objects, the id is the unique identifier stored in the # database for the record. # # For example, # # Preference.split_group('google') # => [nil, "google"] # Preference.split_group(1) # => [nil, 1] # Preference.split_group(User.find(1)) # => [1, "User"] def split_group(group = nil) if group.is_a?(ActiveRecord::Base) group_id, group_type = group.id, group.class.base_class.name.to_s else group_id, group_type = nil, group.is_a?(Symbol) ? group.to_s : group end [group_id, group_type] end end # The definition of the preference as defined in the owner's model def definition # Optimize number of queries to the database by only looking up the actual # owner record for STI cases when the definition can't be found in the # stored owner type class owner_type && (find_definition(owner_type.constantize) || find_definition(owner.class)) end # Typecasts the value depending on the preference definition's declared type def value value = read_attribute(:value) value = definition.type_cast(value) if definition value end # Only searches for the group record if the group id is specified alias_method :original_group, :group def group group_id ? original_group : group_type end private # Finds the definition for this preference in the given owner class. def find_definition(owner_class) owner_class.respond_to?(:preference_definitions) && owner_class.preference_definitions[name] end end