Class: Mongoid::Relations::Metadata

Inherits:
Hash
  • Object
show all
Defined in:
lib/mongoid/relations/metadata.rb

Overview

The “Grand Poobah” of information about any relation is this class. It contains everything you could ever possible want to know.

Instance Method Summary collapse

Constructor Details

#initialize(properties = {}) ⇒ Metadata

Instantiate new metadata for a relation.

Examples:

Create the new metadata.

Metadata.new(:name => :addresses)

Parameters:

  • properties (Hash) (defaults to: {})

    The relation options.

Since:

  • 2.0.0.rc.1



345
346
347
348
# File 'lib/mongoid/relations/metadata.rb', line 345

def initialize(properties = {})
  Options.validate!(properties)
  merge!(properties)
end

Instance Method Details

#astrue, false

Returns the as option of the relation.

Examples:

Get the as option.

.as

Returns:

  • (true, false)

    The as option.

Since:

  • 2.1.0



19
20
21
# File 'lib/mongoid/relations/metadata.rb', line 19

def as
  self[:as]
end

#as?true, false

Tells whether an as option exists.

Examples:

Is the as option set?

.as?

Returns:

  • (true, false)

    True if an as exists, false if not.

Since:

  • 2.0.0.rc.1



31
32
33
# File 'lib/mongoid/relations/metadata.rb', line 31

def as?
  !!as
end

#autobuilding?true, false

Is the relation autobuilding if accessed via the getter and the document is new.

Examples:

Is the relation autobuilding?

.autobuilding?

Returns:

  • (true, false)

    If the relation autobuilds.

Since:

  • 3.0.0



44
45
46
# File 'lib/mongoid/relations/metadata.rb', line 44

def autobuilding?
  !!self[:autobuild]
end

#autosavetrue, false

Returns the autosave option of the relation.

Examples:

Get the autosave option.

.autosave

Returns:

  • (true, false)

    The autosave option.

Since:

  • 2.1.0



56
57
58
# File 'lib/mongoid/relations/metadata.rb', line 56

def autosave
  self[:autosave]
end

#autosave?true, false

Does the metadata have a autosave option?

Examples:

Is the relation autosaving?

.autosave?

Returns:

  • (true, false)

    If the relation autosaves.

Since:

  • 2.1.0



68
69
70
# File 'lib/mongoid/relations/metadata.rb', line 68

def autosave?
  !!autosave
end

#builder(base, object) ⇒ Builder

Gets a relation builder associated with the relation this metadata is for.

Examples:

Get the builder.

.builder(document)

Parameters:

  • base (Document)

    The base document.

  • object (Object)

    A document or attributes to give the builder.

Returns:

  • (Builder)

    The builder for the relation.

Since:

  • 2.0.0.rc.1



84
85
86
# File 'lib/mongoid/relations/metadata.rb', line 84

def builder(base, object)
  relation.builder(base, self, object)
end

#cascade_strategyObject

Returns the name of the strategy used for handling dependent relations.

Examples:

Get the strategy.

.cascade_strategy

Returns:

  • (Object)

    The cascading strategy to use.

Since:

  • 2.0.0.rc.1



96
97
98
99
100
# File 'lib/mongoid/relations/metadata.rb', line 96

def cascade_strategy
  if dependent?
    "Mongoid::Relations::Cascading::#{dependent.to_s.classify}".constantize
  end
end

#cascading_callbacks?true, false

Is this an embedded relations that allows callbacks to cascade down to it?

Examples:

Does the relation have cascading callbacks?

.cascading_callbacks?

Returns:

  • (true, false)

    If the relation cascades callbacks.

Since:

  • 2.3.0



111
112
113
# File 'lib/mongoid/relations/metadata.rb', line 111

def cascading_callbacks?
  !!self[:cascade_callbacks]
end

#class_nameString

Returns the name of the class that this relation contains. If the class_name was provided as an option this will return that, otherwise it will determine the name from the name property.

Examples:

Get the class name.

.class_name

Returns:

  • (String)

    The name of the relation’s proxied class.

Since:

  • 2.0.0.rc.1



125
126
127
# File 'lib/mongoid/relations/metadata.rb', line 125

