Class: Mongoid::Relations::Bindings::Referenced::In
- Inherits:
-
Mongoid::Relations::Binding
- Object
- Mongoid::Relations::Binding
- Mongoid::Relations::Bindings::Referenced::In
- Defined in:
- build/mongoid-6.1/lib/mongoid/relations/bindings/referenced/in.rb
Overview
Binding class for all referenced_in relations.
Instance Attribute Summary
Attributes inherited from Mongoid::Relations::Binding
Instance Method Summary collapse
-
#bind_one ⇒ Object
Binds the base object to the inverse of the relation.
-
#unbind_one ⇒ Object
Unbinds the base object and the inverse, caused by setting the reference to nil.
Methods inherited from Mongoid::Relations::Binding
Constructor Details
This class inherits a constructor from Mongoid::Relations::Binding
Instance Method Details
#bind_one ⇒ Object
Binds the base object to the inverse of the relation. This is so we are referenced to the actual objects themselves on both sides.
This case sets the metadata on the inverse object as well as the document itself.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'build/mongoid-6.1/lib/mongoid/relations/bindings/referenced/in.rb', line 21 def bind_one binding do check_inverses!(target) bind_foreign_key(base, record_id(target)) bind_polymorphic_inverse_type(base, target.class.name) if inverse = .inverse(target) if if base.referenced_many? target.__send__(inverse).push(base) else target.set_relation(inverse, base) end end end end end |
#unbind_one ⇒ Object
Unbinds the base object and the inverse, caused by setting the reference to nil.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'build/mongoid-6.1/lib/mongoid/relations/bindings/referenced/in.rb', line 46 def unbind_one binding do inverse = .inverse(target) bind_foreign_key(base, nil) bind_polymorphic_inverse_type(base, nil) if inverse if base.referenced_many? target.__send__(inverse).delete(base) else target.set_relation(inverse, nil) end end end end |