Module: Mongoid::Document

Extended by:
ActiveSupport::Concern
Includes:
Components
Defined in:
lib/mongoid/document.rb,
lib/mongoid/railties/document.rb

Overview

This is the base module for all domain objects that need to be persisted to the database as documents.

Defined Under Namespace

Modules: ClassMethods

Constant Summary

Constants included from Components

Components::MODULES

Constants included from Callbacks

Callbacks::CALLBACKS

Constants included from Atomic

Atomic::UPDATES

Instance Attribute Summary collapse

Attributes included from State

#destroyed, #flagged_for_destroy

Attributes included from Relations

#metadata

Attributes included from Attributes

#attributes, #attributes_before_type_cast

Instance Method Summary collapse

Methods included from Components

prohibited_methods

Methods included from Equality

#<=>, #==, #===, #eql?

Methods included from Copyable

#clone

Methods included from Callbacks

#callback_executable?, #in_callback_state?, observables, registered_observables, #run_after_callbacks, #run_before_callbacks, #run_callbacks

Methods included from Validations

#begin_validate, #exit_validate, #read_attribute_for_validation, #valid?, #validated?, #validating_with_query?

Methods included from Timestamps::Timeless

#timeless, #timestamping?

Methods included from State

#destroyed?, #flagged_for_destroy?, #new_record?, #persisted?, #pushable?, #settable?, #updateable?

Methods included from Sharding

#shard_key_fields, #shard_key_selector

Methods included from Serialization

#serializable_hash

Methods included from Sessions

clear, #collection, #collection_name, default, disconnect, #mongo_session, #with, with_name

Methods included from Reloading

#reload

Methods included from Relations

#embedded?, #embedded_many?, #embedded_one?, #metadata_name, #referenced_many?, #referenced_one?, #reload_relations

Methods included from Relations::Synchronization

#remove_inverse_keys, #syncable?, #synced, #synced?, #update_inverse_keys

Methods included from Relations::Reflections

#reflect_on_all_associations, #reflect_on_association

Methods included from Relations::Macros

#associations

Methods included from Relations::Cascading

#cascade!

Methods included from Relations::AutoSave

#autosaved?, #begin_autosave, #exit_autosave

Methods included from Relations::Accessors

#__build__, #create_relation, #relation_exists?, #reset_relation_criteria, #set_relation

Methods included from Persistence

#destroy, #insert, #remove, #save, #save!, #touch, #update, #update_attribute, #update_attributes, #update_attributes!, #upsert

Methods included from Atomic::Positionable

#positionally

Methods included from Atomic

#add_atomic_pull, #add_atomic_unset, #atomic_array_add_to_sets, #atomic_array_pulls, #atomic_array_pushes, #atomic_attribute_name, #atomic_delete_modifier, #atomic_insert_modifier, #atomic_path, #atomic_paths, #atomic_position, #atomic_pulls, #atomic_pushes, #atomic_selector, #atomic_sets, #atomic_unsets, #atomic_updates, #delayed_atomic_pulls, #delayed_atomic_sets, #delayed_atomic_unsets, #flag_as_destroyed, #flagged_destroys, #process_flagged_destroys

Methods included from Matchers

#matches?

Methods included from Inspection

#inspect

Methods included from Hierarchy

#_children, #_root, #_root?, #collect_children, #flag_children_persisted, #hereditary?, #parentize, #remove_child, #reset_persisted_children

Methods included from Fields

#apply_default, #apply_defaults, #apply_post_processed_defaults, #apply_pre_processed_defaults, #attribute_names, #database_field_name, #lazy_settable?, option, options, #using_object_ids?

Methods included from Evolvable

#__evolve_object_id__

Methods included from Attributes

#assign_attributes, #attribute_present?, #has_attribute?, #has_attribute_before_type_cast?, #read_attribute, #read_attribute_before_type_cast, #remove_attribute, #respond_to?, #write_attribute, #write_attributes

Methods included from Attributes::Readonly

#attribute_writable?

Methods included from Attributes::Processing

#process_attributes

Methods included from Dirty

#changed, #changed?, #changed_attributes, #changes, #children_changed?, #move_changes, #post_persist, #previous_changes, #remove_change, #setters

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Mongoid::Attributes

Instance Attribute Details

#criteria_instance_idObject

Returns the value of attribute criteria_instance_id.



10
11
12
# File 'lib/mongoid/document.rb', line 10

def criteria_instance_id
  @criteria_instance_id
end

#new_recordObject (readonly)

Returns the value of attribute new_record.



11
12
13
# File 'lib/mongoid/document.rb', line 11

def new_record
  @new_record
end

Instance Method Details

#_destroyObject

Used in conjunction with fields_for to build a form element for the destruction of this association. Always returns false because Mongoid only supports immediate deletion of associations.

See ActionView::Helpers::FormHelper::fields_for for more info.



8
9
10
# File 'lib/mongoid/railties/document.rb', line 8

def _destroy
  false
end

#as_documentHash

Return a hash of the entire document hierarchy from this document and below. Used when the attributes are needed for everything and not just the current document.

Examples:

Get the full hierarchy.

person.as_document

Returns:

  • (Hash)

    A hash of all attributes in the hierarchy.

Since:

  • 1.0.0



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/mongoid/document.rb', line 151

