Hello, if I copy the swagger specifications genera...
# http4k
r
Hello, if I copy the swagger specifications generated and paste them in the swagger editor I get a lot of errors because fields description is null. Any way to set them or not generate them if null or set then to empty string ? Ex of json generate par default project
Copy code
info:
  title: Test API
  version: v1.0
  description: null
tags: []
paths:
  /contract/api/v1/echo:
    post:
      summary: echoes the name and message sent to it
      description: null
      tags:
        - /contract/api/v1
      parameters: []
      requestBody:
        content:
          application/json:
            example:
              name: jim
              message: hello!
            schema:
              $ref: '#/components/schemas/NameAndMessage'
              description: null
              example: null
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                name: jim
                message: hello!
              schema:
                $ref: '#/components/schemas/NameAndMessage'
                description: null
                example: null
      security:
        - api_key: []
      operationId: postContractApiV1Echo
      deprecated: false
components:
  schemas:
    NameAndMessage:
      properties:
        name:
          example: jim
          description: null
          type: string
        message:
          example: hello!
          description: null
          type: string
      example:
        name: jim
        message: hello!
      description: null
      type: object
      required:
        - message
        - name
  securitySchemes:
    api_key:
      type: apiKey
      in: query
      name: api
openapi: 3.0.0
and the online editor https://editor.swagger.io/
d
You can create a custom Jackson instance which doesn't serialise nulls and the use that to create the OpenApi3Renderer
r
thanks, shouldn't be the default for OpenApiRenderer ? Otherwise any way to add description to an object or/and object fields ?
d
Copy code
inline fun <reified T : Any> Body.Companion.auto(description: String? = null, contentNegotiation: ContentNegotiation = None) = autoBody<T>(description, contentNegotiation)
that's the Body extension method signature. ^^
r
Thanks sorry for not checking out by myself 🙂 you were right when you said "if anything should be there check sources, chances are it's there).
So that fix the comment on class but where should I look for the description of an element of a class, or that's not supported ?
d
you will need to add annotations to the models to get those descriptions to render:
Copy code
JsonPropertyDescription
r
There's a particular setting for the lens description ? as i can't see the "It's the name and the message" in the generated json for
Copy code
val nameAndMessageLens = Body.auto<NameAndMessage>(description = "It's the name and the message").toLens()
and for the fields is disconcerting
Copy code
data class NameAndMessage(
        @JsonPropertyDescription("It's the name")
        val name: String,
        @JsonPropertyDescription("It's the message")
        val message: String)
I get the descriptions if I use the default Jackson as param
Copy code
renderer = OpenApi3(ApiInfo("Http4KPres API", "v1.0"), Jackson)
Copy code
"name": {
"example": "jim",
"description": "It's the name",
"type": "string"
}
but if i use a custom one (that's exactly the same as the Jackson object)
Copy code
val customJackson = ConfigurableJackson(KotlinModule()
                .asConfigurable()
                .withStandardMappings()
                .done()
                .deactivateDefaultTyping()
                .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
                .configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, false)
                .configure(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS, true)
                .configure(DeserializationFeature.USE_BIG_INTEGER_FOR_INTS, true)
        )

renderer = OpenApi3(ApiInfo("Http4KPres API", "v1.0"), customJackson)
I get a null description
Copy code
"name": {
"example": "jim",
"description": null,
"type": "string"
},
d
that's strange..
can you look to see if JacksonFieldMetadataRetrievalStrategy gets hit in the findName method?
r
Sorry out of my league 😉 can't figure out how to do that
c
Hei Razvan, I had the some problems and i just wrote my custom Jackson as David is saying
I can share the code with you
r
Thanks, happy to see that, Why that customJackson is not all right (beside it misses the
.setSerializationInclusion(JsonInclude.Include.NON_NULL)
that i commented out just to see it it was that setting that removing the description from @JsonPropertyDescription)
if that can help for testing the descriptions that does not appear : with
Jackson
get description from JsonPropertyDescription with
CustomJackson
nope. The Body.auto description does not appear for neither.
Copy code
data class NameAndMessage(
        @JsonPropertyDescription("It's the name")
        val name: String,
        @JsonPropertyDescription("It's the message")
        val message: String)

val nameAndMessageLens = Body.auto<NameAndMessage>("It's the name and the message").toLens()

object ExampleContractRoute {
    private val spec = "/echo" meta {
        summary = "echoes the name and message sent to it"
        description = "This is a exemple that echoes the input string"
        receiving(nameAndMessageLens to NameAndMessage("jim", "hello!"))
        returning(Status.OK, nameAndMessageLens to NameAndMessage("jim", "hello!"))
    } bindContract <http://Method.POST|Method.POST>

    private val echo: HttpHandler = { request: Request ->
        val received: NameAndMessage = nameAndMessageLens(request)
        Response(Status.OK).with(nameAndMessageLens of received)
    }

    operator fun invoke(): ContractRoute = spec to echo
}

val app = routes(
        "/contract/api/v1" bind contract {
            // renderer = OpenApi3(ApiInfo("Http4KPres API", "v1.0"), customJackson)
            renderer = OpenApi3(ApiInfo("Test API", "v1.0"), Jackson)
            descriptionPath = "/swagger.json"
            routes += ExampleContractRoute()
        }
)

fun main() {
    DebuggingFilters.PrintRequest()
            .then(app)
            .asServer(Undertow(9000)).start()
}

object CustomJackson : ConfigurableJackson(KotlinModule()
        .asConfigurable()
        .withStandardMappings()
        .done()
        .deactivateDefaultTyping()
        .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
        .configure(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES, false)
        .configure(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS, true)
        .configure(DeserializationFeature.USE_BIG_INTEGER_FOR_INTS, true)
        // .setSerializationInclusion(JsonInclude.Include.NON_NULL)
)