Finch配置对非现有端点

时间:2017-01-18 14:33:08

标签: scala finch

我在本地计算机上运行了一个finch(0.11.1)应用程序,如果我这样做了

curl -XPOST localhost:8081/lfdjalfjla  // some non-existing url

我得到一个空响应体的404响应。 假设我想将某个错误消息作为响应,我将在哪里配置? 我在user guide(尚未)中找不到答案。

1 个答案:

答案 0 :(得分:3)

我认为合理的实现方法是在.toServiceAs调用返回的服务上应用Finagle过滤器。

import com.twitter.finagle.http.{Request, Response, Status}
import com.twitter.finagle.{Service, SimpleFilter}
import com.twitter.util.Future

class OnNotFound(rep: Response) extends SimpleFilter[Request, Response] {
  def apply(req: Request, s: Service[Request, Response]): Future[Response] = {
    s(req).map {
      case r if r.status == Status.NotFound => rep
      case r => r
    }
  }
}

然后。

scala> import io.finch._, com.twitter.finagle.http.Status

scala> val e = get("foo") { Ok("bar") }
e: io.finch.Endpoint[String] = GET /foo

scala> val s = new OnNotFound(Response(Status.InternalServerError)).andThen(e.toServiceAs[Text.Plain])
s: com.twitter.finagle.Service[com.twitter.finagle.http.Request,com.twitter.finagle.http.Response] = <function1>

scala> Http.server.serve(":8080", s)
res0: com.twitter.finagle.ListeningServer = Group(/0:0:0:0:0:0:0:0:8080)

最后用HTTPie进行一些测试。

$ http :8080/foo
HTTP/1.1 200 OK
Content-Encoding: gzip
Content-Length: 29
Content-Type: text/plain
Date: Fri, 03 Mar 2017 23:59:34 GMT

bar

$ http :8080/bar
HTTP/1.1 500 Internal Server Error
Content-Length: 0