2020-04-15 10:51:15 +02:00
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::rc::Rc;
|
|
|
|
use std::task::{Context, Poll};
|
|
|
|
|
|
|
|
use actix_service::{Service, Transform};
|
|
|
|
use actix_web::{dev::ServiceRequest, dev::ServiceResponse, Error};
|
|
|
|
use futures::future::{err, ok, Future, Ready};
|
|
|
|
|
|
|
|
use crate::error::ResponseError;
|
|
|
|
use crate::Data;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub enum Authentication {
|
|
|
|
Public,
|
|
|
|
Private,
|
|
|
|
Admin,
|
|
|
|
}
|
|
|
|
|
2020-04-24 18:18:40 +02:00
|
|
|
|
2020-04-15 10:51:15 +02:00
|
|
|
impl<S: 'static, B> Transform<S> for Authentication
|
|
|
|
where
|
|
|
|
S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
|
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
|
|
|
type Request = ServiceRequest;
|
|
|
|
type Response = ServiceResponse<B>;
|
|
|
|
type Error = Error;
|
|
|
|
type InitError = ();
|
|
|
|
type Transform = LoggingMiddleware<S>;
|
|
|
|
type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
ok(LoggingMiddleware {
|
2020-04-24 15:00:52 +02:00
|
|
|
acl: self.clone(),
|
2020-04-15 10:51:15 +02:00
|
|
|
service: Rc::new(RefCell::new(service)),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct LoggingMiddleware<S> {
|
|
|
|
acl: Authentication,
|
|
|
|
service: Rc<RefCell<S>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, B> Service for LoggingMiddleware<S>
|
|
|
|
where
|
|
|
|
S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
|
|
|
type Request = ServiceRequest;
|
|
|
|
type Response = ServiceResponse<B>;
|
|
|
|
type Error = Error;
|
|
|
|
type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>>>>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
|
|
|
|
self.service.poll_ready(cx)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: ServiceRequest) -> Self::Future {
|
|
|
|
let mut svc = self.service.clone();
|
2020-04-24 15:00:52 +02:00
|
|
|
// This unwrap is left because this error should never appear. If that's the case, then
|
|
|
|
// it means that actix-web has an issue or someone changes the type `Data`.
|
2020-04-15 10:51:15 +02:00
|
|
|
let data = req.app_data::<Data>().unwrap();
|
|
|
|
|
|
|
|
if data.api_keys.master.is_none() {
|
|
|
|
return Box::pin(svc.call(req));
|
|
|
|
}
|
|
|
|
|
|
|
|
let auth_header = match req.headers().get("X-Meili-API-Key") {
|
|
|
|
Some(auth) => match auth.to_str() {
|
|
|
|
Ok(auth) => auth,
|
|
|
|
Err(_) => return Box::pin(err(ResponseError::MissingAuthorizationHeader.into())),
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
return Box::pin(err(ResponseError::MissingAuthorizationHeader.into()));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let authenticated = match self.acl {
|
|
|
|
Authentication::Admin => data.api_keys.master.as_deref() == Some(auth_header),
|
|
|
|
Authentication::Private => {
|
|
|
|
data.api_keys.master.as_deref() == Some(auth_header)
|
|
|
|
|| data.api_keys.private.as_deref() == Some(auth_header)
|
|
|
|
}
|
|
|
|
Authentication::Public => {
|
|
|
|
data.api_keys.master.as_deref() == Some(auth_header)
|
|
|
|
|| data.api_keys.private.as_deref() == Some(auth_header)
|
|
|
|
|| data.api_keys.public.as_deref() == Some(auth_header)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if authenticated {
|
|
|
|
Box::pin(svc.call(req))
|
|
|
|
} else {
|
|
|
|
Box::pin(err(
|
|
|
|
ResponseError::InvalidToken(auth_header.to_string()).into()
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|