我有一个简单的中间件,旨在访问应用程序的全局状态以执行身份验证令牌的验证:
use actix_web;
use actix_web::HttpMessage;
pub struct Authenticator;
impl<S> actix_web::middleware::Middleware<S> for Authenticator {
fn start(
&self,
request: &mut actix_web::HttpRequest<S>,
) -> actix_web::Result<actix_web::middleware::Started> {
//let _state = request.state() as &::application::State;
match request.headers().get("Authentication") {
Some(_) => Ok(actix_web::middleware::Started::Done),
None => Err(::view::error(
"No authentication header provided",
actix_web::http::StatusCode::FORBIDDEN,
)),
}
}
}
注释字符串显示了我如何尝试获取状态。我实际上尝试了很多方法。做这些事情的最好方法是什么?
我考虑在结构中添加对所需数据(例如Arc
'd RwLock
)Authenticator
的引用,并在注册中间件时使用引用构造它。
我仍然不擅长 trait 的东西,但必须有一种干净的方式将S
类型转换为我的应用程序定义的State
结构:
pub struct State {
pub database: actix::Addr<actix::Syn, ::database::Actor>,
pub cache: ::std::sync::Arc<::cache::Cache>,
pub sessions: ::std::sync::Arc<::session::Storage>,
}