Sha256: 0e6bc0d51571060c6a5eae2716ccb73c14ec3701172ad41f7f26d057ab5238b5

Contents?: true

Size: 1.87 KB

Versions: 10

Compression:

Stored size: 1.87 KB

Contents

module Dry
  module Validation
    module TypeSpecs
      def self.extended(klass)
        super
        klass.class_eval do
          setting :input_processor, :noop
          setting :hash_type, :weak
          setting :type_map, {}
        end
      end

      def build_type_map(type_specs, category = config.input_processor)
        if type_specs.is_a?(Array)
          build_array_type(type_specs[0], category)
        else
          type_specs.reduce({}) { |res, (name, spec)|
            res.update(name => resolve_spec(spec, category))
          }
        end
      end

      def build_hash_type(spec = type_map)
        lookup_type("hash", config.input_processor)
          .public_send(config.hash_type, spec)
      end

      def build_array_type(spec, category)
        member_schema = build_type_map(spec, category)
        member_type = lookup_type("hash", category)
          .public_send(config.hash_type, member_schema)

        lookup_type("array", category).of(member_type)
      end

      def build_sum_type(spec, category)
        spec
          .map { |id| id.is_a?(Symbol) ? lookup_type(id, category) : id }
          .reduce(:|)
      end

      def resolve_spec(spec, category)
        case spec
        when Symbol
          lookup_type(spec, category)
        when Hash
          build_hash_type(spec)
        when Array
          if spec.size == 1
            if spec[0].is_a?(Hash)
              build_array_type(spec[0], category)
            else
              array_member = lookup_type(spec[0], category)
              lookup_type("array", category).of(array_member)
            end
          else
            build_sum_type(spec, category)
          end
        else
          spec
        end
      end

      def lookup_type(name, category)
        id = "#{category}.#{name}"
        Types.type_keys.include?(id) ? Types[id] : Types[name.to_s]
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dry-validation-0.13.3 lib/dry/validation/type_specs.rb
dry-validation-0.13.2 lib/dry/validation/type_specs.rb
dry-validation-0.13.1 lib/dry/validation/type_specs.rb
dry-validation-0.11.2 lib/dry/validation/type_specs.rb
dry-validation-0.12.3 lib/dry/validation/type_specs.rb
dry-validation-0.13.0 lib/dry/validation/type_specs.rb
dry-validation-0.12.2 lib/dry/validation/type_specs.rb
dry-validation-0.12.1 lib/dry/validation/type_specs.rb
dry-validation-0.12.0 lib/dry/validation/type_specs.rb
dry-validation-0.11.1 lib/dry/validation/type_specs.rb