def class_name
  @class_name ||= (self[:class_name] || classify).sub(/\A::/,"")
end

#constraintConstraint

Get the foreign key contraint for the metadata.

Examples:

Get the constaint.

.constraint

Returns:

Since:

  • 2.0.0.rc.1



137
138
139
# File 'lib/mongoid/relations/metadata.rb', line 137

def constraint
  @constraint ||= Constraint.new(self)
end

#criteria(object, type) ⇒ Criteria

Get the criteria that is used to query for this metadata’s relation.

Examples:

Get the criteria.

.criteria([ id_one, id_two ])

Parameters:

  • object (Object)

    The foreign key used for the query.

  • type (Class)

    The base class.

Returns:

Since:

  • 2.1.0



152
153
154
155
# File 'lib/mongoid/relations/metadata.rb', line 152

def criteria(object, type)
  query = relation.criteria(self, object, type)
  order ? query.order_by(order) : query
end

#cyclictrue, false

Returns the cyclic option of the relation.

Examples:

Get the cyclic option.

.cyclic

Returns:

  • (true, false)

    The cyclic option.

Since:

  • 2.1.0



165
166
167
# File 'lib/mongoid/relations/metadata.rb', line 165

def cyclic
  self[:cyclic]
end

#cyclic?true, false

Does the metadata have a cyclic option?

Examples:

Is the metadata cyclic?

.cyclic?

Returns:

  • (true, false)

    If the metadata is cyclic.

Since:

  • 2.1.0



177
178
179
# File 'lib/mongoid/relations/metadata.rb', line 177

def cyclic?
  !!cyclic
end

#dependentSymbol

Returns the dependent option of the relation.

Examples:

Get the dependent option.

.dependent

Returns:

  • (Symbol)

    The dependent option.

Since:

  • 2.1.0



189
190
191
# File 'lib/mongoid/relations/metadata.rb', line 189

def dependent
  self[:dependent]
end

#dependent?true, false

Does the metadata have a dependent option?

Examples:

Is the metadata performing cascades?

.dependent?

Returns:

  • (true, false)

    If the metadata cascades.

Since:

  • 2.1.0



201
202
203
# File 'lib/mongoid/relations/metadata.rb', line 201

def dependent?
  !!dependent
end

#destructive?true, false

Does the relation have a destructive dependent option specified. This is true for :dependent => :delete and :dependent => :destroy.

Examples:

Is the relation destructive?

.destructive?

Returns:

  • (true, false)

    If the relation is destructive.

Since:

  • 2.1.0



652
653
654
# File 'lib/mongoid/relations/metadata.rb', line 652

def destructive?
  @destructive ||= (dependent == :delete || dependent == :destroy)
end

#eager_load(ids) ⇒ Criteria

Get the criteria needed to eager load this relation.

Examples:

Get the eager loading criteria.

.eager_load(criteria)

Parameters:

  • ids (Array<Object>)

    The ids of the returned parents.

Returns:

  • (Criteria)

    The eager loading criteria.

Since:

  • 2.2.0



215
216
217
# File 'lib/mongoid/relations/metadata.rb', line 215

def eager_load(ids)
  relation.eager_load(self, ids)
end

#embedded?true, false

Will determine if the relation is an embedded one or not. Currently only checks against embeds one and many.

Examples:

Is the document embedded.

.embedded?

Returns:

  • (true, false)

    True if embedded, false if not.

Since:

  • 2.0.0.rc.1



228
229
230
# File 'lib/mongoid/relations/metadata.rb', line 228

def embedded?
  @embedded ||= (macro == :embeds_one || macro == :embeds_many)
end

#extensionModule

Returns the extension of the relation.

Examples:

Get the relation extension.

.extension

Returns:

  • (Module)

    The extension or nil.

Since:

  • 2.0.0.rc.1



240
241
242
# File 'lib/mongoid/relations/metadata.rb', line 240

def extension
  self[:extend]
end

#extension?true, false

Tells whether an extension definition exist for this relation.

Examples:

Is an extension defined?

.extension?

Returns:

  • (true, false)

    True if an extension exists, false if not.

Since:

  • 2.0.0.rc.1



252
253
254
# File 'lib/mongoid/relations/metadata.rb', line 252

