#guard #actix-web #actix-web-middleware #middleware #authentication

actix-state-guards

此crate为[actix-web]框架提供了更灵活的守卫函数。

1个不稳定版本

0.1.0 2023年2月12日

1383HTTP服务器

Download history 21/week @ 2024-03-13 87/week @ 2024-03-20 85/week @ 2024-03-27 31/week @ 2024-04-03 40/week @ 2024-04-10 57/week @ 2024-04-17 35/week @ 2024-04-24 29/week @ 2024-05-01 56/week @ 2024-05-08 68/week @ 2024-05-15 46/week @ 2024-05-22 38/week @ 2024-05-29 51/week @ 2024-06-05 58/week @ 2024-06-12 43/week @ 2024-06-19 48/week @ 2024-06-26

205 每月下载次数
用于 actix-jwt-auth-middleware

MIT 许可证

13KB
200 代码行

actix-state-guards

此crate为actix-web框架提供了更灵活的守卫函数。

Guard作为特定作用域的看门人,并控制哪些请求允许通过。

守卫可以接受应用程序状态以及实现FromReqeust特质的类型作为参数。它们还可以在内部执行异步代码。

示例

#[derive(Debug)]
pub struct CounterError();

impl Display for CounterError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str("Error: Counter is over 100")
    }
}

impl ResponseError for CounterError {}

#[get("/count")]
async fn count(counter: web::Data<Mutex<u32>>) -> impl Responder {
    let mut counter = counter.lock().unwrap();
    *counter += 1;
    counter.to_string()
}

#[actix_web::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    Ok(HttpServer::new(move || {
        App::new()
            .app_data(web::Data::new(Mutex::new(0u32)))
            .use_state_guard(
                |counter: web::Data<Mutex<u32>>| async move {
                    if *counter.lock().unwrap() < 100 {
                        Ok(())
                    } else {
                        // by returning the error case of the result enum we signal that this
                        // request shall not be allowed to pass on to the scope wrapped
                        Err(CounterError())
                    }
                },
                web::scope("").service(count),
            )
    })
    .bind(("127.0.0.1", 8080))?
    .run()
    .await?)
}

许可证: MIT

依赖项

~14–28MB
~465K SLoC