org.springframework.data.rest.webmvc.json.JsonSchema.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.data.rest.webmvc.json.JsonSchema.java

Source

/*
 * Copyright 2012-2019 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
 *
 *      https://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 org.springframework.data.rest.webmvc.json;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Pattern;

import org.springframework.data.rest.core.config.JsonSchemaFormat;
import org.springframework.data.util.ClassTypeInformation;
import org.springframework.data.util.TypeInformation;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;

/**
 * Model class to render JSON schema documents.
 *
 * @author Jon Brisbin
 * @author Oliver Gierke
 */
@JsonInclude(Include.NON_EMPTY)
public class JsonSchema {

    private static List<Class<?>> INTEGER_TYPES = Arrays.<Class<?>>asList(Long.class, long.class, Integer.class,
            int.class, Short.class, short.class);

    private final String title;
    private final String description;
    private final PropertiesContainer container;
    private final Definitions definitions;

    /**
     * Creates a new {@link JsonSchema} instance for the given title, description, {@link AbstractJsonSchemaProperty}s and
     * {@link Definitions}.
     *
     * @param title must not be {@literal null} or empty.
     * @param description can be {@literal null}.
     * @param properties must not be {@literal null}.
     * @param definitions must not be {@literal null}.
     */
    public JsonSchema(String title, String description, Collection<AbstractJsonSchemaProperty<?>> properties,
            Definitions definitions) {

        Assert.hasText(title, "Title must not be null or empty!");
        Assert.notNull(properties, "JsonSchemaProperties must not be null!");
        Assert.notNull(definitions, "Definitions must not be null!");

        this.title = title;
        this.description = description;
        this.container = new PropertiesContainer(properties);
        this.definitions = definitions;
    }

    @JsonProperty("$schema")
    public String getSchema() {
        return "http://json-schema.org/draft-04/schema#";
    }

    public String getType() {
        return "object";
    }

    public String getTitle() {
        return title;
    }

    public String getDescription() {
        return description;
    }

    @JsonUnwrapped
    public PropertiesContainer getContainer() {
        return container;
    }

    @JsonUnwrapped
    public Definitions getDefinitions() {
        return definitions;
    }

    /**
     * Turns the given {@link TypeInformation} into a JSON Schema type string.
     *
     * @param typeInformation
     * @return
     * @see <a href=
     *      "https://json-schema.org/latest/json-schema-core.html#anchor8">https://json-schema.org/latest/json-schema-core.html#anchor8</a>
     */
    private static String toJsonSchemaType(TypeInformation<?> typeInformation) {

        Class<?> type = typeInformation.getType();

        if (type == null) {
            return null;
        } else if (typeInformation.isCollectionLike()) {
            return "array";
        } else if (Boolean.class.equals(type) || boolean.class.equals(type)) {
            return "boolean";
        } else if (String.class.equals(type) || isDate(typeInformation) || type.isEnum()) {
            return "string";
        } else if (INTEGER_TYPES.contains(type)) {
            return "integer";
        } else if (ClassUtils.isAssignable(Number.class, type)) {
            return "number";
        } else {
            return "object";
        }
    }

    /**
     * Returns whether the given {@link TypeInformation} represents a date.
     *
     * @param type must not be {@literal null}.
     * @return
     */
    private static boolean isDate(TypeInformation<?> type) {

        Class<?> rawType = type.getType();

        if (Date.class.equals(rawType)) {
            return true;
        }

        for (String datePackage : Arrays.asList("java.time", "org.threeten.bp", "org.joda.time")) {
            if (rawType.getName().startsWith(datePackage)) {
                return true;
            }
        }

        return false;
    }

    /**
     * A JSON Schema item.
     *
     * @author Oliver Gierke
     */
    static class Item {

        private final String type;
        private final PropertiesContainer properties;

        /**
         * Creates a new {@link Item} for the given {@link TypeInformation} and properties.
         *
         * @param type must not be {@literal null}.
         * @param properties must not be {@literal null}.
         */
        public Item(TypeInformation<?> type, Collection<AbstractJsonSchemaProperty<?>> properties) {

            this.type = toJsonSchemaType(type.getActualType());
            this.properties = new PropertiesContainer(properties);
        }

        public String getType() {
            return type;
        }

        @JsonUnwrapped
        public PropertiesContainer getProperties() {
            return properties;
        }
    }

    /**
     * Value object to represent a generic container of properties.
     *
     * @author Oliver Gierke
     * @since 2.3
     */
    @JsonInclude(Include.NON_EMPTY)
    static class PropertiesContainer {

        public final Map<String, AbstractJsonSchemaProperty<?>> properties;
        public final Collection<String> requiredProperties;

        /**
         * Creates a new {@link PropertiesContainer} for the given {@link AbstractJsonSchemaProperty}s.
         *
         * @param properties must not be {@literal null}.
         */
        public PropertiesContainer(Collection<AbstractJsonSchemaProperty<?>> properties) {

            Assert.notNull(properties, "JsonSchemaPropertys must not be null!");

            this.properties = new HashMap<String, JsonSchema.AbstractJsonSchemaProperty<?>>();
            this.requiredProperties = new ArrayList<String>();

            for (AbstractJsonSchemaProperty<?> property : properties) {
                this.properties.put(property.getName(), property);

                if (property.isRequired()) {
                    this.requiredProperties.add(property.name);
                }
            }
        }
    }

    /**
     * Value object to abstract a {@link Map} of JSON Schema definitions.
     *
     * @author Oliver Gierke
     */
    public static class Definitions {

        private final Map<String, Item> definitions;

        public Definitions() {
            this.definitions = new HashMap<String, Item>();
        }

        /**
         * @return the descriptors
         */
        public Map<String, Item> getDefinitions() {
            return definitions;
        }

        boolean hasDefinitionFor(TypeInformation<?> type) {
            return this.definitions.containsKey(typeKey(type));
        }

        String addDefinition(TypeInformation<?> type, Item item) {

            String reference = typeKey(type);
            this.definitions.put(reference, item);

            return reference;
        }

        static String getReference(TypeInformation<?> type) {
            return String.format("#/definitions/%s", typeKey(type));
        }

        static String typeKey(TypeInformation<?> type) {
            return StringUtils.uncapitalize(type.getActualType().getType().getSimpleName());
        }
    }

    /**
     * Base class for all property implementations.
     *
     * @author Oliver Gierke
     * @since 2.3
     */
    @JsonInclude(Include.NON_EMPTY)
    abstract static class AbstractJsonSchemaProperty<T extends AbstractJsonSchemaProperty<T>> {

        private final String name;
        private final String title;
        private final boolean required;

        private boolean readOnly;

        protected AbstractJsonSchemaProperty(String name, boolean required) {
            this(name, null, required);
        }

        protected AbstractJsonSchemaProperty(String name, String title, boolean required) {

            this.name = name;
            this.title = title;
            this.required = required;
            this.readOnly = false;
        }

        @JsonIgnore
        public String getName() {
            return name;
        }

        public String getTitle() {
            return title;
        }

        private boolean isRequired() {
            return required;
        }

        public boolean isReadOnly() {
            return readOnly;
        }

        @SuppressWarnings("unchecked")
        protected T withReadOnly() {
            this.readOnly = true;
            return (T) this;
        }
    }

    /**
     * A JSON Schema property
     *
     * @author Oliver Gierke
     * @since 2.3
     */
    public static class JsonSchemaProperty extends AbstractJsonSchemaProperty<JsonSchemaProperty> {

        private static final TypeInformation<?> STRING_TYPE_INFORMATION = ClassTypeInformation.from(String.class);

        public String description;
        public String type;
        public @JsonSerialize(using = ToStringSerializer.class) JsonSchemaFormat format;
        public String pattern;
        public Boolean uniqueItems;
        public @JsonProperty("$ref") String reference;
        public Map<String, String> items;

        JsonSchemaProperty(String name, String title, String description, boolean required) {

            super(name, title, required);

            this.description = description;
        }

