Class: Mongoid::Relations::Referenced::In
- Includes:
- Evolvable
- Defined in:
- lib/mongoid/relations/referenced/in.rb
Overview
This class handles all behaviour for relations that are either one-to-many or one-to-one, where the foreign key is store on this side of the relation and the reference is to document(s) in another collection.
Instance Attribute Summary
Attributes inherited from Proxy
#base, #loaded, #metadata, #target
Class Method Summary collapse
-
.builder(base, meta, object) ⇒ Builder
Return the builder that is responsible for generating the documents that will be used by this relation.
-
.criteria(metadata, object, type = nil) ⇒ Criteria
Get the standard criteria used for querying this relation.
-
.eager_load(metadata, ids) ⇒ Criteria
Get the criteria that is used to eager load a relation of this type.
-
.embedded? ⇒ false
Returns true if the relation is an embedded one.
-
.foreign_key(name) ⇒ String
Get the foreign key for the provided name.
-
.foreign_key_default ⇒ nil
Get the default value for the foreign key.
-
.foreign_key_suffix ⇒ String
Returns the suffix of the foreign key field, either “_id” or “_ids”.
-
.macro ⇒ Symbol
Returns the macro for this relation.
-
.nested_builder(metadata, attributes, options) ⇒ NestedBuilder
Return the nested builder that is responsible for generating the documents that will be used by this relation.
-
.path(document) ⇒ Root
Get the path calculator for the supplied document.
-
.stores_foreign_key? ⇒ true
Tells the caller if this relation is one that stores the foreign key on its own objects.
-
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
-
.validation_default ⇒ true, false
Get the default validation setting for the relation.
Instance Method Summary collapse
-
#initialize(base, target, metadata) ⇒ In
constructor
Instantiate a new referenced_in relation.
-
#nullify ⇒ Object
Removes the association between the base document and the target document by deleting the foreign key and the reference, orphaning the target document in the process.
-
#substitute(replacement) ⇒ In?
Substitutes the supplied target documents for the existing document in the relation.
Methods included from Evolvable
Methods inherited from One
#clear, #in_memory, #respond_to?
Methods inherited from Proxy
apply_ordering, eager_load_ids, #extend_proxies, #init, #klass, #reset_unloaded, #substitutable, #with
Methods included from Marshalable
Constructor Details
#initialize(base, target, metadata) ⇒ In
Instantiate a new referenced_in relation.
22 23 24 25 26 27 |
# File 'lib/mongoid/relations/referenced/in.rb', line 22 def initialize(base, target, ) init(base, target, ) do characterize_one(target) bind_one end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Mongoid::Relations::Proxy
Class Method Details
.builder(base, meta, object) ⇒ Builder
Return the builder that is responsible for generating the documents that will be used by this relation.
105 106 107 |
# File 'lib/mongoid/relations/referenced/in.rb', line 105 def builder(base, , object) Builders::Referenced::In.new(base, , object) end |
.criteria(metadata, object, type = nil) ⇒ Criteria
Get the standard criteria used for querying this relation.
121 122 123 |
# File 'lib/mongoid/relations/referenced/in.rb', line 121 def criteria(, object, type = nil) type.where(.primary_key => object) end |
.eager_load(metadata, ids) ⇒ Criteria
Get the criteria that is used to eager load a relation of this type.
137 138 139 140 141 142 143 |
# File 'lib/mongoid/relations/referenced/in.rb', line 137 def eager_load(, ids) raise Errors::EagerLoad.new(.name) if .polymorphic? klass, _ = .klass, .foreign_key klass.any_in("_id" => ids.uniq).each do |doc| IdentityMap.set(doc) end end |
.embedded? ⇒ false
Returns true if the relation is an embedded one. In this case always false.
154 155 156 |
# File 'lib/mongoid/relations/referenced/in.rb', line 154 def false end |
.foreign_key(name) ⇒ String
Get the foreign key for the provided name.
168 169 170 |
# File 'lib/mongoid/relations/referenced/in.rb', line 168 def foreign_key(name) "#{name}#{foreign_key_suffix}" end |
.foreign_key_default ⇒ nil
Get the default value for the foreign key.
180 181 182 |
# File 'lib/mongoid/relations/referenced/in.rb', line 180 def foreign_key_default nil end |
.foreign_key_suffix ⇒ String
Returns the suffix of the foreign key field, either “_id” or “_ids”.
192 193 194 |
# File 'lib/mongoid/relations/referenced/in.rb', line 192 def foreign_key_suffix "_id" end |
.macro ⇒ Symbol
Returns the macro for this relation. Used mostly as a helper in reflection.
203 204 205 |
# File 'lib/mongoid/relations/referenced/in.rb', line 203 def macro :belongs_to end |
.nested_builder(metadata, attributes, options) ⇒ NestedBuilder
Return the nested builder that is responsible for generating the documents that will be used by this relation.
229 230 231 |
# File 'lib/mongoid/relations/referenced/in.rb', line 229 def nested_builder(, attributes, ) Builders::NestedAttributes::One.new(, attributes, ) end |
.path(document) ⇒ Root
Get the path calculator for the supplied document.
243 244 245 |
# File 'lib/mongoid/relations/referenced/in.rb', line 243 def path(document) Mongoid::Atomic::Paths::Root.new(document) end |
.stores_foreign_key? ⇒ true
Tells the caller if this relation is one that stores the foreign key on its own objects.
256 257 258 |
# File 'lib/mongoid/relations/referenced/in.rb', line 256 def stores_foreign_key? true end |
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/mongoid/relations/referenced/in.rb', line 268 def [ :autobuild, :autosave, :dependent, :foreign_key, :index, :polymorphic, :primary_key, :touch ] end |
.validation_default ⇒ true, false
Get the default validation setting for the relation. Determines if by default a validates associated will occur.
290 291 292 |
# File 'lib/mongoid/relations/referenced/in.rb', line 290 def validation_default false end |
Instance Method Details
#nullify ⇒ Object
Removes the association between the base document and the target document by deleting the foreign key and the reference, orphaning the target document in the process.
36 37 38 39 |
# File 'lib/mongoid/relations/referenced/in.rb', line 36 def nullify unbind_one target.save end |
#substitute(replacement) ⇒ In?
Substitutes the supplied target documents for the existing document in the relation.
53 54 55 56 57 58 59 |
# File 'lib/mongoid/relations/referenced/in.rb', line 53 def substitute(replacement) unbind_one return nil unless replacement self.target = replacement bind_one self end |