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

io.apicurio.registry.content.dereference.ApicurioDataModelsContentDereferencer Maven / Gradle / Ivy

package io.apicurio.registry.content.dereference;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import io.apicurio.datamodels.Library;
import io.apicurio.datamodels.TraverserDirection;
import io.apicurio.datamodels.models.Document;
import io.apicurio.registry.content.ContentHandle;
import io.apicurio.registry.content.TypedContent;
import io.apicurio.registry.content.util.ContentTypeUtil;
import io.apicurio.registry.types.ContentTypes;

import java.io.IOException;
import java.util.Map;

public class ApicurioDataModelsContentDereferencer implements ContentDereferencer {

    @Override
    public TypedContent dereference(TypedContent content, Map resolvedReferences) {
        try {
            JsonNode node = ContentTypeUtil.parseJsonOrYaml(content);
            Document doc = Library.readDocument((ObjectNode) node);
            ReferenceInliner inliner = new ReferenceInliner(resolvedReferences);
            Library.visitTree(doc, inliner, TraverserDirection.down);
            String dereferencedContent = Library.writeDocumentToJSONString(doc);
            return TypedContent.create(ContentHandle.create(dereferencedContent), content.getContentType());
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    /**
     * @see io.apicurio.registry.content.dereference.ContentDereferencer#rewriteReferences(io.apicurio.registry.content.TypedContent,
     *      java.util.Map)
     */
    @Override
    public TypedContent rewriteReferences(TypedContent content, Map resolvedReferenceUrls) {
        try {
            JsonNode node = ContentTypeUtil.parseJsonOrYaml(content);
            Document doc = Library.readDocument((ObjectNode) node);
            ReferenceRewriter visitor = new ReferenceRewriter(resolvedReferenceUrls);
            Library.visitTree(doc, visitor, TraverserDirection.down);
            return TypedContent.create(ContentHandle.create(Library.writeDocumentToJSONString(doc)),
                    ContentTypes.APPLICATION_JSON);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy