All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fge.jsonschema.library.SchemaVersion Maven / Gradle / Ivy

There is a newer version: 2.2.6
Show newest version
/*
 * Copyright (c) 2013, Francis Galiegue 
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Lesser GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * Lesser GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package com.github.fge.jsonschema.library;

import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jsonschema.exceptions.JsonReferenceException;
import com.github.fge.jsonschema.processors.data.ValidationData;
import com.github.fge.jsonschema.ref.JsonRef;
import com.github.fge.jsonschema.util.JsonLoader;
import com.google.common.base.Predicate;

import java.io.IOException;

public enum SchemaVersion
{
    DRAFTV4("http://json-schema.org/draft-04/schema#", DraftV4Library.get(),
        "/draftv4/schema"),
    DRAFTV3("http://json-schema.org/draft-03/schema#", DraftV3Library.get(),
        "/draftv3/schema"),
    ;

    private final JsonRef location;
    private final Library library;
    private final JsonNode schema;

    SchemaVersion(final String uri, final Library library,
        final String resource)
    {
        try {
            location = JsonRef.fromString(uri);
            schema = JsonLoader.fromResource(resource);
        } catch (JsonReferenceException e) {
            throw new ExceptionInInitializerError(e);
        } catch (IOException e) {
            throw new ExceptionInInitializerError(e);
        }
        this.library = library;
    }

    public JsonRef getLocation()
    {
        return location;
    }

    public JsonNode getSchema()
    {
        return schema.deepCopy();
    }

    public Library getLibrary()
    {
        return library;
    }

    public Predicate versionTest()
    {
        return new Predicate()
        {
            @Override
            public boolean apply(final ValidationData input)
            {
                return versionMatches(input.getSchema().getBaseNode());
            }
        };
    }

    private boolean versionMatches(final JsonNode schema)
    {
        final JsonNode node = schema.path("$schema");
        if (!node.isTextual())
            return false;
        try {
            return location.equals(JsonRef.fromString(node.textValue()));
        } catch (JsonReferenceException ignored) {
            return false;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy