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
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_klass ⇒ Object
-
.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
#__evolve_object_id__, #clear, #in_memory, #respond_to?
Methods inherited from Proxy
apply_ordering, #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.
122 123 124 |
# File 'lib/mongoid/relations/referenced/in.rb', line 122 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.
138 139 140 |
# File 'lib/mongoid/relations/referenced/in.rb', line 138 def criteria(, object, type = nil) type.where(.primary_key => object) end |
.eager_load_klass ⇒ Object
142 143 144 |
# File 'lib/mongoid/relations/referenced/in.rb', line 142 def eager_load_klass Relations::Eager::BelongsTo end |
.embedded? ⇒ false
Returns true if the relation is an embedded one. In this case always false.
155 156 157 |
# File 'lib/mongoid/relations/referenced/in.rb', line 155 def false end |
.foreign_key(name) ⇒ String
Get the foreign key for the provided name.
169 170 171 |
# File 'lib/mongoid/relations/referenced/in.rb', line 169 def foreign_key(name) "#{name}#{foreign_key_suffix}" end |
.foreign_key_default ⇒ nil
Get the default value for the foreign key.
181 182 183 |
# File 'lib/mongoid/relations/referenced/in.rb', line 181 def foreign_key_default nil end |
.foreign_key_suffix ⇒ String
Returns the suffix of the foreign key field, either “_id” or “_ids”.
193 194 195 |
# File 'lib/mongoid/relations/referenced/in.rb', line 193 def foreign_key_suffix "_id" end |
.macro ⇒ Symbol
Returns the macro for this relation. Used mostly as a helper in reflection.
204 205 206 |
# File 'lib/mongoid/relations/referenced/in.rb', line 204 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.
230 231 232 |
# File 'lib/mongoid/relations/referenced/in.rb', line 230 def nested_builder(, attributes, ) Builders::NestedAttributes::One.new(, attributes, ) end |
.path(document) ⇒ Root
Get the path calculator for the supplied document.
244 245 246 |
# File 'lib/mongoid/relations/referenced/in.rb', line 244 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.
257 258 259 |
# File 'lib/mongoid/relations/referenced/in.rb', line 257 def stores_foreign_key? true end |
.valid_options ⇒ Array<Symbol>
Get the valid options allowed with this relation.
269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/mongoid/relations/referenced/in.rb', line 269 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.
291 292 293 |
# File 'lib/mongoid/relations/referenced/in.rb', line 291 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 = normalize(replacement) bind_one self end |