Sha256: 7b965d30cd5fb516d65057a50d867e910d960848546d95cd8525a66e9bcfed2d

Contents?: true

Size: 1.8 KB

Versions: 22

Compression:

Stored size: 1.8 KB

Contents

# frozen-string-literal: true

module Sequel
  module Plugins
    # The delay_add_association plugin delays the adding of
    # associated objects to a new (unsaved) object until after the new
    # object is saved.  By default, if you attempt to add
    # associated objects to a new object, Sequel will raise
    # an error, because you need to have a primary key before
    # saving the objects.
    #
    # When delaying the add of an associated object, the object
    # will be immediately added to the cached association array.
    # When saving the current object, it will also attempt to
    # validate any associated objects, and if the associated objects
    # are not valid, the current object will also be considered
    # not valid.
    #
    # Usage:
    #
    #   # Make all model subclass delay add_association for new objects
    #   Sequel::Model.plugin :delay_add_association
    #
    #   # Make the Album class delay add_association for new objects
    #   Album.plugin :delay_add_association
    module DelayAddAssociation
      # Depend on the validate_associated plugin.
      def self.apply(mod)
        mod.plugin :validate_associated
      end

      module InstanceMethods
        private

        # Delay the addition of the associated object till after
        # saving the current object, if the current object is new
        # and the associated dataset requires a primary key on the
        # current object.
        def add_associated_object(opts, o, *args)
          if opts.dataset_need_primary_key? && new?
            o = make_add_associated_object(opts, o)
            delay_validate_associated_object(opts, o)
            send(opts[:name]) << o
            after_create_hook{super(opts, o, *args)}
            o
          else
            super
          end
        end
      end
    end
  end
end

Version data entries

22 entries across 20 versions & 2 rubygems

Version Path
sequel-4.49.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.48.0 lib/sequel/plugins/delay_add_association.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/sequel-4.44.0/lib/sequel/plugins/delay_add_association.rb
tdiary-5.0.5 vendor/bundle/gems/sequel-4.47.0/lib/sequel/plugins/delay_add_association.rb
tdiary-5.0.5 vendor/bundle/gems/sequel-4.44.0/lib/sequel/plugins/delay_add_association.rb
sequel-4.47.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.46.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.45.0 lib/sequel/plugins/delay_add_association.rb
tdiary-5.0.4 vendor/bundle/gems/sequel-4.44.0/lib/sequel/plugins/delay_add_association.rb
sequel-4.44.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.43.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.42.1 lib/sequel/plugins/delay_add_association.rb
sequel-4.42.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.41.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.40.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.39.0 lib/sequel/plugins/delay_add_association.rb
tdiary-5.0.2 vendor/bundle/gems/sequel-4.37.0/lib/sequel/plugins/delay_add_association.rb
sequel-4.38.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.37.0 lib/sequel/plugins/delay_add_association.rb
sequel-4.36.0 lib/sequel/plugins/delay_add_association.rb