Sha256: d747c60157cef058853faeaa083a4fcc9c5ce60f8ab80128ea7866caf0e3584d

Contents?: true

Size: 1.58 KB

Versions: 163

Compression:

Stored size: 1.58 KB

Contents

# encoding: utf-8
require "mongoid/relations/cascading/delete"
require "mongoid/relations/cascading/destroy"
require "mongoid/relations/cascading/nullify"

module Mongoid # :nodoc:
  module Relations #:nodoc:

    # This module defines the behaviour for setting up cascading deletes and
    # nullifies for relations, and how to delegate to the approriate strategy.
    module Cascading
      extend ActiveSupport::Concern

      included do
        class_attribute :cascades
        self.cascades = []
      end

      # Perform all cascading deletes, destroys, or nullifies. Will delegate to
      # the appropriate strategy to perform the operation.
      #
      # @example Execute cascades.
      #   document.cascade!
      #
      # @since 2.0.0.rc.1
      def cascade!
        cascades.each do |name|
          if !metadata || !metadata.versioned?
            meta = relations[name]
            strategy = meta.cascade_strategy
            strategy.new(self, meta).cascade
          end
        end
      end

      module ClassMethods #:nodoc:

        # Attempt to add the cascading information for the document to know how
        # to handle associated documents on a removal.
        #
        # @example Set up cascading information
        #   Movie.cascade(metadata)
        #
        # @param [ Metadata ] metadata The metadata for the relation.
        #
        # @return [ Class ] The class of the document.
        #
        # @since 2.0.0.rc.1
        def cascade(metadata)
          tap { self.cascades += [ metadata.name.to_s ] if metadata.dependent? }
        end
      end
    end
  end
end

Version data entries

163 entries across 71 versions & 3 rubygems

Version Path
mongoid-2.7.1 lib/mongoid/relations/cascading.rb
mongoid-2.7.0 lib/mongoid/relations/cascading.rb
mongoid-2.6.0 lib/mongoid/relations/cascading.rb
mongoid-2.5.2 lib/mongoid/relations/cascading.rb
classiccms-0.6.9 vendor/bundle/gems/mongoid-2.4.10/lib/mongoid/relations/cascading.rb
classiccms-0.6.9 vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb
classiccms-0.6.9 vendor/bundle/gems/mongoid-2.4.9/lib/mongoid/relations/cascading.rb
classiccms-0.6.8 vendor/bundle/gems/mongoid-2.4.10/lib/mongoid/relations/cascading.rb
classiccms-0.6.8 vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb
classiccms-0.6.8 vendor/bundle/gems/mongoid-2.4.9/lib/mongoid/relations/cascading.rb
classiccms-0.6.7 vendor/bundle/gems/mongoid-2.4.9/lib/mongoid/relations/cascading.rb
classiccms-0.6.7 vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb
classiccms-0.6.7 vendor/bundle/gems/mongoid-2.4.10/lib/mongoid/relations/cascading.rb
mongoid-2.5.1 lib/mongoid/relations/cascading.rb
classiccms-0.6.6 vendor/bundle/gems/mongoid-2.4.10/lib/mongoid/relations/cascading.rb
classiccms-0.6.6 vendor/bundle/gems/mongoid-2.4.9/lib/mongoid/relations/cascading.rb
classiccms-0.6.6 vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb
classiccms-0.6.5 vendor/bundle/gems/mongoid-2.4.10/lib/mongoid/relations/cascading.rb
classiccms-0.6.5 vendor/bundle/gems/mongoid-2.4.9/lib/mongoid/relations/cascading.rb
classiccms-0.6.5 vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb