2

我在 actix_web 中有一个异步处理程序,如果未设置多个标头,则该处理程序必须失败。我不明白在返回的函数中处理错误的最佳方法Future应该是什么。我基本上想要一个相当于?期货的运营商。

这是我当前的代码:

r.post().with_async(
    move |req: HttpRequest, path: Path<EventPath>, body: Json<EventCreationRequest>| {
        let headers = req.headers();
        let client_id = match headers
            .get("x-client-id")
            .ok_or("Header not found")
            .and_then(|v| v.to_str().map_err(|_| "Invalid header content"))
        {
            Err(e) => return ok(HttpResponse::BadRequest().body(e)).responder(),
            Ok(v) => v.to_string(),
        };
        operation_that_returns_future()
            .map(|_| HttpResponse::Ok().body("OK!"))
            .responder()
    },
);

?我通过匹配一个提前回报来解决期货缺乏操作员的问题。但是,在我的代码中,我实际上需要确保存在一堆其他标头。

理想情况下,我想将匹配和早期返回逻辑提取到可重用的东西,但在这种情况下,这迫使我创建一个宏。这似乎有点矫枉过正,特别是如果语言中已经有一些东西可以让我做我想做的事。

处理这种情况最惯用的方法是什么?

4

1 回答 1

2

要处理错误,请返回失败的Future. 例如,将标头检查为Future,然后将您的期货与.and_then. 一个技巧是保持期货的错误类型相同,以避免map_err. 例如:

fn handler(req: HttpRequest) -> impl Future<Item = HttpResponse, Error = Error> {
    has_client_header(&req)
        .and_then(|client| operation_that_returns_future(client))
        .map(|result| HttpResponse::Ok().body(result))
}

fn has_client_header(req: &HttpRequest) -> impl Future<Item = String, Error = Error> {
    if let Some(Ok(client)) = req.headers().get("x-client-id").map(|h| h.to_str()) {
        future::ok(client.to_owned())
    } else {
        future::failed(ErrorBadRequest("invalid x-client-id header"))
    }
}

fn operation_that_returns_future(client: String) -> impl Future<Item = String, Error = Error> {
    future::ok(client)
}

结果:

$ curl localhost:8000
invalid x-client-id header⏎
$ curl localhost:8000 -H 'x-client-id: asdf'
asdf⏎

何时operation_that_returns_future有另一种错误类型:

fn handler(req: HttpRequest) -> impl Future<Item = HttpResponse, Error = Error> {
    has_client_header(&req)
        .and_then(|client| {
            operation_that_returns_future(client)
                .map_err(|_| ErrorInternalServerError("operation failed"))
        })
        .map(|result| HttpResponse::Ok().body(result))
}

另一个技巧是使用failure crate,它提供failure::Error::from将所有错误映射到一种类型,failure::Error.

最后,您可能会发现actix_web::guards检查标头值很有用:

.guard(guard::Header("x-client-id", "special client"))
于 2019-07-07T22:13:40.310 回答