[][src]Struct actix_web_grants::GrantsMiddleware

pub struct GrantsMiddleware<T> where
    T: AuthoritiesExtractor
{ /* fields omitted */ }

Built-in middleware for extracting user authority.

Examples

use actix_web::dev::ServiceRequest;
use actix_web::{get, App, Error, HttpResponse, HttpServer, Responder};

use actix_web_grants::authorities::{AuthDetails, AuthoritiesCheck};
use actix_web_grants::{proc_macro::has_authorities, GrantsMiddleware};
use std::sync::Arc;

fn main() {
    HttpServer::new(|| {
        let auth = GrantsMiddleware::fn_extractor(extract);
        App::new()
            .wrap(auth)
            .service(you_service)
    });
}

async fn extract(_req: Arc<ServiceRequest>) -> Result<Vec<String>, Error> {
   // Here is a place for your code to get user authorities/grants/permissions from a request
   // For example from a token or database

   // Stub example
   Ok(vec!["ROLE_ADMIN".to_string()])
}

// `has_authorities` is one of options to validate authorities.
#[get("/admin")]
#[has_authorities("ROLE_ADMIN")]
async fn you_service() -> impl Responder {
    HttpResponse::Ok().finish()
}

Implementations

impl<T> GrantsMiddleware<T> where
    T: AuthoritiesExtractor
[src]

pub fn with_extractor(extractor: T) -> GrantsMiddleware<T>[src]

impl<F, O> GrantsMiddleware<FnAuthoritiesExtractor<F, O>> where
    F: Fn(Arc<ServiceRequest>) -> O,
    O: Future<Output = Result<Vec<String>, Error>>, 
[src]

pub fn fn_extractor(
    extract_fn: F
) -> GrantsMiddleware<FnAuthoritiesExtractor<F, O>>
[src]

Trait Implementations

impl<S, B, T> Transform<S> for GrantsMiddleware<T> where
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
    T: AuthoritiesExtractor + 'static, 
[src]

type Request = ServiceRequest

Requests handled by the service.

type Response = ServiceResponse<B>

Responses given by the service.

type Error = Error

Errors produced by the service.

type Transform = GrantsService<S, T>

The TransformService value created by this factory

type InitError = ()

Errors produced while building a transform service.

type Future = Ready<Result<Self::Transform, Self::InitError>>

The future response value.

Auto Trait Implementations

impl<T> RefUnwindSafe for GrantsMiddleware<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for GrantsMiddleware<T> where
    T: Send + Sync
[src]

impl<T> Sync for GrantsMiddleware<T> where
    T: Send + Sync
[src]

impl<T> Unpin for GrantsMiddleware<T>[src]

impl<T> UnwindSafe for GrantsMiddleware<T> where
    T: RefUnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,