Sha256: 8aa886191a863a280a6eb28aadf3084a6f4d53a319cfdbf0741f470f90d9c37e

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

module Cocina
  module Models
    module Validators
      # Perform validation against all other Validators
      class Validator
        VALIDATORS = [
          OpenApiValidator,
          DarkValidator,
          PurlValidator,
          CatalogLinksValidator,
          AssociatedNameValidator,
          # Removing until production data can be remediated and/or additional types can be added to configuration.
          # See also spec/cocina/models/validatable_spec.rb:59
          # DescriptionTypesValidator,
          DescriptionValuesValidator,
          DateTimeValidator,
          LanguageTagValidator
        ].freeze

        def self.validate(clazz, attributes)
          # This gets rid of nested model objects.
          attributes_hash = attributes.to_h.deep_transform_values do |value|
            value.class.name.starts_with?('Cocina::Models') ? value.to_h : value
          end.with_indifferent_access
          VALIDATORS.each { |validator| validator.validate(clazz, attributes_hash) }
        end

        def self.deep_transform_values(object, &block)
          case object
          when Hash
            object.transform_values { |value| deep_transform_values(value, &block) }
          when Array
            object.map { |e| deep_transform_values(e, &block) }
          else
            yield(object)
          end
        end
        private_class_method :deep_transform_values
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cocina-models-0.93.1 lib/cocina/models/validators/validator.rb
cocina-models-0.93.0 lib/cocina/models/validators/validator.rb
cocina-models-0.92.0 lib/cocina/models/validators/validator.rb