mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-17 23:09:21 +00:00
76 lines
2.1 KiB
Rust
76 lines
2.1 KiB
Rust
use crate::Error;
|
|
use actix_web::http::header;
|
|
use actix_web::http::header::HeaderValue;
|
|
use actix_web::web::{Data, Path};
|
|
use actix_web::HttpRequest;
|
|
use actix_web::HttpResponse;
|
|
use rustical_store::auth::User;
|
|
use rustical_store::{CalendarObject, CalendarStore};
|
|
use tracing::instrument;
|
|
use tracing_actix_web::RootSpan;
|
|
|
|
use super::resource::CalendarObjectPathComponents;
|
|
|
|
#[instrument(parent = root_span.id(), skip(store, root_span))]
|
|
pub async fn get_event<C: CalendarStore + ?Sized>(
|
|
path: Path<CalendarObjectPathComponents>,
|
|
store: Data<C>,
|
|
user: User,
|
|
root_span: RootSpan,
|
|
) -> Result<HttpResponse, Error> {
|
|
let CalendarObjectPathComponents {
|
|
principal,
|
|
cal_id,
|
|
object_id,
|
|
} = path.into_inner();
|
|
|
|
if user.id != principal {
|
|
return Ok(HttpResponse::Unauthorized().body(""));
|
|
}
|
|
|
|
let calendar = store.get_calendar(&principal, &cal_id).await?;
|
|
if user.id != calendar.principal {
|
|
return Ok(HttpResponse::Unauthorized().body(""));
|
|
}
|
|
|
|
let event = store.get_object(&principal, &cal_id, &object_id).await?;
|
|
|
|
Ok(HttpResponse::Ok()
|
|
.insert_header(("ETag", event.get_etag()))
|
|
.insert_header(("Content-Type", "text/calendar"))
|
|
.body(event.get_ics().to_owned()))
|
|
}
|
|
|
|
#[instrument(parent = root_span.id(), skip(store, req, root_span))]
|
|
pub async fn put_event<C: CalendarStore + ?Sized>(
|
|
path: Path<CalendarObjectPathComponents>,
|
|
store: Data<C>,
|
|
body: String,
|
|
user: User,
|
|
req: HttpRequest,
|
|
root_span: RootSpan,
|
|
) -> Result<HttpResponse, Error> {
|
|
let CalendarObjectPathComponents {
|
|
principal,
|
|
cal_id,
|
|
object_id,
|
|
} = path.into_inner();
|
|
|
|
if user.id != principal {
|
|
return Ok(HttpResponse::Unauthorized().body(""));
|
|
}
|
|
|
|
// TODO: implement If-Match
|
|
//
|
|
|
|
let overwrite =
|
|
Some(&HeaderValue::from_static("*")) != req.headers().get(header::IF_NONE_MATCH);
|
|
|
|
let object = CalendarObject::from_ics(object_id, body)?;
|
|
store
|
|
.put_object(principal, cal_id, object, overwrite)
|
|
.await?;
|
|
|
|
Ok(HttpResponse::Created().body(""))
|
|
}
|