[][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: FnMut(ServiceRequest, T) -> O,
    O: IntoFuture<Item = ServiceRequest, Error = 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: FnMut(ServiceRequest, BasicAuth) -> O,
    O: IntoFuture<Item = ServiceRequest, Error = 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.
fn validator(
    req: ServiceRequest,
    credentials: BasicAuth,
) -> FutureResult<ServiceRequest, Error> {
    // All users are great and more than welcome!
    future::ok(req)
}

let middleware = HttpAuthentication::basic(validator);

impl<F, O> HttpAuthentication<BearerAuth, F> where
    F: FnMut(ServiceRequest, BearerAuth) -> O,
    O: IntoFuture<Item = ServiceRequest, Error = Error>, 
[src]

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

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

Example

fn validator(req: ServiceRequest, credentials: BearerAuth) -> FutureResult<ServiceRequest, Error> {
    if credentials.token() == "mF_9.B5f-4.1JqM" {
        future::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");

        future::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]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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: IntoFuture<Item = ServiceRequest, Error = 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 service.

type Future = FutureResult<Self::Transform, Self::InitError>

The future response value.

fn map_init_err<F, E>(self, f: F) -> TransformMapInitErr<Self, S, F, E> where
    F: Fn(Self::InitError) -> E, 
[src]

Map this service's factory error to a different error, returning a new transform service factory. Read more

fn from_err<E>(self) -> TransformFromErr<Self, S, E> where
    E: From<Self::InitError>, 
[src]

Map this service's init error to any error implementing From for this services Error`. Read more

Auto Trait Implementations

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T, S> IntoTransform<T, S> for T where
    T: Transform<S>, 
[src]

impl<T> Erased for T