Sha256: 918aa51dc9fd7b4a45963fb7574d929b61f863a05953dd19598cd72d7223d1a3

Contents?: true

Size: 1.49 KB

Versions: 16

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true
# encoding: utf-8

module Mongoid
  module Validatable

    # Validates whether or not an association is valid or not. Will correctly
    # handle has one and has many associations.
    #
    # @example Set up the association validations.
    #
    #   class Person
    #     include Mongoid::Document
    #     embeds_one :name
    #     embeds_many :addresses
    #
    #     validates_associated :name, :addresses
    #   end
    class AssociatedValidator < ActiveModel::EachValidator

      # Validates that the associations provided are either all nil or all
      # valid. If neither is true then the appropriate errors will be added to
      # the parent document.
      #
      # @example Validate the association.
      #   validator.validate_each(document, :name, name)
      #
      # @param [ Document ] document The document to validate.
      # @param [ Symbol ] attribute The association to validate.
      # @param [ Object ] value The value of the association.
      #
      # @since 2.0.0
      def validate_each(document, attribute, value)
        begin
          document.begin_validate
          valid = Array.wrap(value).collect do |doc|
            if doc.nil? || doc.flagged_for_destroy?
              true
            else
              doc.validated? ? true : doc.valid?
            end
          end.all?
        ensure
          document.exit_validate
        end
        document.errors.add(attribute, :invalid, options) unless valid
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/lib/mongoid/validatable/associated.rb
mongoid-7.3.0 lib/mongoid/validatable/associated.rb
mongoid-7.2.3 lib/mongoid/validatable/associated.rb
mongoid-7.1.8 lib/mongoid/validatable/associated.rb
mongoid-7.2.2 lib/mongoid/validatable/associated.rb
mongoid-7.2.1 lib/mongoid/validatable/associated.rb
mongoid-7.1.7 lib/mongoid/validatable/associated.rb
mongoid-7.2.0 lib/mongoid/validatable/associated.rb
mongoid-7.1.6 lib/mongoid/validatable/associated.rb
mongoid-7.1.5 lib/mongoid/validatable/associated.rb
mongoid-7.2.0.rc1 lib/mongoid/validatable/associated.rb
mongoid-7.1.4 lib/mongoid/validatable/associated.rb
mongoid-7.1.2 lib/mongoid/validatable/associated.rb
mongoid-7.1.1 lib/mongoid/validatable/associated.rb
mongoid-7.1.0 lib/mongoid/validatable/associated.rb
mongoid-7.1.0.rc0 lib/mongoid/validatable/associated.rb