def extension?
  !!extension
end

#forced_nil_inverse?true, false

Does this metadata have a forced nil inverse_of defined. (Used in many to manies)

Examples:

Is this a forced nil inverse?

.forced_nil_inverse?

Returns:

  • (true, false)

    If inverse_of has been explicitly set to nil.

Since:

  • 2.3.3



265
266
267
# File 'lib/mongoid/relations/metadata.rb', line 265

def forced_nil_inverse?
  @forced_nil_inverse ||= has_key?(:inverse_of) && inverse_of.nil?
end

#foreign_keyString

Handles all the logic for figuring out what the foreign_key is for each relations query. The logic is as follows:

  1. If the developer defined a custom key, use that.

  2. If the relation stores a foreign key, use the class_name_id strategy.

  3. If the relation does not store the key, use the inverse_class_name_id strategy.

Examples:

Get the foreign key.

.foreign_key

Returns:

  • (String)

    The foreign key for the relation.

Since:

  • 2.0.0.rc.1



284
285
286
# File 'lib/mongoid/relations/metadata.rb', line 284

def foreign_key
  @foreign_key ||= determine_foreign_key
end

#foreign_key_checkString

Get the name of the method to check if the foreign key has changed.

Examples:

Get the foreign key check method.

.foreign_key_check

Returns:

  • (String)

    The foreign key check.

Since:

  • 2.1.0



296
297
298
# File 'lib/mongoid/relations/metadata.rb', line 296

def foreign_key_check
  @foreign_key_check ||= "#{foreign_key}_changed?"
end

#foreign_key_setterString

Returns the name of the method used to set the foreign key on a document.

Examples:

Get the setter for the foreign key.

.foreign_key_setter

Returns:

  • (String)

    The foreign_key plus =.

Since:

  • 2.0.0.rc.1



309
310
311
# File 'lib/mongoid/relations/metadata.rb', line 309

def foreign_key_setter
  @foreign_key_setter ||= "#{foreign_key}="
end

#indextrue, false

Returns the index option of the relation.

Examples:

Get the index option.

.index

Returns:

  • (true, false)

    The index option.

Since:

  • 2.1.0



321
322
323
# File 'lib/mongoid/relations/metadata.rb', line 321

def index
  self[:index]
end

#indexed?true, false

Tells whether a foreign key index exists on the relation.

Examples:

Is the key indexed?

.indexed?

Returns:

  • (true, false)

    True if an index exists, false if not.

Since:

  • 2.0.0.rc.1



333
334
335
# File 'lib/mongoid/relations/metadata.rb', line 333

def indexed?
  !!index
end

#inspectString

Since a lot of the information from the metadata is inferred and not explicitly stored in the hash, the inspection needs to be much more detailed.

Examples:

Inspect the metadata.

.inspect

Returns:

  • (String)

    Oodles of information in a nice format.

Since:

  • 2.0.0.rc.1



360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
# File 'lib/mongoid/relations/metadata.rb', line 360

def inspect
  ::I18n.translate(
    "mongoid.inspection.metadata",
    {
      autobuild: autobuilding?,
      class_name: class_name,
      cyclic: cyclic.inspect,
      dependent: dependent.inspect,
      inverse_of: inverse_of.inspect,
      key: key,
      locale: :en,
      macro: macro,
      name: name,
      order: order.inspect,
      polymorphic: polymorphic?,
      relation: relation,
      setter: setter,
      versioned: versioned?
    }
  )
end

#inverse(other = nil) ⇒ Symbol

Get the name of the inverse relation if it exists. If this is a polymorphic relation then just return the :as option that was defined.

Examples:

Get the name of the inverse.

.inverse

Parameters:

  • other (Document) (defaults to: nil)

    The document to aid in the discovery.

Returns:

  • (Symbol)

    The inverse name.

Since:

  • 2.0.0.rc.1



410
411
412
413
# File 'lib/mongoid/relations/metadata.rb', line 410

def inverse(other = nil)
  invs = inverses(other)
  invs.first if invs.count == 1
end

#inverse_class_nametrue, false

Returns the inverse_class_name option of the relation.

Examples:

Get the inverse_class_name option.

.inverse_class_name

