Class: Mongoid::Association::Embedded::EmbedsMany
- Inherits:
-
Object
- Object
- Mongoid::Association::Embedded::EmbedsMany
- Defined in:
- lib/mongoid/association/embedded/embeds_many.rb,
lib/mongoid/association/embedded/embeds_many/proxy.rb,
lib/mongoid/association/embedded/embeds_many/binding.rb,
lib/mongoid/association/embedded/embeds_many/buildable.rb
Overview
The EmbedsMany type association.
Defined Under Namespace
Modules: Buildable Classes: Binding, Proxy
Constant Summary collapse
- ASSOCIATION_OPTIONS =
The options available for this type of association, in addition to the common ones.
[ :as, :cascade_callbacks, :cyclic, :order, :store_as, :before_add, :after_add, :before_remove, :after_remove ]
- VALID_OPTIONS =
The complete list of valid options for this association, including the shared ones.
(ASSOCIATION_OPTIONS + SHARED_OPTIONS).freeze
Constants included from Relatable
Relatable::PRIMARY_KEY_DEFAULT, Relatable::SHARED_OPTIONS
Instance Attribute Summary
Attributes included from Relatable
#name, #options, #parent_inclusions
Instance Method Summary collapse
-
#criteria(base, target) ⇒ Object
Get a criteria object for searching given a parent and children documents.
-
#embedded? ⇒ true
Is this association type embedded?.
-
#key ⇒ String
The key that is used to get the attributes for the associated object.
-
#nested_builder(attributes, options) ⇒ Association::Nested::Many
The nested builder object.
-
#path(document) ⇒ Mongoid::Atomic::Paths::Embedded::Many
Get the path calculator for the supplied document.
-
#polymorphic? ⇒ true | false
Is this association polymorphic?.
-
#primary_key ⇒ nil
The primary key.
-
#relation ⇒ Association::Embedded::EmbedsMany::Proxy
Get the association proxy class for this association type.
-
#setup! ⇒ self
Setup the instance methods, fields, etc.
-
#store_as ⇒ String
The field key used to store the list of association objects.
-
#stores_foreign_key? ⇒ false
Does this association type store the foreign key?.
-
#type ⇒ String | nil
The field used to store the type of the related object.
-
#validation_default ⇒ true
Get the default validation setting for the association.
Methods included from Buildable
Methods included from Relatable
#==, #bindable?, #counter_cache_column_name, #create_relation, #destructive?, #extension, #foreign_key_check, #foreign_key_setter, #get_callbacks, #in_to?, #initialize, #inverse, #inverse_association, #inverse_class, #inverse_class_name, #inverse_setter, #inverse_type, #inverse_type_setter, #inverses, #many?, #one?, #relation_class, #relation_class_name, #setter, #type_setter, #validate?
Methods included from Options
#as, #autobuilding?, #autosave, #cascading_callbacks?, #counter_cached?, #cyclic?, #dependent, #forced_nil_inverse?, #indexed?, #inverse_of, #order, #touch_field, #touchable?
Methods included from Constrainable
Instance Method Details
#criteria(base, target) ⇒ Object
Get a criteria object for searching given a parent and children documents.
137 138 139 140 141 142 143 144 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 137 def criteria(base, target) criterion = klass.scoped criterion. = true criterion.documents = target criterion.parent_document = base criterion.association = self apply_ordering(criterion) end |
#embedded? ⇒ true
Is this association type embedded?
66 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 66 def ; true; end |
#key ⇒ String
The key that is used to get the attributes for the associated object.
59 60 61 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 59 def key store_as.to_s end |
#nested_builder(attributes, options) ⇒ Association::Nested::Many
The nested builder object.
116 117 118 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 116 def nested_builder(attributes, ) Nested::Many.new(self, attributes, ) end |
#path(document) ⇒ Mongoid::Atomic::Paths::Embedded::Many
Get the path calculator for the supplied document.
129 130 131 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 129 def path(document) Mongoid::Atomic::Paths::Embedded::Many.new(document) end |
#polymorphic? ⇒ true | false
Is this association polymorphic?
97 98 99 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 97 def polymorphic? @polymorphic ||= !!@options[:as] end |
#primary_key ⇒ nil
The primary key
85 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 85 def primary_key; end |
#relation ⇒ Association::Embedded::EmbedsMany::Proxy
Get the association proxy class for this association type.
90 91 92 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 90 def relation Proxy end |
#setup! ⇒ self
Setup the instance methods, fields, etc. on the association owning class.
42 43 44 45 46 47 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 42 def setup! setup_instance_methods! @owner_class. = @owner_class..merge(name => self) @owner_class.aliased_fields[name.to_s] = store_as if store_as self end |
#store_as ⇒ String
The field key used to store the list of association objects.
52 53 54 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 52 def store_as @store_as ||= (@options[:store_as].try(:to_s) || name.to_s) end |
#stores_foreign_key? ⇒ false
Does this association type store the foreign key?
80 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 80 def stores_foreign_key?; false; end |
#type ⇒ String | nil
Only relevant if the association is polymorphic.
The field used to store the type of the related object.
106 107 108 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 106 def type @type ||= "#{as}_type" if polymorphic? end |
#validation_default ⇒ true
Get the default validation setting for the association. Determines if by default a validates associated will occur.
75 |
# File 'lib/mongoid/association/embedded/embeds_many.rb', line 75 def validation_default; true; end |