Sha256: 48ec798fbbf2c0d55f5c27ba7603f4acf6ec0894693aa6b3574ae79177078fb4

Contents?: true

Size: 1.74 KB

Versions: 10

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

module Mongoid
  module Association
    module Embedded
      class EmbedsOne

        # Builder class for embeds_one associations.
        module Buildable
          include Threaded::Lifecycle

          # Builds the document out of the attributes using the provided
          # association metadata on the association. Instantiates through the factory in order
          # to make sure subclasses and allocation are used if fitting.
          #
          # @example Build the document.
          #   Builder.new(meta, attrs).build
          #
          # @param [ Document ] base The document this association hangs off of.
          # @param [ Document | Hash ] object The related document.
          # @param [ String ] _type Not used in this context.
          # @param [ Hash ] selected_fields Fields which were retrieved via
          #   #only. If selected_fields are specified, fields not listed in it
          #   will not be accessible in the built document.
          #
          # @return [ Document ] A single document.
          def build(base, object, _type = nil, selected_fields = nil)
            if object.is_a?(Hash)
              if _loading? && base.persisted?
                Factory.execute_from_db(klass, object, nil, selected_fields, execute_callbacks: false)
              else
                Factory.build(klass, object)
              end
            else
              clear_associated(object)
              object
            end
          end

          private

          def clear_associated(doc)
            if doc && (inv = inverse(doc))
              if associated = doc.ivar(inv)
                associated.substitute(nil)
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mongoid-8.1.9 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.8 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.7 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.6 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.5 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.4 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.3 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.2 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.1 lib/mongoid/association/embedded/embeds_one/buildable.rb
mongoid-8.1.0 lib/mongoid/association/embedded/embeds_one/buildable.rb