Returns:

  • (true, false)

    The inverse_class_name option.

Since:

  • 2.1.0



423
424
425
# File 'lib/mongoid/relations/metadata.rb', line 423

def inverse_class_name
  self[:inverse_class_name]
end

#inverse_class_name?true, false

Returns the if the inverse class name option exists.

Examples:

Is an inverse class name defined?

.inverse_class_name?

Returns:

  • (true, false)

    If the inverse if defined.

Since:

  • 2.1.0



435
436
437
# File 'lib/mongoid/relations/metadata.rb', line 435

def inverse_class_name?
  !!inverse_class_name
end

#inverse_foreign_keyString

Used for relational many to many only. This determines the name of the foreign key field on the inverse side of the relation, since in this case there are keys on both sides.

Examples:

Find the inverse foreign key

.inverse_foreign_key

Returns:

  • (String)

    The foreign key on the inverse.

Since:

  • 2.0.0.rc.1



449
450
451
# File 'lib/mongoid/relations/metadata.rb', line 449

def inverse_foreign_key
  @inverse_foreign_key ||= determine_inverse_foreign_key
end

#inverse_klassClass

Returns the inverse class of the proxied relation.

Examples:

Get the inverse class.

.inverse_klass

Returns:

  • (Class)

    The class of the inverse of the relation.

Since:

  • 2.0.0.rc.1



461
462
463
# File 'lib/mongoid/relations/metadata.rb', line 461

def inverse_klass
  @inverse_klass ||= inverse_class_name.constantize
end

#inverse_metadata(document) ⇒ Metadata

Get the metadata for the inverse relation.

Examples:

Get the inverse metadata.

.(doc)

Parameters:

  • document (Document)

    The document to check.

Returns:

Since:

  • 2.1.0



475
476
477
# File 'lib/mongoid/relations/metadata.rb', line 475

def (document)
  document.reflect_on_association(inverse(document))
end

#inverse_oftrue, false

Returns the inverse_of option of the relation.

Examples:

Get the inverse_of option.

.inverse_of

Returns:

  • (true, false)

    The inverse_of option.

Since:

  • 2.1.0



487
488
489
# File 'lib/mongoid/relations/metadata.rb', line 487

def inverse_of
  self[:inverse_of]
end

#inverse_of?true, false

Does the metadata have a inverse_of option?

Examples:

Is an inverse_of defined?

.inverse_of?

Returns:

  • (true, false)

    If the relation has an inverse_of defined.

Since:

  • 2.1.0



499
500
501
# File 'lib/mongoid/relations/metadata.rb', line 499

def inverse_of?
  !!inverse_of
end

#inverse_of_fieldString

Returns the name of the field in which to store the name of the inverse field for the polymorphic relation.

Examples:

Get the name of the field.

.inverse_of_field

Returns:

  • (String)

    The name of the field for storing the name of the inverse field.

Since:

  • 2.4.5



554
555
556
# File 'lib/mongoid/relations/metadata.rb', line 554

def inverse_of_field
  @inverse_of_field ||= determine_inverse_for(:field)
end

#inverse_of_field_setterString

Gets the setter for the field that stores the name of the inverse field on a polymorphic relation.

Examples:

Get the inverse type setter.

.inverse_of_field_setter

Returns:

  • (String)

    The name of the setter.



565
566
567
# File 'lib/mongoid/relations/metadata.rb', line 565

def inverse_of_field_setter
  @inverse_of_field_setter ||= inverse_of_field ? "#{inverse_of_field}=" : nil
end

#inverse_setter(other = nil) ⇒ String

Returns the setter for the inverse side of the relation.

Examples:

Get the inverse setter.

.inverse_setter

Parameters:

  • other (Document) (defaults to: nil)

    A document to aid in the discovery.

Returns:

  • (String)

    The inverse setter name.

Since:

  • 2.0.0.rc.1



513
514
515
516
# File 'lib/mongoid/relations/metadata.rb', line 513

def inverse_setter(other = nil)
  inv = inverse(other)
  inv ? "#{inv}=" : nil
end

#inverse_typeString

Returns the name of the field in which to store the name of the class for the polymorphic relation.

Examples:

Get the name of the field.

