- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的客户通过 Authorization
header 中的 token 进行授权,每个请求都需要检查该 header 。如果缺少此 header 或找不到相应的用户,我想返回 HTTP 代码 Unauthorized
,否则我想正常处理请求。
目前我有很多重复的代码,因为我在每个请求处理程序中检查这个 header 。actix docs在第一段中建议可以停止请求处理以尽早返回响应
。如何实现?
由于我还没有找到实现此行为的示例,所以我尝试提出自己的中间件函数,但它无法编译。
为了克服返回两种不同类型(ServiceResponse
和Map
)的问题,我已经把返回值装箱了,所以问题在How do I conditionally return different types of futures?中提出不是问题。更重要的是,我不知道该 wrap_fn
函数的返回值究竟需要哪些类型和哪些特征实现。我现在拥有的那些不起作用。
App::new()
.wrap(Cors::new().allowed_origin("http://localhost:8080"))
.register_data(state.clone())
.service(
web::scope("/routing")
.wrap_fn(|req, srv| {
let unauth: Box<dyn IntoFuture<Item = ServiceResponse>> = Box::new(ServiceResponse::new(req.into_parts().0, HttpResponse::Unauthorized().finish()));
let auth_header = req.headers().get("Authorization");
match auth_header {
None => unauth,
Some(value) => {
let token = value.to_str().unwrap();
let mut users = state.users.lock().unwrap();
let user_state = users.iter_mut().find(|x| x.auth.token == token);
match user_state {
None => unauth,
Some(user) => {
Box::new(srv.call(req).map(|res| res))
}
}
}
}
})
.route("/closest", web::get().to(routing::find_closest))
.route("/fsp", web::post().to(routing::fsp))
.route("/preference", web::get().to(routing::get_preference))
.route("/preference", web::post().to(routing::set_preference))
.route("/find_preference", web::post().to(routing::find_preference))
.route("/reset", web::post().to(routing::reset_data)),
)
.bind("0.0.0.0:8000")
.expect("Can not bind to port 8000")
.run()
.expect("Could not start sever");
我在编译时遇到了两个错误。
1.
error[E0191]: the value of the associated types `Future` (from the trait `futures::future::IntoFuture`), `Error` (from the trait `futures::future::IntoFuture`) must be specified
--> src/server/mod.rs:36:41
|
36 | let unauth: Box<dyn IntoFuture<Item = ServiceResponse>> =
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| associated type `Future` must be specified
| associated type `Error` must be specified
2.
error[E0277]: the trait bound `dyn futures::future::IntoFuture<Item = actix_web::service::ServiceResponse>: futures::future::Future` is not satisfied
--> src/server/mod.rs:35:22
|
35 | .wrap_fn(|req, srv| {
| ^^^^^^^ the trait `futures::future::Future` is not implemented for `dyn futures::future::IntoFuture<Item = actix_web::service::ServiceResponse>`
|
= note: required because of the requirements on the impl of `futures::future::Future` for `std::boxed::Box<dyn futures::future::IntoFuture<Item = actix_web::service::ServiceResponse>>`
最佳答案
你可以创建自己的类型,Authorized
,实现FromRequest
为此,将 Authorized
定义为处理程序中应检查授权的参数。
简化示例:
use actix_web::dev::Payload;
use actix_web::error::ErrorUnauthorized;
use actix_web::{web, App, Error, FromRequest, HttpRequest, HttpResponse, HttpServer};
fn main() {
HttpServer::new(move || App::new().route("/", web::to(index)))
.bind("127.0.0.1:3000")
.expect("Can not bind to '127.0.0.1:3000'")
.run()
.unwrap();
}
fn index(_: Authorized) -> HttpResponse {
HttpResponse::Ok().body("authorized")
}
struct Authorized;
impl FromRequest for Authorized {
type Error = Error;
type Future = Result<Self, Error>;
type Config = ();
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
if is_authorized(req) {
Ok(Authorized)
} else {
Err(ErrorUnauthorized("not authorized"))?
}
}
}
fn is_authorized(req: &HttpRequest) -> bool {
if let Some(value) = req.headers().get("authorized") {
// actual implementation that checks header here
dbg!(value);
true
} else {
false
}
}
此代码产生:
$ curl localhost:3000
not authorized⏎
$ curl localhost:3000 -H 'Authorized: i am root'
authorized⏎
您可能可以使用中间件以相同的方式做一些事情,但我还没有完全了解中间件抽象。此外,您可能希望向处理程序提供有用的信息,例如用户名:
struct Authorized {
username: String
}
关于server - 如何从 actix-web 中间件返回早期响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57892819/
因此,我正在尝试创建一个基本的actix-web应用程序,该应用程序将允许我创建一个非常基本的博客系统。它正在处理我的GET请求,但没有处理我的POST请求。 main.rs: use actix_w
我对Rust还是很陌生,并且愿意为Actix-web中的Orange Pi Zero提供一些Linux服务,该服务将充当其他网络设备的“网关”(一些愚蠢的中文网络中继,具有4个输入和4个输出,这是受控
您好,我想传递以下 AppState。 pub struct AppState { clients: Vec, } 这就是我的服务器: async fn launch_server(app_c
我正在尝试为我的 Actix 应用程序编写身份验证中间件。在中间件中验证请求时,我调用数据库以检索必要的用户数据以验证传入的请求。一旦请求获得授权,我希望能够将此用户数据传递给处理程序,因为这将允许我
我只是在玩一些Actix网络和Actix Actor ,而我在构建一个简单的应用程序却花了毫秒的时间,所以我观察到Actix正在创建多个 Actor 。我只想限制它一个,但我做不到。 我在这里做错了什
主要功能是: #[actix_rt::main] async fn main() -> std::io::Result { std::env::set_var( "RUST_L
我想为 actix 中的查询值设置默认值。 我知道有一个Default Rust 标准库中结构的特征,但老实说,我不知道如何在这种情况下应用它。 在我的情况下,请求查询可能会也可能不会提供分页值页面和
我正在尝试运行两个应用程序(一个在端口 3006 上进行管理,另一个在端口 8080 上提供数据)。 他们共享数据库池、缓存... 对于actix 1.0,我有这个工作(我不知道这是否是最好的方法):
这是我第一次尝试使用 actix-web 编写带有 Rust 的小型 Web 服务。 下面的代码是一个请求处理程序,旨在做三件事,在数据库中插入一个条目,如果数据库调用成功则发送一封电子邮件,然后返回
我正在尝试使用 SyncArbiter 实现一个包含 10 个 Redis 连接的池,供不同的参与者使用。假设我们有一个名为 Bob 的 actor,它必须使用 Redis actor 来完成它的任务
我正在尝试创建具有 PyO3 Python 解释器和 Py 对象的 Actix Actor。 问题是创建 python 解释器 actor 的正确方法是什么? 我认为错误是由静态定义的 Actor 特
我正在使用 Actix-web 实现中间件,但遇到了一个我无法弄清楚的生命周期问题。 extern crate actix_web; use actix_web::actix::{Actor, Add
我正在尝试使用 actix-web 1.0 编写 HTTP 端点。我已经缩减了函数,使其只返回传递给它的用户,但编译器仍然给出错误。 extern crate actix_web; extern cr
问题 - 如果您只有一个系统但其中有多个仲裁器在运行,它仍然是一个单线程事件循环吗? 通读 Actix 书 - https://actix.rs/book/actix/sec-6-sync-arbit
我现在有以下服务器声明 let server = HttpServer::new(move || { App::new() .app_data(actix_web::web::
我在使用波纹管代码在actix-web上使用Stream时遇到问题: fn format_csv_row(row: tiberius::Row) -> Result { ... } #[get("/s
我试过 example of actix-multipart与 actix-web v3.3.2和 actix-multipart v0.3.0 . 举一个最小的例子, use actix_multi
在actix-web documentation is only an example如何接收唯一命名的查询参数。 但是我如何接收同名的多个查询参数呢?例如: http://localhost:808
我正在使用 sqlx 访问数据库的 actix-web 2.0.0 中实现身份验证提取器。我有这个代码: use actix_web::{dev, web, Error, HttpRequest, F
我有一个正在实现的 API,其中有一个需要调用的昂贵函数。我想记住这个函数或使用键值缓存来查找以前的结果。我也会考虑 Mutex或类似的结构,但我想避免诸如 Redis 或 Memcached 之类的
我是一名优秀的程序员,十分优秀!