Move authentication middleware into the caldav scope

This commit is contained in:
Lennart
2024-10-03 19:55:05 +02:00
parent 5a8644032f
commit dd3d05907c
4 changed files with 83 additions and 71 deletions

View File

@@ -8,6 +8,7 @@ use root::RootResourceService;
use rustical_dav::methods::{ use rustical_dav::methods::{
propfind::ServicePrefix, route_delete, route_propfind, route_proppatch, propfind::ServicePrefix, route_delete, route_propfind, route_proppatch,
}; };
use rustical_store::auth::{AuthenticationMiddleware, AuthenticationProvider};
use rustical_store::CalendarStore; use rustical_store::CalendarStore;
use std::str::FromStr; use std::str::FromStr;
use std::sync::Arc; use std::sync::Arc;
@@ -29,9 +30,10 @@ pub fn configure_well_known(cfg: &mut web::ServiceConfig, caldav_root: String) {
cfg.service(web::redirect("/caldav", caldav_root).permanent()); cfg.service(web::redirect("/caldav", caldav_root).permanent());
} }
pub fn configure_dav<C: CalendarStore + ?Sized>( pub fn configure_dav<AP: AuthenticationProvider, C: CalendarStore + ?Sized>(
cfg: &mut web::ServiceConfig, cfg: &mut web::ServiceConfig,
prefix: String, prefix: String,
auth_provider: Arc<AP>,
store: Arc<RwLock<C>>, store: Arc<RwLock<C>>,
) { ) {
let propfind_method = || web::method(Method::from_str("PROPFIND").unwrap()); let propfind_method = || web::method(Method::from_str("PROPFIND").unwrap());
@@ -39,7 +41,10 @@ pub fn configure_dav<C: CalendarStore + ?Sized>(
let report_method = || web::method(Method::from_str("REPORT").unwrap()); let report_method = || web::method(Method::from_str("REPORT").unwrap());
let mkcalendar_method = || web::method(Method::from_str("MKCALENDAR").unwrap()); let mkcalendar_method = || web::method(Method::from_str("MKCALENDAR").unwrap());
cfg.app_data(Data::new(CalDavContext { cfg.service(
web::scope("")
.wrap(AuthenticationMiddleware::new(auth_provider))
.app_data(Data::new(CalDavContext {
store: store.clone(), store: store.clone(),
})) }))
.app_data(Data::new(ServicePrefix(prefix))) .app_data(Data::new(ServicePrefix(prefix)))
@@ -60,19 +65,22 @@ pub fn configure_dav<C: CalendarStore + ?Sized>(
web::scope("/{principal}") web::scope("/{principal}")
.service( .service(
web::resource("") web::resource("")
.route(propfind_method().to(route_propfind::<PrincipalResourceService<C>>))
.route( .route(
proppatch_method().to(route_proppatch::<PrincipalResourceService<C>>), propfind_method()
.to(route_propfind::<PrincipalResourceService<C>>),
)
.route(
proppatch_method()
.to(route_proppatch::<PrincipalResourceService<C>>),
), ),
) )
.service( .service(
web::scope("/{calendar}") web::scope("/{calendar}")
.service( .service(
web::resource("") web::resource("")
.route( .route(report_method().to(
report_method() calendar::methods::report::route_report_calendar::<C>,
.to(calendar::methods::report::route_report_calendar::<C>), ))
)
.route( .route(
propfind_method() propfind_method()
.to(route_propfind::<CalendarResourceService<C>>), .to(route_propfind::<CalendarResourceService<C>>),
@@ -85,24 +93,24 @@ pub fn configure_dav<C: CalendarStore + ?Sized>(
web::method(Method::DELETE) web::method(Method::DELETE)
.to(route_delete::<CalendarResourceService<C>>), .to(route_delete::<CalendarResourceService<C>>),
) )
.route( .route(mkcalendar_method().to(
mkcalendar_method() calendar::methods::mkcalendar::route_mkcalendar::<C>,
.to(calendar::methods::mkcalendar::route_mkcalendar::<C>), )),
),
) )
.service( .service(
web::resource("/{event}") web::resource("/{event}")
.route( .route(
propfind_method() propfind_method().to(route_propfind::<
.to(route_propfind::<CalendarObjectResourceService<C>>), CalendarObjectResourceService<C>,
>),
) )
.route(proppatch_method().to(route_proppatch::<
CalendarObjectResourceService<C>,
>))
.route( .route(
proppatch_method() web::method(Method::DELETE).to(route_delete::<
.to(route_proppatch::<CalendarObjectResourceService<C>>), CalendarObjectResourceService<C>,
) >),
.route(
web::method(Method::DELETE)
.to(route_delete::<CalendarObjectResourceService<C>>),
) )
.route( .route(
web::method(Method::GET) web::method(Method::GET)
@@ -115,6 +123,7 @@ pub fn configure_dav<C: CalendarStore + ?Sized>(
), ),
), ),
), ),
),
); );
} }

View File

@@ -53,7 +53,7 @@ impl<S, B, AP> Service<ServiceRequest> for InnerAuthenticationMiddleware<S, AP>
where where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = actix_web::Error> + 'static, S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = actix_web::Error> + 'static,
S::Future: 'static, S::Future: 'static,
AP: AuthenticationProvider + 'static, AP: AuthenticationProvider,
{ {
type Response = ServiceResponse<B>; type Response = ServiceResponse<B>;
type Error = actix_web::Error; type Error = actix_web::Error;

View File

@@ -6,11 +6,10 @@ use crate::error::Error;
use async_trait::async_trait; use async_trait::async_trait;
#[async_trait] #[async_trait]
pub trait AuthenticationProvider { pub trait AuthenticationProvider: 'static {
async fn validate_user_token(&self, user_id: &str, token: &str) -> Result<Option<User>, Error>; async fn validate_user_token(&self, user_id: &str, token: &str) -> Result<Option<User>, Error>;
} }
pub use middleware::AuthenticationMiddleware; pub use middleware::AuthenticationMiddleware;
pub use static_user_store::{StaticUserStore, StaticUserStoreConfig}; pub use static_user_store::{StaticUserStore, StaticUserStoreConfig};
pub use user::User; pub use user::User;

View File

@@ -3,14 +3,14 @@ use actix_web::dev::{ServiceFactory, ServiceRequest, ServiceResponse};
use actix_web::middleware::{Logger, NormalizePath}; use actix_web::middleware::{Logger, NormalizePath};
use actix_web::{web, App}; use actix_web::{web, App};
use rustical_frontend::configure_frontend; use rustical_frontend::configure_frontend;
use rustical_store::auth::{AuthenticationMiddleware, AuthenticationProvider}; use rustical_store::auth::AuthenticationProvider;
use rustical_store::CalendarStore; use rustical_store::CalendarStore;
use std::sync::Arc; use std::sync::Arc;
use tokio::sync::RwLock; use tokio::sync::RwLock;
pub fn make_app<CS: CalendarStore + ?Sized, AP: AuthenticationProvider + 'static>( pub fn make_app<CS: CalendarStore + ?Sized>(
cal_store: Arc<RwLock<CS>>, cal_store: Arc<RwLock<CS>>,
auth_provider: Arc<AP>, auth_provider: Arc<impl AuthenticationProvider>,
) -> App< ) -> App<
impl ServiceFactory< impl ServiceFactory<
ServiceRequest, ServiceRequest,
@@ -23,9 +23,13 @@ pub fn make_app<CS: CalendarStore + ?Sized, AP: AuthenticationProvider + 'static
App::new() App::new()
.wrap(Logger::new("[%s] %r")) .wrap(Logger::new("[%s] %r"))
.wrap(NormalizePath::trim()) .wrap(NormalizePath::trim())
.wrap(AuthenticationMiddleware::new(auth_provider))
.service(web::scope("/caldav").configure(|cfg| { .service(web::scope("/caldav").configure(|cfg| {
rustical_caldav::configure_dav(cfg, "/caldav".to_string(), cal_store.clone()) rustical_caldav::configure_dav(
cfg,
"/caldav".to_string(),
auth_provider.clone(),
cal_store.clone(),
)
})) }))
.service( .service(
web::scope("/carddav") web::scope("/carddav")