def as_document
  return attributes if frozen?
  embedded_relations.each_pair do |name, meta|
    without_autobuild do
      relation, stored = send(name), meta.store_as
      if attributes.has_key?(stored) || !relation.blank?
        if relation
          attributes[stored] = relation.as_document
        else
          attributes.delete(stored)
        end
      end
    end
  end
  attributes
end

#becomes(klass) ⇒ Document

Returns an instance of the specified class with the attributes, errors, and embedded documents of the current document.

Examples:

Return a subclass document as a superclass instance.

manager.becomes(Person)

Parameters:

  • klass (Class)

    The class to become.

Returns:

  • (Document)

    An instance of the specified class.

Raises:

  • (ArgumentError)

    If the class doesn’t include Mongoid::Document

Since:

  • 2.0.0



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/mongoid/document.rb', line 181

def becomes(klass)
  unless klass.include?(Mongoid::Document)
    raise ArgumentError, "A class which includes Mongoid::Document is expected"
  end

  became = klass.new(clone_document, without_protection: true)
  became.id = id
  became.instance_variable_set(:@changed_attributes, changed_attributes)
  became.instance_variable_set(:@errors, errors)
  became.instance_variable_set(:@new_record, new_record?)
  became.instance_variable_set(:@destroyed, destroyed?)
  became.changed_attributes["_type"] = self.class.to_s
  became._type = klass.to_s
  IdentityMap.set(became) unless became.new_record?
  became
end

#cache_keyString

Print out the cache key. This will append different values on the plural model name.

If new_record? - will append /new If not - will append /id-updated_at.to_s(:number) Without updated_at - will append /id

This is usually called insode a cache() block

Examples:

Returns the cache key

document.cache_key

Returns:

  • (String)

    the string with or without updated_at

Since:

  • 2.4.0



213
214
215
216
217
# File 'lib/mongoid/document.rb', line 213

def cache_key
  return "#{model_key}/new" if new_record?
  return "#{model_key}/#{id}-#{updated_at.utc.to_s(:number)}" unless self[:updated_at].nil?
  "#{model_key}/#{id}"
end

#freezeDocument

Freezes the internal attributes of the document.

Examples:

Freeze the document

document.freeze

Returns:

Since:

  • 2.0.0



25
26
27
# File 'lib/mongoid/document.rb', line 25

def freeze
  as_document.freeze and self
end

#frozen?true, false

Checks if the document is frozen

Examples:

Check if frozen

document.frozen?

Returns:

  • (true, false)

    True if frozen, else false.

Since:

  • 2.0.0



37
38
39
# File 'lib/mongoid/document.rb', line 37

def frozen?
  attributes.frozen?
end

#hashInteger

Delegates to identity in order to allow two records of the same identity to work with something like:

[ Person.find(1), Person.find(2), Person.find(3) ] &
[ Person.find(1), Person.find(4) ] # => [ Person.find(1) ]

Examples:

Get the hash.

document.hash

Returns:

  • (Integer)

    The hash of the document’s identity.

Since:

  • 1.0.0



53
54
55
# File 'lib/mongoid/document.rb', line 53

def hash
  identity.hash
end

#identityArray

A Document’s is identified absolutely by its class and database id:

Person.first.identity #=> [Person, Moped::BSON::ObjectId(‘4f775130a04745933a000003’)]

Examples:

Get the identity

document.identity

Returns:

  • (Array)

    An array containing [document.class, document.id]

Since:

  • 3.0.0



67
68
69
# File 'lib/mongoid/document.rb', line 67

def identity
  [ self.class, self.id ]
end

#initialize(attrs = nil, options = nil) ⇒ Document

Instantiate a new Document, setting the Document’s attributes if given. If no attributes are provided, they will be initialized with an empty Hash.

If a primary key is defined, the document’s id will be set to that key, otherwise it will be set to a fresh Moped::BSON::ObjectId string.

Examples:

Create a new document.

Person.new(:title => "Sir")

Parameters:

  • attrs (Hash) (defaults to: nil)

    The attributes to set up the document with.

  • options (Hash) (defaults to: nil)

    A mass-assignment protection options. Supports :as and :without_protection

Returns:

Since:

  • 1.0.0



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/mongoid/document.rb', line 88

def initialize(attrs = nil, options = nil)
  _building do
    @new_record = true
    @attributes ||= {}
    @attributes_before_type_cast ||= {}
    options ||= {}
    apply_pre_processed_defaults
    process_attributes(attrs, options[:as] || :default, !options[:without_protection]) do
      yield(self) if block_given?
    end
    apply_post_processed_defaults
    # @todo: #2586: Need to have access to parent document in these
    #   callbacks.
    run_callbacks(:initialize) unless _initialize_callbacks.empty?
  end
end

#model_nameString

Return the model name of the document.

Examples:

Return the model name.

document.model_name

Returns:

  • (String)

    The model name.

Since:

  • 3.0.16



113
114
115
# File 'lib/mongoid/document.rb', line 113

def model_name
  self.class.model_name
end

#to_aArray<Document>

Return an array with this Document only in it.

Examples:

Return the document in an array.

document.to_a

Returns:

  • (Array<Document>)

    An array with the document as its only item.

Since:

  • 1.0.0



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

def to_a
  [ self ]
end

#to_keyObject

Return the key value for the document.

Examples:

Return the key.

document.to_key

Returns:

  • (Object)

    The id of the document or nil if new.

Since:

  • 2.4.0



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

def to_key
  (persisted? || destroyed?) ? [ id ] : nil
end