1

如何status在 Tapir 中将字段添加到 json 响应中?

假设,我有一个看起来像这样的端点:

private lazy val endpoint =
  endpoint
    .post
    .in(jsonBody[Entity])
    .out(jsonBody[ChangedEntity])
    .errorOut(jsonBody[Error])
    .serverLogic {
      changeEntity
    }

def changeEntity(e: Entity): Future[Either[Error, ChangedEntity]] = ...

case class Error(
  msg: String,
  code: Int,
)

case class ChangedEntity(
  id: Int,
  data: String,
)

我的 Circe 编码器是

implicit def encodeResponse[R](implicit
                               left: Encoder[Error],
                               right: Encoder[R]
                              ): Encoder[Either[Error, R]] = {
  o: Either[Error, R] =>
    o.fold(_.asJson, _.asJson).mapObject(_.+:(status, o.isRight.asJson))
}

我想得到这样的json:

//on success
{
    "status": true,
    "id": 42,
    "data": "some data
}

//on error
{
    "status": false
    "msg": "error happenend",
    "code": 12345
}

如果我在 Akka Http 中使用该 circe 编码器,它将对状态字段进行编码。如何在 Tapir 中实现相同的想法?我应该以某种方式使用自定义编解码器吗?

4

0 回答 0