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

com.ancientlightstudios.quarkus.kotlin.openapi.parser.RequestBodyBuilder.kt Maven / Gradle / Ivy

There is a newer version: 0.4.14
Show newest version
package com.ancientlightstudios.quarkus.kotlin.openapi.parser

import com.ancientlightstudios.quarkus.kotlin.openapi.models.hints.NameSuggestionHint.nameSuggestion
import com.ancientlightstudios.quarkus.kotlin.openapi.models.transformable.TransformableBody
import com.fasterxml.jackson.databind.node.ObjectNode

class RequestBodyBuilder(private val node: ObjectNode) {

    fun ParseContext.build(): TransformableBody {
        return when (val ref = node.getTextOrNull("\$ref")) {
            null -> extractBodyDefinition()
            else -> extractBodyReference(ref)
        }
    }

    private fun ParseContext.extractBodyDefinition() = TransformableBody(
        node.getBooleanOrNull("required") ?: false, contextFor("content").parseAsContent()
    )

    private fun ParseContext.extractBodyReference(ref: String) = rootContext.contextFor(JsonPointer.fromPath(ref))
        .parseAsRequestBody()
        .apply { nameSuggestion = ref.nameSuggestion() }
}

fun ParseContext.parseAsRequestBody() =
    contextNode.asObjectNode { "Json object expected for $contextPath" }
        .let {
            RequestBodyBuilder(it).run { [email protected]() }
        }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy