2019-05-17 17:28:57 +03:00
|
|
|
//! HTTP Authentication middleware.
|
|
|
|
|
|
|
|
use std::marker::PhantomData;
|
2019-06-08 00:20:55 +03:00
|
|
|
use std::sync::Arc;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
use actix_service::{Service, Transform};
|
|
|
|
use actix_web::dev::{ServiceRequest, ServiceResponse};
|
|
|
|
use actix_web::Error;
|
|
|
|
use futures::future::{self, FutureResult};
|
|
|
|
use futures::{Async, Future, IntoFuture, Poll};
|
2019-06-08 00:20:55 +03:00
|
|
|
use futures_locks::Mutex;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
use crate::extractors::{basic, bearer, AuthExtractor};
|
|
|
|
|
|
|
|
/// 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.
|
2019-06-05 18:52:47 +03:00
|
|
|
///
|
|
|
|
/// 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.
|
2019-06-08 00:20:55 +03:00
|
|
|
#[derive(Debug, Clone)]
|
2019-05-17 17:28:57 +03:00
|
|
|
pub struct HttpAuthentication<T, F>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
{
|
2019-06-08 00:20:55 +03:00
|
|
|
process_fn: Arc<F>,
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, F, O> HttpAuthentication<T, F>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
2019-06-05 18:52:47 +03:00
|
|
|
F: FnMut(ServiceRequest, T) -> O,
|
|
|
|
O: IntoFuture<Item = ServiceRequest, Error = Error>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
|
|
|
/// Construct `HttpAuthentication` middleware
|
|
|
|
/// with the provided auth extractor `T` and
|
|
|
|
/// validation callback `F`.
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn with_fn(process_fn: F) -> HttpAuthentication<T, F> {
|
2019-05-17 17:28:57 +03:00
|
|
|
HttpAuthentication {
|
2019-06-08 00:20:55 +03:00
|
|
|
process_fn: Arc::new(process_fn),
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F, O> HttpAuthentication<basic::BasicAuth, F>
|
|
|
|
where
|
2019-06-05 18:52:47 +03:00
|
|
|
F: FnMut(ServiceRequest, basic::BasicAuth) -> O,
|
|
|
|
O: IntoFuture<Item = ServiceRequest, Error = Error>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
|
|
|
/// Construct `HttpAuthentication` middleware for the HTTP "Basic"
|
|
|
|
/// authentication scheme.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
2019-06-05 18:52:47 +03:00
|
|
|
/// ```rust
|
2019-05-17 17:28:57 +03:00
|
|
|
/// # use actix_web::Error;
|
|
|
|
/// # use actix_web::dev::ServiceRequest;
|
|
|
|
/// # use futures::future::{self, FutureResult};
|
|
|
|
/// # use actix_web_httpauth::middleware::HttpAuthentication;
|
|
|
|
/// # use actix_web_httpauth::extractors::basic::BasicAuth;
|
|
|
|
/// // 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(
|
2019-06-05 18:52:47 +03:00
|
|
|
/// req: ServiceRequest,
|
2019-06-08 00:20:55 +03:00
|
|
|
/// credentials: BasicAuth,
|
2019-06-05 18:52:47 +03:00
|
|
|
/// ) -> FutureResult<ServiceRequest, Error> {
|
2019-05-17 17:28:57 +03:00
|
|
|
/// // All users are great and more than welcome!
|
2019-06-05 18:52:47 +03:00
|
|
|
/// future::ok(req)
|
2019-05-17 17:28:57 +03:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let middleware = HttpAuthentication::basic(validator);
|
|
|
|
/// ```
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn basic(process_fn: F) -> Self {
|
|
|
|
Self::with_fn(process_fn)
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F, O> HttpAuthentication<bearer::BearerAuth, F>
|
|
|
|
where
|
2019-06-05 18:52:47 +03:00
|
|
|
F: FnMut(ServiceRequest, bearer::BearerAuth) -> O,
|
|
|
|
O: IntoFuture<Item = ServiceRequest, Error = Error>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
|
|
|
/// Construct `HttpAuthentication` middleware for the HTTP "Bearer"
|
|
|
|
/// authentication scheme.
|
2019-06-05 18:52:47 +03:00
|
|
|
///
|
2019-05-17 17:28:57 +03:00
|
|
|
/// ## Example
|
|
|
|
///
|
2019-06-05 18:52:47 +03:00
|
|
|
/// ```rust
|
2019-05-17 17:28:57 +03:00
|
|
|
/// # use actix_web::Error;
|
|
|
|
/// # use actix_web::dev::ServiceRequest;
|
|
|
|
/// # use futures::future::{self, FutureResult};
|
|
|
|
/// # use actix_web_httpauth::middleware::HttpAuthentication;
|
|
|
|
/// # use actix_web_httpauth::extractors::bearer::{Config, BearerAuth};
|
|
|
|
/// # use actix_web_httpauth::extractors::{AuthenticationError, AuthExtractorConfig};
|
2019-06-05 18:52:47 +03:00
|
|
|
/// fn validator(req: ServiceRequest, credentials: BearerAuth) -> FutureResult<ServiceRequest, Error> {
|
2019-05-17 17:28:57 +03:00
|
|
|
/// if credentials.token() == "mF_9.B5f-4.1JqM" {
|
2019-06-05 18:52:47 +03:00
|
|
|
/// future::ok(req)
|
2019-05-17 17:28:57 +03:00
|
|
|
/// } 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);
|
|
|
|
/// ```
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn bearer(process_fn: F) -> Self {
|
|
|
|
Self::with_fn(process_fn)
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2019-06-05 18:52:47 +03:00
|
|
|
F: Fn(ServiceRequest, T) -> O + 'static,
|
|
|
|
O: IntoFuture<Item = ServiceRequest, Error = Error> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
T: AuthExtractor + 'static,
|
|
|
|
{
|
|
|
|
type Request = ServiceRequest;
|
|
|
|
type Response = ServiceResponse<B>;
|
|
|
|
type Error = Error;
|
|
|
|
type Transform = AuthenticationMiddleware<S, F, T>;
|
|
|
|
type InitError = ();
|
|
|
|
type Future = FutureResult<Self::Transform, Self::InitError>;
|
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
future::ok(AuthenticationMiddleware {
|
2019-06-08 00:20:55 +03:00
|
|
|
service: Mutex::new(service),
|
2019-06-05 18:52:47 +03:00
|
|
|
process_fn: self.process_fn.clone(),
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct AuthenticationMiddleware<S, F, T>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
{
|
2019-06-08 00:20:55 +03:00
|
|
|
service: Mutex<S>,
|
|
|
|
process_fn: Arc<F>,
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, B, F, T, O> Service for AuthenticationMiddleware<S, F, T>
|
|
|
|
where
|
|
|
|
S: Service<
|
|
|
|
Request = ServiceRequest,
|
|
|
|
Response = ServiceResponse<B>,
|
|
|
|
Error = Error,
|
|
|
|
> + 'static,
|
|
|
|
S::Future: 'static,
|
2019-06-05 18:52:47 +03:00
|
|
|
F: Fn(ServiceRequest, T) -> O + 'static,
|
|
|
|
O: IntoFuture<Item = ServiceRequest, Error = Error> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
T: AuthExtractor + 'static,
|
|
|
|
{
|
|
|
|
type Request = ServiceRequest;
|
|
|
|
type Response = ServiceResponse<B>;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = Box<dyn Future<Item = ServiceResponse<B>, Error = Error>>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
|
|
self.service
|
2019-06-08 00:20:55 +03:00
|
|
|
.try_lock()
|
2019-05-17 17:28:57 +03:00
|
|
|
.expect("AuthenticationMiddleware was called already")
|
|
|
|
.poll_ready()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
2019-06-05 18:52:47 +03:00
|
|
|
let process_fn = self.process_fn.clone();
|
2019-06-08 00:20:55 +03:00
|
|
|
// Note: cloning the mutex, not the service itself
|
|
|
|
let inner = self.service.clone();
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
let f = Extract::new(req)
|
2019-06-08 00:20:55 +03:00
|
|
|
.and_then(move |(req, credentials)| (process_fn)(req, credentials))
|
|
|
|
.and_then(move |req| {
|
|
|
|
inner
|
|
|
|
.lock()
|
|
|
|
.map_err(Into::into)
|
|
|
|
.and_then(|mut service| service.call(req))
|
|
|
|
});
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
Box::new(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Extract<T> {
|
|
|
|
req: Option<ServiceRequest>,
|
|
|
|
f: Option<Box<dyn Future<Item = T, Error = Error>>>,
|
|
|
|
_extractor: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Extract<T> {
|
|
|
|
pub fn new(req: ServiceRequest) -> Self {
|
|
|
|
Extract {
|
|
|
|
req: Some(req),
|
|
|
|
f: None,
|
|
|
|
_extractor: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Future for Extract<T>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
T::Future: 'static,
|
|
|
|
T::Error: 'static,
|
|
|
|
{
|
|
|
|
type Item = (ServiceRequest, T);
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
if self.f.is_none() {
|
|
|
|
let req =
|
|
|
|
self.req.as_ref().expect("Extract future was polled twice!");
|
|
|
|
let f = T::from_service_request(req)
|
|
|
|
.into_future()
|
|
|
|
.map_err(Into::into);
|
|
|
|
self.f = Some(Box::new(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
let f = self
|
|
|
|
.f
|
|
|
|
.as_mut()
|
|
|
|
.expect("Extraction future should be initialized at this point");
|
|
|
|
let credentials = futures::try_ready!(f.poll());
|
|
|
|
|
|
|
|
let req = self.req.take().expect("Extract future was polled twice!");
|
|
|
|
Ok(Async::Ready((req, credentials)))
|
|
|
|
}
|
|
|
|
}
|