2022-04-02 13:44:09 +00:00
|
|
|
//! # Authentication middleware
|
|
|
|
|
2022-04-02 13:58:31 +00:00
|
|
|
use std::future::{Future, ready, Ready};
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::rc::Rc;
|
2022-04-02 13:44:09 +00:00
|
|
|
|
2022-04-02 15:17:54 +00:00
|
|
|
use actix_identity::RequestIdentity;
|
|
|
|
use actix_web::{dev::{forward_ready, Service, ServiceRequest, ServiceResponse, Transform}, Error, HttpResponse};
|
2022-04-02 13:58:31 +00:00
|
|
|
use actix_web::body::EitherBody;
|
2022-04-02 17:23:32 +00:00
|
|
|
use askama::Template;
|
2022-04-02 13:44:09 +00:00
|
|
|
|
2022-04-02 17:44:13 +00:00
|
|
|
use crate::constants::{ADMIN_ROUTES, AUTHENTICATED_ROUTES};
|
|
|
|
use crate::controllers::base_controller::redirect_user_for_login;
|
2022-04-02 15:44:10 +00:00
|
|
|
use crate::data::session_identity::{SessionIdentity, SessionIdentityData};
|
|
|
|
|
2022-04-02 13:44:09 +00:00
|
|
|
// There are two steps in middleware processing.
|
|
|
|
// 1. Middleware initialization, middleware factory gets called with
|
|
|
|
// next service in chain as parameter.
|
|
|
|
// 2. Middleware's call method gets called with normal request.
|
|
|
|
pub struct AuthMiddleware;
|
|
|
|
|
|
|
|
// Middleware factory is `Transform` trait
|
|
|
|
// `S` - type of the next service
|
|
|
|
// `B` - type of response's body
|
|
|
|
impl<S, B> Transform<S, ServiceRequest> for AuthMiddleware
|
|
|
|
where
|
2022-04-02 13:58:31 +00:00
|
|
|
S: Service<ServiceRequest, Response=ServiceResponse<B>, Error=Error> + 'static,
|
2022-04-02 13:44:09 +00:00
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
2022-04-02 13:58:31 +00:00
|
|
|
type Response = ServiceResponse<EitherBody<B>>;
|
2022-04-02 13:44:09 +00:00
|
|
|
type Error = Error;
|
2022-04-02 13:58:31 +00:00
|
|
|
type Transform = AuthInnerMiddleware<S>;
|
2022-04-02 13:44:09 +00:00
|
|
|
type InitError = ();
|
|
|
|
type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
2022-04-02 13:58:31 +00:00
|
|
|
ready(Ok(AuthInnerMiddleware { service: Rc::new(service) }))
|
2022-04-02 13:44:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 15:03:51 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum SessionStatus {
|
|
|
|
SignedOut,
|
|
|
|
RegularUser,
|
2022-04-02 15:17:54 +00:00
|
|
|
Admin,
|
2022-04-02 15:03:51 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 15:44:10 +00:00
|
|
|
impl SessionStatus {
|
|
|
|
pub fn is_auth(&self) -> bool {
|
|
|
|
!matches!(self, SessionStatus::SignedOut)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_admin(&self) -> bool {
|
|
|
|
matches!(self, SessionStatus::Admin)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 17:23:32 +00:00
|
|
|
#[derive(Template)]
|
|
|
|
#[template(path = "access_denied.html")]
|
|
|
|
struct AccessDeniedTemplate {}
|
|
|
|
|
2022-04-02 13:58:31 +00:00
|
|
|
pub struct AuthInnerMiddleware<S> {
|
|
|
|
service: Rc<S>,
|
2022-04-02 13:44:09 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 13:58:31 +00:00
|
|
|
impl<S, B> Service<ServiceRequest> for AuthInnerMiddleware<S>
|
2022-04-02 13:44:09 +00:00
|
|
|
where
|
2022-04-02 13:58:31 +00:00
|
|
|
S: Service<ServiceRequest, Response=ServiceResponse<B>, Error=Error> + 'static,
|
2022-04-02 13:44:09 +00:00
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
2022-04-02 13:58:31 +00:00
|
|
|
type Response = ServiceResponse<EitherBody<B>>;
|
2022-04-02 13:44:09 +00:00
|
|
|
type Error = Error;
|
2022-04-02 15:03:51 +00:00
|
|
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
2022-04-02 13:58:31 +00:00
|
|
|
type Future = Pin<Box<dyn Future<Output=Result<Self::Response, Self::Error>>>>;
|
2022-04-02 13:44:09 +00:00
|
|
|
|
|
|
|
forward_ready!(service);
|
|
|
|
|
2022-04-02 15:17:54 +00:00
|
|
|
fn call(&self, req: ServiceRequest) -> Self::Future {
|
2022-04-02 13:58:31 +00:00
|
|
|
let service = Rc::clone(&self.service);
|
2022-04-02 13:44:09 +00:00
|
|
|
|
|
|
|
// Forward request
|
2022-04-02 13:58:31 +00:00
|
|
|
Box::pin(async move {
|
|
|
|
if req.path().starts_with("/.git") {
|
|
|
|
return Ok(req.into_response(
|
|
|
|
HttpResponse::Unauthorized()
|
|
|
|
.body("Hey don't touch this!")
|
|
|
|
.map_into_right_body()
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2022-04-02 15:44:10 +00:00
|
|
|
let identity = match SessionIdentity::deserialize_session_data(req.get_identity()) {
|
|
|
|
None => SessionStatus::SignedOut,
|
|
|
|
Some(SessionIdentityData { is_admin: true, .. }) => SessionStatus::Admin,
|
|
|
|
_ => SessionStatus::RegularUser,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Redirect user to login page
|
|
|
|
if !identity.is_auth() && (req.path().starts_with(ADMIN_ROUTES) ||
|
|
|
|
req.path().starts_with(AUTHENTICATED_ROUTES)) {
|
2022-04-02 17:44:13 +00:00
|
|
|
let path = req.path().to_string();
|
|
|
|
return Ok(req.into_response(redirect_user_for_login(path))
|
2022-04-02 15:44:10 +00:00
|
|
|
.map_into_right_body());
|
|
|
|
}
|
|
|
|
|
2022-04-02 17:23:32 +00:00
|
|
|
// Restrict access to admin pages
|
|
|
|
if !identity.is_admin() && req.path().starts_with(ADMIN_ROUTES) {
|
|
|
|
return Ok(req.into_response(HttpResponse::Unauthorized()
|
|
|
|
.body(AccessDeniedTemplate {}.render().unwrap()))
|
|
|
|
.map_into_right_body());
|
|
|
|
}
|
2022-04-02 15:03:51 +00:00
|
|
|
|
2022-04-02 13:58:31 +00:00
|
|
|
service
|
|
|
|
.call(req)
|
|
|
|
.await
|
|
|
|
.map(ServiceResponse::map_into_left_body)
|
|
|
|
})
|
2022-04-02 13:44:09 +00:00
|
|
|
}
|
|
|
|
}
|