Class: Mongoid::Association::Embedded::EmbeddedIn

Inherits:
Object
  • Object
show all
Includes:
Buildable, Relatable
Defined in:
build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb,
build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in/proxy.rb,
build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in/binding.rb,
build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in/buildable.rb

Overview

The EmbeddedIn type association.

Since:

  • 7.0

Defined Under Namespace

Modules: Buildable Classes: Binding, Proxy

Constant Summary collapse

ASSOCIATION_OPTIONS =

The options available for this type of association, in addition to the common ones.

Returns:

  • (Array<Symbol>)

    The extra valid options.

Since:

  • 7.0

[
    :autobuild,
    :cyclic,
    :polymorphic,
    :touch,
].freeze
VALID_OPTIONS =

The complete list of valid options for this association, including the shared ones.

Returns:

  • (Array<Symbol>)

    The valid options.

Since:

  • 7.0

(ASSOCIATION_OPTIONS + SHARED_OPTIONS).freeze

Constants included from Relatable

Relatable::PRIMARY_KEY_DEFAULT, Relatable::SHARED_OPTIONS

Instance Attribute Summary

Attributes included from Relatable

#name, #options

Instance Method Summary collapse

Methods included from Buildable

#build

Methods included from Relatable

#==, #bindable?, #counter_cache_column_name, #create_relation, #destructive?, #extension, #foreign_key_check, #foreign_key_setter, #get_callbacks, #initialize, #inverse, #inverse_association, #inverse_class, #inverse_class_name, #inverse_setter, #inverse_type, #inverse_type_setter, #inverses, #path, #relation_class, #relation_class_name, #setter, #type_setter, #validate?

Methods included from Options

#as, #autobuilding?, #autosave, #cascading_callbacks?, #counter_cached?, #cyclic?, #dependent, #forced_nil_inverse?, #indexed?, #inverse_of, #order, #store_as, #touch_field, #type

Methods included from Constrainable

#convert_to_foreign_key

Instance Method Details

#embedded?true

Is this association type embedded?

Returns:

  • (true)

    Always true.

Since:

  • 7.0



56
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 56

def embedded?; true; end

#keyString

The key that is used to get the attributes for the associated object.

Returns:

  • (String)

    The name of the association.

Since:

  • 7.0



82
83
84
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 82

def key
  @key ||= name.to_s
end

#nested_builder(attributes, options) ⇒ Association::Nested::One

The nested builder object.

Parameters:

  • attributes (Hash)

    The attributes to use to build the association object.

  • options (Hash)

    The options for the association.

Returns:

Since:

  • 7.0



112
113
114
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 112

def nested_builder(attributes, options)
  Nested::One.new(self, attributes, options)
end

#polymorphic?true, false

Is this association polymorphic?

Returns:

  • (true, false)

    Whether this association is polymorphic.

Since:

  • 7.0



100
101
102
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 100

def polymorphic?
  !!@options[:polymorphic]
end

#primary_keynil

The primary key

Returns:

  • (nil)

    Not relevant for this association

Since:

  • 7.0



61
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 61

def primary_key; end

#relationAssociation::Embedded::EmbeddedIn::Proxy

Get the association proxy class for this association type.

Returns:

Since:

  • 7.0



91
92
93
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 91

def relation
  Proxy
end

#setup!self

Setup the instance methods, fields, etc. on the association owning class.

Returns:

  • (self)

Since:

  • 7.0



45
46
47
48
49
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 45

def setup!
  setup_instance_methods!
  @owner_class.embedded = true
  self
end

#stores_foreign_key?false

Does this association type store the foreign key?

Returns:

  • (false)

    Always false.

Since:

  • 7.0



68
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 68

def stores_foreign_key?; false; end

#validation_defaultfalse

The default for validating the association object.

Returns:

  • (false)

    Always false.

Since:

  • 7.0



75
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embedded_in.rb', line 75

def validation_default; false; end