Class: Mongoid::Relations::Bindings::Referenced::In

Inherits:
Mongoid::Relations::Binding show all
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

#base, #metadata, #target

Instance Method Summary collapse

Methods inherited from Mongoid::Relations::Binding

#binding, #initialize

Constructor Details

This class inherits a constructor from Mongoid::Relations::Binding

Instance Method Details

#bind_oneObject

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.

Examples:

Bind the documents.

game.person.bind(:continue => true)
game.person = Person.new

Since:

  • 2.0.0.rc.1



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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 
        if base.referenced_many?
          target.__send__(inverse).push(base)
        else
          target.set_relation(inverse, base)
        end
      end
    end
  end
end

#unbind_oneObject

Unbinds the base object and the inverse, caused by setting the reference to nil.

Examples:

Unbind the document.

game.person.unbind(:continue => true)
game.person = nil

Since:

  • 2.0.0.rc.1



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File '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