Class: Mongoid::Relations::Referenced::One
- Defined in:
- lib/mongoid/relations/referenced/one.rb
Overview
This class defines the behaviour for all relations that are a one-to-one between documents in different collections.
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, criteria) ⇒ 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_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? ⇒ false
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) ⇒ One
constructor
Instantiate a new references_one 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) ⇒ One
Substitutes the supplied target document for the existing document in the relation.
Methods inherited from One
Methods inherited from Proxy
Constructor Details
#initialize(base, target, metadata) ⇒ One
Instantiate a new references_one relation. Will set the foreign key and the base on the inverse object.
19 20 21 22 23 24 25 26 |
# File 'lib/mongoid/relations/referenced/one.rb', line 19 def initialize(base, target, ) init(base, target, ) do raise_mixed if klass. characterize_one(target) bind_one target.save if persistable? 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.
104 105 106 |
# File 'lib/mongoid/relations/referenced/one.rb', line 104 def builder(base, , object) Builders::Referenced::One.new(base, , object) end |
.criteria(metadata, object, type = nil) ⇒ Criteria
Get the standard criteria used for querying this relation.
120 121 122 |
# File 'lib/mongoid/relations/referenced/one.rb', line 120 def criteria(, object, type = nil) .klass.where(.foreign_key => object) end |
.eager_load(metadata, criteria) ⇒ Criteria
Get the criteria that is used to eager load a relation of this type.
136 137 138 139 140 141 |
# File 'lib/mongoid/relations/referenced/one.rb', line 136 def eager_load(, criteria) klass, foreign_key = .klass, .foreign_key klass.any_in(foreign_key => criteria.load_ids("_id").uniq).each do |doc| IdentityMap.set_one(doc, foreign_key => doc.send(foreign_key)) end end |
.embedded? ⇒ false
Returns true if the relation is an embedded one. In this case always false.
152 153 154 |
# File 'lib/mongoid/relations/referenced/one.rb', line 152 def false end |
.foreign_key_default ⇒ nil
Get the default value for the foreign key.
164 165 166 |
# File 'lib/mongoid/relations/referenced/one.rb', line 164 def foreign_key_default nil end |
.foreign_key_suffix ⇒ String
Returns the suffix of the foreign key field, either “_id” or “_ids”.
176 177 178 |
# File 'lib/mongoid/relations/referenced/one.rb', line 176 def foreign_key_suffix "_id" end |
.macro ⇒ Symbol
Returns the macro for this relation. Used mostly as a helper in reflection.
187 188 189 |
# File 'lib/mongoid/relations/referenced/one.rb', line 187 def macro :references_one 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.
213 214 215 |
# File 'lib/mongoid/relations/referenced/one.rb', line 213 def nested_builder(, attributes, ) Builders::NestedAttributes::One.new(, attributes, ) end |
.path(document) ⇒ Root
Get the path calculator for the supplied document.
227 228 229 |
# File 'lib/mongoid/relations/referenced/one.rb', line 227 def path(document) Mongoid::Atomic::Paths::Root.new(document) end |
.stores_foreign_key? ⇒ false
Tells the caller if this relation is one that stores the foreign key on its own objects.
240 241 242 |
# File 'lib/mongoid/relations/referenced/one.rb', line 240 def stores_foreign_key? false end |
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
252 253 254 |
# File 'lib/mongoid/relations/referenced/one.rb', line 252 def [ :as, :autosave, :dependent, :foreign_key ] end |
.validation_default ⇒ true, false
Get the default validation setting for the relation. Determines if by default a validates associated will occur.
265 266 267 |
# File 'lib/mongoid/relations/referenced/one.rb', line 265 def validation_default true 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/one.rb', line 36 def nullify unbind_one target.save end |
#substitute(replacement) ⇒ One
Substitutes the supplied target document for the existing document in the relation. If the new target is nil, perform the necessary deletion.
53 54 55 56 57 58 59 60 |
# File 'lib/mongoid/relations/referenced/one.rb', line 53 def substitute(replacement) unbind_one if persistable? .destructive? ? send(.dependent) : save end return nil unless replacement One.new(base, replacement, ) end |