com.networknt.schema.DefaultJsonMetaSchemaFactory Maven / Gradle / Ivy
/*
* Copyright (c) 2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.networknt.schema;
import java.util.Map;
import java.util.Map.Entry;
import com.fasterxml.jackson.databind.JsonNode;
import com.networknt.schema.SpecVersion.VersionFlag;
/**
* Default {@link JsonMetaSchemaFactory}.
*/
public class DefaultJsonMetaSchemaFactory implements JsonMetaSchemaFactory {
@Override
public JsonMetaSchema getMetaSchema(String iri, JsonSchemaFactory schemaFactory, SchemaValidatorsConfig config) {
// Is it a well-known dialect?
return SpecVersionDetector.detectOptionalVersion(iri)
.map(JsonSchemaFactory::checkVersion)
.map(JsonSchemaVersion::getInstance)
.orElseGet(() -> {
// Custom meta schema
return loadMetaSchema(iri, schemaFactory, config);
});
}
protected JsonMetaSchema loadMetaSchema(String iri, JsonSchemaFactory schemaFactory,
SchemaValidatorsConfig config) {
try {
JsonMetaSchema result = loadMetaSchemaBuilder(iri, schemaFactory, config).build();
return result;
} catch (InvalidSchemaException e) {
throw e;
} catch (Exception e) {
ValidationMessage validationMessage = ValidationMessage.builder()
.message("Failed to load meta-schema ''{1}''").arguments(iri).build();
throw new InvalidSchemaException(validationMessage, e);
}
}
protected JsonMetaSchema.Builder loadMetaSchemaBuilder(String iri, JsonSchemaFactory schemaFactory,
SchemaValidatorsConfig config) {
JsonSchema schema = schemaFactory.getSchema(SchemaLocation.of(iri), config);
JsonMetaSchema.Builder builder = JsonMetaSchema.builder(iri, schema.getValidationContext().getMetaSchema());
VersionFlag specification = schema.getValidationContext().getMetaSchema().getSpecification();
if (specification != null) {
if (specification.getVersionFlagValue() >= VersionFlag.V201909.getVersionFlagValue()) {
// Process vocabularies
JsonNode vocabulary = schema.getSchemaNode().get("$vocabulary");
if (vocabulary != null) {
builder.vocabularies(Map::clear);
for (Entry vocabs : vocabulary.properties()) {
builder.vocabulary(vocabs.getKey(), vocabs.getValue().booleanValue());
}
}
}
}
return builder;
}
private static class Holder {
private static final DefaultJsonMetaSchemaFactory INSTANCE = new DefaultJsonMetaSchemaFactory();
}
public static DefaultJsonMetaSchemaFactory getInstance() {
return Holder.INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy