Class: Mongoid::Association::Embedded::EmbedsOne

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

Overview

The EmbedsOne 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,
    :as,
    :cascade_callbacks,
    :cyclic,
    :store_as
]
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, #touch_field

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



76
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 76

def embedded?; true; end

#keyString

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

Returns:

  • (String)

    The name of the field used to store the association.

Since:

  • 7.0



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

def key
  store_as.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



138
139
140
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 138

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



115
116
117
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 115

def polymorphic?
  @polymorphic ||= !!@options[:as]
end

#primary_keynil

The primary key

Returns:

  • (nil)

    Not relevant for this association

Since:

  • 7.0



99
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 99

def primary_key; end

#relationAssociation::Embedded::EmbedsMany::Proxy

Get the association proxy class for this association type.

Returns:

Since:

  • 7.0



106
107
108
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 106

def relation
  Proxy
end

#setup!self

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

Returns:

  • (self)

Since:

  • 7.0



46
47
48
49
50
51
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 46

def setup!
  setup_instance_methods!
  @owner_class.embedded_relations = @owner_class.embedded_relations.merge(name => self)
  @owner_class.aliased_fields[name.to_s] = store_as if store_as
  self
end

#store_asString

The field key used to store the association object.

Returns:

  • (String)

    The field name.

Since:

  • 7.0



58
59
60
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 58

def store_as
  @store_as ||= (@options[:store_as].try(:to_s) || name.to_s)
end

#stores_foreign_key?false

Does this association type store the foreign key?

Returns:

  • (false)

    Always false.

Since:

  • 7.0



94
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 94

def stores_foreign_key?; false; end

#typeString?

Note:

Only relevant if the association is polymorphic.

The field used to store the type of the related object.

Returns:

  • (String, nil)

    The field for storing the associated object’s type.

Since:

  • 7.0



126
127
128
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 126

def type
  @type ||= "#{as}_type" if polymorphic?
end

#validation_defaulttrue, false

Get the default validation setting for the association. Determines if by default a validates associated will occur.

Examples:

Get the validation default.

Proxy.validation_default

Returns:

  • (true, false)

    The validation default.

Since:

  • 2.1.9



87
# File 'build/mongoid-7.3/lib/mongoid/association/embedded/embeds_one.rb', line 87

def validation_default; true; end