mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 13:32:16 +00:00
98 lines
3.0 KiB
Rust
98 lines
3.0 KiB
Rust
use crate::Error;
|
|
use crate::header::Depth;
|
|
use crate::privileges::UserPrivilege;
|
|
use crate::resource::PrincipalUri;
|
|
use crate::resource::Resource;
|
|
use crate::resource::ResourceService;
|
|
use crate::xml::MultistatusElement;
|
|
use crate::xml::PropfindElement;
|
|
use crate::xml::PropfindType;
|
|
use rustical_xml::PropName;
|
|
use rustical_xml::XmlDocument;
|
|
use tracing::instrument;
|
|
|
|
#[cfg(feature = "actix")]
|
|
#[instrument(parent = root_span.id(), skip(path, req, root_span, resource_service, puri))]
|
|
#[allow(clippy::type_complexity)]
|
|
pub(crate) async fn actix_route_propfind<R: ResourceService>(
|
|
path: ::actix_web::web::Path<R::PathComponents>,
|
|
body: String,
|
|
req: ::actix_web::HttpRequest,
|
|
user: R::Principal,
|
|
depth: Depth,
|
|
root_span: tracing_actix_web::RootSpan,
|
|
resource_service: ::actix_web::web::Data<R>,
|
|
puri: ::actix_web::web::Data<R::PrincipalUri>,
|
|
) -> Result<
|
|
MultistatusElement<<R::Resource as Resource>::Prop, <R::MemberType as Resource>::Prop>,
|
|
R::Error,
|
|
> {
|
|
route_propfind(
|
|
&path.into_inner(),
|
|
req.path(),
|
|
body,
|
|
user,
|
|
depth,
|
|
resource_service.as_ref(),
|
|
puri.as_ref(),
|
|
)
|
|
.await
|
|
}
|
|
|
|
pub(crate) async fn route_propfind<R: ResourceService>(
|
|
path_components: &R::PathComponents,
|
|
path: &str,
|
|
body: String,
|
|
user: R::Principal,
|
|
depth: Depth,
|
|
resource_service: &R,
|
|
puri: &impl PrincipalUri,
|
|
) -> Result<
|
|
MultistatusElement<<R::Resource as Resource>::Prop, <R::MemberType as Resource>::Prop>,
|
|
R::Error,
|
|
> {
|
|
let resource = resource_service.get_resource(path_components).await?;
|
|
let privileges = resource.get_user_privileges(&user)?;
|
|
if !privileges.has(&UserPrivilege::Read) {
|
|
return Err(Error::Unauthorized.into());
|
|
}
|
|
|
|
// A request body is optional. If empty we MUST return all props
|
|
let propfind_self: PropfindElement<<<R::Resource as Resource>::Prop as PropName>::Names> =
|
|
if !body.is_empty() {
|
|
PropfindElement::parse_str(&body).map_err(Error::XmlError)?
|
|
} else {
|
|
PropfindElement {
|
|
prop: PropfindType::Allprop,
|
|
}
|
|
};
|
|
let propfind_member: PropfindElement<<<R::MemberType as Resource>::Prop as PropName>::Names> =
|
|
if !body.is_empty() {
|
|
PropfindElement::parse_str(&body).map_err(Error::XmlError)?
|
|
} else {
|
|
PropfindElement {
|
|
prop: PropfindType::Allprop,
|
|
}
|
|
};
|
|
|
|
let mut member_responses = Vec::new();
|
|
if depth != Depth::Zero {
|
|
for (subpath, member) in resource_service.get_members(path_components).await? {
|
|
member_responses.push(member.propfind_typed(
|
|
&format!("{}/{}", path.trim_end_matches('/'), subpath),
|
|
&propfind_member.prop,
|
|
puri,
|
|
&user,
|
|
)?);
|
|
}
|
|
}
|
|
|
|
let response = resource.propfind_typed(path, &propfind_self.prop, puri, &user)?;
|
|
|
|
Ok(MultistatusElement {
|
|
responses: vec![response],
|
|
member_responses,
|
|
..Default::default()
|
|
})
|
|
}
|