Sha256: e6c8130f491e9eb37dbcc3cfca8a9080a1e4399628f84ea6b7dc4a5f2560c6dc

Contents?: true

Size: 1.49 KB

Versions: 10

Compression:

Stored size: 1.49 KB

Contents

require 'json-schema/attribute'

module JSON
  class Schema
    class DependenciesAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        return unless data.is_a?(Hash)

        current_schema.schema['dependencies'].each do |property, dependency_value|
          next unless data.has_key?(property.to_s)
          next unless accept_value?(dependency_value)

          case dependency_value
          when String
            validate_dependency(current_schema, data, property, dependency_value, fragments, processor, self, options)
          when Array
            dependency_value.each do |value|
              validate_dependency(current_schema, data, property, value, fragments, processor, self, options)
            end
          else
            schema = JSON::Schema.new(dependency_value, current_schema.uri, validator)
            schema.validate(data, fragments, processor, options)
          end
        end
      end

      def self.validate_dependency(schema, data, property, value, fragments, processor, attribute, options)
        return if data.key?(value.to_s)

        message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{value}'"
        validation_error(processor, message, fragments, schema, attribute, options[:record_errors])
      end

      def self.accept_value?(value)
        value.is_a?(String) || value.is_a?(Array) || value.is_a?(Hash)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
json-schema-5.1.1 lib/json-schema/attributes/dependencies.rb
json-schema-5.1.0 lib/json-schema/attributes/dependencies.rb
json-schema-5.0.1 lib/json-schema/attributes/dependencies.rb
json-schema-5.0.0 lib/json-schema/attributes/dependencies.rb
json-schema-4.3.1 lib/json-schema/attributes/dependencies.rb
json-schema-4.3.0 lib/json-schema/attributes/dependencies.rb
json-schema-4.2.0 lib/json-schema/attributes/dependencies.rb
json-schema-4.1.1 lib/json-schema/attributes/dependencies.rb
json-schema-4.1.0 lib/json-schema/attributes/dependencies.rb
json-schema-4.0.0 lib/json-schema/attributes/dependencies.rb