Extension for
actix-web
to validate user authorities.
To check user access to specific services, you can use built-in proc-macro
, AuthorityGuard
or manual.
The library can also be integrated with third-party solutions (like [actix-web-httpauth
]).
proc-macro
way protection```rust use actixwebgrants::procmacro::{hasauthorities};
async fn macrosecured() -> HttpResponse { HttpResponse::Ok().body("ADMINRESPONSE") } ```
Guard
way protection```rust use actixwebgrants::{AuthorityGuard, GrantsMiddleware};
App::new() .wrap(GrantsMiddleware::fnextractor(extract)) .service(web::resource("/admin") .to(|| async { HttpResponse::Ok().finish() }) .guard(AuthorityGuard::new("ROLEADMIN".to_string()))) ```
```rust use actixwebgrants::authorities::{AuthDetails, AuthoritiesCheck};
async fn manualsecure(details: AuthDetails) -> HttpResponse { if details.hasauthority(ROLEADMIN) { return HttpResponse::Ok().body("ADMINRESPONSE"); } HttpResponse::Ok().body("OTHER_RESPONSE") } ```
You can find more [examples
] in the git repository folder and [documentation
].