Class: Mongoid::Relations::Referenced::In
- 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, 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? ⇒ 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.
-
#substitute(replacement) ⇒ In?
Substitutes the supplied target documents for the existing document in the relation.
Methods inherited from One
Methods inherited from Proxy
Constructor Details
#initialize(base, target, metadata) ⇒ In
Instantiate a new referenced_in relation.
21 22 23 24 25 26 |
# File 'lib/mongoid/relations/referenced/in.rb', line 21 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.
93 94 95 |
# File 'lib/mongoid/relations/referenced/in.rb', line 93 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.
109 110 111 |
# File 'lib/mongoid/relations/referenced/in.rb', line 109 def criteria(, object, type = nil) type.where(:_id => object) end |
.eager_load(metadata, criteria) ⇒ Criteria
Get the criteria that is used to eager load a relation of this type.
125 126 127 128 129 130 131 |
# File 'lib/mongoid/relations/referenced/in.rb', line 125 def eager_load(, criteria) raise Errors::EagerLoad.new(.name) if .polymorphic? klass, foreign_key = .klass, .foreign_key klass.any_in("_id" => criteria.load_ids(foreign_key).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.
142 143 144 |
# File 'lib/mongoid/relations/referenced/in.rb', line 142 def false end |
.foreign_key_default ⇒ nil
Get the default value for the foreign key.
154 155 156 |
# File 'lib/mongoid/relations/referenced/in.rb', line 154 def foreign_key_default nil end |
.foreign_key_suffix ⇒ String
Returns the suffix of the foreign key field, either “_id” or “_ids”.
166 167 168 |
# File 'lib/mongoid/relations/referenced/in.rb', line 166 def foreign_key_suffix "_id" end |
.macro ⇒ Symbol
Returns the macro for this relation. Used mostly as a helper in reflection.
177 178 179 |
# File 'lib/mongoid/relations/referenced/in.rb', line 177 def macro :referenced_in 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.
203 204 205 |
# File 'lib/mongoid/relations/referenced/in.rb', line 203 def nested_builder(, attributes, ) Builders::NestedAttributes::One.new(, attributes, ) end |
.path(document) ⇒ Root
Get the path calculator for the supplied document.
217 218 219 |
# File 'lib/mongoid/relations/referenced/in.rb', line 217 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.
230 231 232 |
# File 'lib/mongoid/relations/referenced/in.rb', line 230 def stores_foreign_key? true end |
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
242 243 244 |
# File 'lib/mongoid/relations/referenced/in.rb', line 242 def [ :autosave, :foreign_key, :index, :polymorphic ] end |
.validation_default ⇒ true, false
Get the default validation setting for the relation. Determines if by default a validates associated will occur.
255 256 257 |
# File 'lib/mongoid/relations/referenced/in.rb', line 255 def validation_default false end |
Instance Method Details
#substitute(replacement) ⇒ In?
Substitutes the supplied target documents for the existing document in the relation.
40 41 42 43 44 45 46 47 |
# File 'lib/mongoid/relations/referenced/in.rb', line 40 def substitute(replacement) tap do |proxy| proxy.unbind_one return nil unless replacement proxy.target = replacement proxy.bind_one end end |