.inverse_type

Returns:

  • (String)

    The name of the field for storing the type.

Since:

  • 2.0.0.rc.1



527
528
529
# File 'lib/mongoid/relations/metadata.rb', line 527

def inverse_type
  @inverse_type ||= determine_inverse_for(:type)
end

#inverse_type_setterString

Gets the setter for the field that sets the type of document on a polymorphic relation.

Examples:

Get the inverse type setter.

.inverse_type_setter

Returns:

  • (String)

    The name of the setter.

Since:

  • 2.0.0.rc.1



540
541
542
# File 'lib/mongoid/relations/metadata.rb', line 540

def inverse_type_setter
  @inverse_type_setter ||= inverse_type ? "#{inverse_type}=" : nil
end

#inverses(other = nil) ⇒ Array<Symbol>

Get the name of the inverse relations if they exists. If this is a polymorphic relation then just return the :as option that was defined.

Examples:

Get the names of the inverses.

.inverses

Parameters:

  • other (Document) (defaults to: nil)

    The document to aid in the discovery.

Returns:

  • (Array<Symbol>)

    The inverse name.



391
392
393
394
395
396
397
# File 'lib/mongoid/relations/metadata.rb', line 391

def inverses(other = nil)
  if self[:polymorphic]
    lookup_inverses(other)
  else
    @inverses ||= determine_inverses
  end
end

#keyString

This returns the key that is to be used to grab the attributes for the relation or the foreign key or id that a referenced relation will use to query for the object.

Examples:

Get the lookup key.

.key

Returns:

  • (String)

    The association name, foreign key name, or _id.

Since:

  • 2.0.0.rc.1



579
580
581
# File 'lib/mongoid/relations/metadata.rb', line 579

def key
  @key ||= determine_key
end

#klassClass

Returns the class of the proxied relation.

Examples:

Get the class.

.klass

Returns:

  • (Class)

    The class of the relation.

Since:

  • 2.0.0.rc.1



591
592
593
# File 'lib/mongoid/relations/metadata.rb', line 591

def klass
  @klass ||= class_name.constantize
end

#macroSymbol

Returns the macro for the relation of this metadata.

Examples:

Get the macro.

.macro

Returns:

Since:

  • 2.0.0.rc.1



615
616
617
# File 'lib/mongoid/relations/metadata.rb', line 615

def macro
  relation.macro
end

#many?true, false

Is this metadata representing a one to many or many to many relation?

Examples:

Is the relation a many?

.many?

Returns:

  • (true, false)

    If the relation is a many.

Since:

  • 2.1.6



603
604
605
# File 'lib/mongoid/relations/metadata.rb', line 603

def many?
  @many ||= (relation.macro.to_s =~ /many/)
end

#nameSymbol

Get the name associated with this metadata.

Examples:

Get the name.

.name

Returns:

Since:

  • 2.1.0



627
628
629
# File 'lib/mongoid/relations/metadata.rb', line 627

def name
  self[:name]
end

#name?true, false

Is the name defined?

Examples:

Is the name defined?

.name?

Returns:

  • (true, false)

    If the name is defined.

Since:

  • 2.1.0



639
640
641
# File 'lib/mongoid/relations/metadata.rb', line 639

def name?
  !!name
end

#nested_builder(attributes, options) ⇒ NestedBuilder

Gets a relation nested builder associated with the relation this metadata is for. Nested builders are used in conjunction with nested attributes.

Examples:

Get the nested builder.

.nested_builder(attributes, options)

Parameters:

  • attributes (Hash)

    The attributes to build the relation with.

  • options (Hash)

    Options for the nested builder.

Returns:

Since:

  • 2.0.0.rc.1



668
669
670
# File 'lib/mongoid/relations/metadata.rb', line 668

def nested_builder(attributes, options)
  relation.nested_builder(self, attributes, options)
end

#optionsMetadata

Returns the metadata itself. Here for compatibility with Rails association metadata.

Examples:

Get the options.

.options

Returns:

Since:

  • 2.4.6



797
798
799
# File 'lib/mongoid/relations/metadata.rb', line 797

def options
  self
end

#orderCriterion::Complex?

Returns default order for this association.

Examples:

Get default order

