Class: Mongoid::Relations::Bindings::Referenced::In
- Inherits:
-
Mongoid::Relations::Binding
- Object
- Mongoid::Relations::Binding
- Mongoid::Relations::Bindings::Referenced::In
- Defined in:
- 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 37 |
# File '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 bind_inverse_of_field(base, base.) if base.referenced_many? target.__send__(inverse).push(base) unless Mongoid.using_identity_map? else target.do_or_do_not(.inverse_setter(target), base) end end end end end |
#unbind_one ⇒ Object
Unbinds the base object and the inverse, caused by setting the reference to nil.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/mongoid/relations/bindings/referenced/in.rb', line 47 def unbind_one binding do inverse = .inverse(target) if !inverse && .inverse_of_field inverse = base.__send__(.inverse_of_field) end bind_foreign_key(base, nil) bind_polymorphic_inverse_type(base, nil) bind_inverse_of_field(base, nil) if inverse if base.referenced_many? target.__send__(inverse).delete(base) else target.__send__("#{inverse}=", nil) end end end end |