[][src]Struct actix_web_httpauth::middleware::HttpAuthentication

pub struct HttpAuthentication<T, F> where
    T: AuthExtractor
{ /* fields omitted */ }

Middleware for checking HTTP authentication.

If there is no Authorization header in the request, this middleware returns an error immediately, without calling the F callback.

Otherwise, it will pass both the request and the parsed credentials into it. In case of successful validation F callback is required to return the ServiceRequest back.

Methods

impl<T, F, O> HttpAuthentication<T, F> where
    T: AuthExtractor,
    F: Fn(ServiceRequest, T) -> O,
    O: Future<Output = Result<ServiceRequest, Error>>, 
[src]

pub fn with_fn(process_fn: F) -> HttpAuthentication<T, F>[src]

Construct HttpAuthentication middleware with the provided auth extractor T and validation callback F.

impl<F, O> HttpAuthentication<BasicAuth, F> where
    F: Fn(ServiceRequest, BasicAuth) -> O,
    O: Future<Output = Result<ServiceRequest, Error>>, 
[src]

pub fn basic(process_fn: F) -> Self[src]

Construct HttpAuthentication middleware for the HTTP "Basic" authentication scheme.

Example

// In this example validator returns immediately,
// but since it is required to return anything
// that implements `IntoFuture` trait,
// it can be extended to query database
// or to do something else in a async manner.
async fn validator(
    req: ServiceRequest,
    credentials: BasicAuth,
) -> Result<ServiceRequest, Error> {
    // All users are great and more than welcome!
    Ok(req)
}

let middleware = HttpAuthentication::basic(validator);

impl<F, O> HttpAuthentication<BearerAuth, F> where
    F: Fn(ServiceRequest, BearerAuth) -> O,
    O: Future<Output = Result<ServiceRequest, Error>>, 
[src]

pub fn bearer(process_fn: F) -> Self[src]

Construct HttpAuthentication middleware for the HTTP "Bearer" authentication scheme.

Example

async fn validator(req: ServiceRequest, credentials: BearerAuth) -> Result<ServiceRequest, Error> {
    if credentials.token() == "mF_9.B5f-4.1JqM" {
        Ok(req)
    } else {
        let config = req.app_data::<Config>()
            .map(|data| data.get_ref().clone())
            .unwrap_or_else(Default::default)
            .scope("urn:example:channel=HBO&urn:example:rating=G,PG-13");

        Err(AuthenticationError::from(config).into())
    }
}

let middleware = HttpAuthentication::bearer(validator);

Trait Implementations

impl<T: Clone, F: Clone> Clone for HttpAuthentication<T, F> where
    T: AuthExtractor
[src]

impl<T: Debug, F: Debug> Debug for HttpAuthentication<T, F> where
    T: AuthExtractor
[src]

impl<S, B, T, F, O> Transform<S> for HttpAuthentication<T, F> where
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
    S::Future: 'static,
    F: Fn(ServiceRequest, T) -> O + 'static,
    O: Future<Output = Result<ServiceRequest, Error>> + 'static,
    T: AuthExtractor + '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 = AuthenticationMiddleware<S, F, 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, F> RefUnwindSafe for HttpAuthentication<T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, F> Send for HttpAuthentication<T, F> where
    F: Send + Sync,
    T: Send

impl<T, F> Sync for HttpAuthentication<T, F> where
    F: Send + Sync,
    T: Sync

impl<T, F> Unpin for HttpAuthentication<T, F> where
    T: Unpin

impl<T, F> UnwindSafe for HttpAuthentication<T, F> where
    F: RefUnwindSafe,
    T: UnwindSafe

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,