.order

Returns:

  • (Criterion::Complex, nil)

    nil if doesn’t set

Since:

  • 2.1.0



809
810
811
# File 'lib/mongoid/relations/metadata.rb', line 809

def order
  self[:order]
end

#order?true, false

Is a default order set?

Examples:

Is the order set?

.order?

Returns:

  • (true, false)

    If the order is set.

Since:

  • 2.1.0



821
822
823
# File 'lib/mongoid/relations/metadata.rb', line 821

def order?
  !!order
end

#path(document) ⇒ Object

Get the path calculator for the supplied document.

Examples:

Get the path calculator.

.path(document)

Parameters:

  • document (Document)

    The document to calculate on.

Returns:

  • (Object)

    The atomic path calculator.

Since:

  • 2.1.0



682
683
684
# File 'lib/mongoid/relations/metadata.rb', line 682

def path(document)
  relation.path(document)
end

#polymorphic?true, false

Returns true if the relation is polymorphic.

Examples:

Is the relation polymorphic?

.polymorphic?

Returns:

  • (true, false)

    True if the relation is polymorphic, false if not.

Since:

  • 2.0.0.rc.1



694
695
696
# File 'lib/mongoid/relations/metadata.rb', line 694

def polymorphic?
  @polymorphic ||= (!!self[:as] || !!self[:polymorphic])
end

#relationProxy

Get the relation associated with this metadata.

Examples:

Get the relation.

.relation

Returns:

  • (Proxy)

    The relation proxy class.

Since:

  • 2.1.0



706
707
708
# File 'lib/mongoid/relations/metadata.rb', line 706

def relation
  self[:relation]
end

#setterString

Gets the method name used to set this relation.

Examples:

Get the setter.

 = Metadata.new(:name => :person)
.setter # => "person="

Returns:

  • (String)

    The name plus “=”.

Since:

  • 2.0.0.rc.1



719
720
721
# File 'lib/mongoid/relations/metadata.rb', line 719

def setter
  @setter ||= "#{name.to_s}="
end

#store_asString

Key where embedded document is save. By default is the name of relation

Returns:

  • (String)

    the name of key where save

Since:

  • 3.0.0



756
757
758
# File 'lib/mongoid/relations/metadata.rb', line 756

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

#touchable?true, false

Is this relation touchable?

Examples:

Is the relation touchable?

.touchable?

Returns:

  • (true, false)

    If the relation can be touched.

Since:

  • 3.0.0



833
834
835
# File 'lib/mongoid/relations/metadata.rb', line 833

def touchable?
  !!self[:touch]
end

#typeString

Returns the name of the field in which to store the name of the class for the polymorphic relation.

Examples:

Get the name of the field.

.inverse_type

Returns:

  • (String)

    The name of the field for storing the type.

Since:

  • 2.0.0.rc.1



732
733
734
# File 'lib/mongoid/relations/metadata.rb', line 732

def type
  @type ||= polymorphic? ? "#{as.to_s}_type" : nil
end

#type_setterString

Gets the setter for the field that sets the type of document on a polymorphic relation.

Examples:

Get the inverse type setter.

.inverse_type_setter

Returns:

  • (String)

    The name of the setter.

Since:

  • 2.0.0.rc.1



745
746
747
# File 'lib/mongoid/relations/metadata.rb', line 745

def type_setter
  @type_setter ||= type ? "#{type}=" : nil
end

#validate?true, false

Are we validating this relation automatically?

Examples:

Is automatic validation on?

.validate?

Returns:

  • (true, false)

    True unless explictly set to false.

Since:

  • 2.0.0.rc.1



768
769
770
771
772
773
774
# File 'lib/mongoid/relations/metadata.rb', line 768

def validate?
  unless self[:validate].nil?
    self[:validate]
  else
    self[:validate] = relation.validation_default
  end
end

#versioned?true, false

Is this relation using Mongoid’s internal versioning system?

Examples:

Is this relation versioned?

.versioned?

Returns:

  • (true, false)

    If the relation uses Mongoid versioning.

Since:

  • 2.1.0



784
785
786
# File 'lib/mongoid/relations/metadata.rb', line 784

def versioned?
  !!self[:versioned]
end