        /**
         * Configures the {@link JsonSchemaProperty} to reflect the given type.
         *
         * @param type must not be {@literal null}.
         * @return
         */
        public JsonSchemaProperty withType(Class<?> type) {

            Assert.notNull(type, "Type must not be null!");
            return with(ClassTypeInformation.from(type));
        }

        /**
         * Configures the {@link JsonSchemaProperty} to reflect the given type.
         *
         * @param type must not be {@literal null}.
         * @return
         */
        public JsonSchemaProperty with(TypeInformation<?> type) {

            Assert.notNull(type, "Type must not be null!");
            this.type = toJsonSchemaType(type);

            if (isDate(type)) {
                return withFormat(JsonSchemaFormat.DATE_TIME);
            }

            if (type.isCollectionLike()) {

                if (Set.class.equals(type.getType())) {
                    this.uniqueItems = true;
                }

                this.items = Collections.singletonMap("type", toJsonSchemaType(type.getActualType()));
            }

            return this;
        }

        /**
         * Configures the given {@link JsonSchemaFormat} to be exposed on the current {@link JsonSchemaProperty}.
         *
         * @param format must not be {@literal null}.
         * @return
         */
        public JsonSchemaProperty withFormat(JsonSchemaFormat format) {

            Assert.notNull(format, "Format must not be null!");

            this.format = format;
            return with(STRING_TYPE_INFORMATION);
        }

        /**
         * Configures the {@link JsonSchemaProperty} to require the given regular expression as pattern.
         *
         * @param regex must not be {@literal null}.
         * @return
         */
        public JsonSchemaProperty withRegex(String regex) {

            Assert.hasText(regex, "Regular expression must not be null or empty!");
            return withPattern(Pattern.compile(regex));
        }

        /**
         * Configures the {@link JsonSchemaProperty} to require the given {@link Pattern}.
         *
         * @param pattern must not be {@literal null}.
         * @return
         */
        public JsonSchemaProperty withPattern(Pattern pattern) {

            Assert.notNull(pattern, "Pattern must not be null!");

            this.pattern = pattern.toString();
            return with(STRING_TYPE_INFORMATION);
        }

        /**
         * Turns the current {@link JsonSchemaProperty} into an association.
         *
         * @return
         */
        public JsonSchemaProperty asAssociation() {

            this.items = null;
            this.uniqueItems = null;

            return withFormat(JsonSchemaFormat.URI);
        }

        JsonSchemaProperty with(TypeInformation<?> type, String reference) {

            if (type.isCollectionLike()) {

                if (Set.class.equals(type.getType())) {
                    this.uniqueItems = true;
                }

                this.type = toJsonSchemaType(type);
                this.items = Collections.singletonMap("$ref", reference);

                return this;

            } else {
                this.reference = reference;
                return this;
            }
        }
    }

    /**
     * A {@link JsonSchemaProperty} representing enumerations. Will cause all valid values to be rendered in a nested
     * {@literal enum} property.
     *
     * @author Oliver Gierke
     * @since 2.3
     */
    public static class EnumProperty extends JsonSchemaProperty {

        private List<String> values;

        public EnumProperty(String name, String title, Class<?> type, String description, boolean required) {

            this(name, title, toValues(type), description, required);
        }

        public EnumProperty(String name, String title, List<String> values, String description, boolean required) {

            super(name, title, description, required);

            this.values = Collections.unmodifiableList(values);
        }

        @JsonProperty("enum")
        public List<String> getValues() {
            return values;
        }

        /**
         * Returns the current {@link EnumProperty} exposing the given values.
         *
         * @param values must not be {@literal null}.
         * @return
         */
        public EnumProperty withValues(List<String> values) {

            Assert.notNull(values, "Values must not be null!");

            this.values = Collections.unmodifiableList(values);
            return this;
        }

        private static List<String> toValues(Class<?> type) {

            List<String> values = new ArrayList<String>();

            for (Object value : type.getEnumConstants()) {
                values.add(value.toString());
            }

            return values;
        }
    }
}