Implements the 3-tier key model from the multi-person sharing ADR: each account owns multiple profiles (a person or pet — a 'subject of care'), and each profile has its own random AES-256-GCM DEK. All health data is now encrypted under the active profile's DEK, not the account-wide DEK. The account DEK wraps each profile DEK; the server stores only opaque wrapped blobs. Per the ADR: DB wipe, no migration (no real user data). This unblocks Phase B (sharing) — there is now a per-profile key to wrap to a recipient's X25519 public key. Backend: - Profile model: owner_account_id, kind (human/pet), relationship, wrapped_profile_dek + iv. ProfileRepository gains find_all_by_owner, find_by_profile_id_owned, update_profile, delete_profile — all ownership-scoped. - Profile handlers: GET/POST /api/profiles, GET/PUT/DELETE /api/profiles/:id. Removed /api/profiles/me. Renamed users.rs get_profile/update_profile (the /api/users/me handlers) to get_account/update_account to resolve a name collision. - Register accepts default_profile_* fields and auto-creates the self profile when the client provides a wrapped profile DEK. - HealthStatistic + Appointment gain profile_id and ?profile_id= filtering (health stats previously had no profile binding). - New profile_tests.rs: multi-profile CRUD + ownership isolation + register-with-default-profile. Fixed the zk health-stat test to send the now-required profile_id. Frontend: - crypto/keys.ts: generateProfileDek, wrapProfileDek, unwrapProfileDek + in-memory per-profile DEK store with an active-profile concept. - useProfileStore rewritten: holds profiles[], activeProfileId; loadProfiles unwraps each profile DEK; create/update/delete. All 11 encrypt/decrypt sites switched from getEncKey() to getActiveProfileDek(). load actions pass ?profile_id= so only the active profile's rows come back. - ProfileEditor rewritten for the new store (edit active profile, create/delete). New ProfileSwitcher in the Dashboard AppBar. - MedicationManager / AppointmentsManager use the active profile id instead of the hardcoded profile_<user_id>. - 2 new crypto tests for per-profile DEK isolation; updated store + component tests for the active-profile-DEK model. Verification: backend cargo build/clippy/fmt green, tests compile (integration tests run in CI — Mongo is fixed there). Frontend tsc clean, 30/30 tests pass. Closes nothing yet (Phase B/C/D remain). Refs #3.
132 lines
4.2 KiB
Rust
132 lines
4.2 KiB
Rust
use axum::{
|
|
extract::{Extension, Json, Path, Query, State},
|
|
http::StatusCode,
|
|
};
|
|
use serde::Deserialize;
|
|
use std::time::SystemTime;
|
|
|
|
use crate::{
|
|
auth::jwt::Claims,
|
|
config::AppState,
|
|
models::appointment::{
|
|
AppointmentRepository, AppointmentResponse, CreateAppointmentRequest,
|
|
UpdateAppointmentRequest,
|
|
},
|
|
models::health_data::EncryptedField,
|
|
};
|
|
use mongodb::bson::DateTime;
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
pub struct AppointmentListQuery {
|
|
/// Filter by status (upcoming/completed/cancelled). Optional.
|
|
pub status: Option<String>,
|
|
/// Filter by profile id. Optional.
|
|
pub profile_id: Option<String>,
|
|
}
|
|
|
|
pub async fn create_appointment(
|
|
State(state): State<AppState>,
|
|
Extension(claims): Extension<Claims>,
|
|
Json(req): Json<CreateAppointmentRequest>,
|
|
) -> Result<Json<AppointmentResponse>, StatusCode> {
|
|
let database = state.db.get_database();
|
|
let repo = AppointmentRepository::new(database.collection("appointments"));
|
|
|
|
let now = SystemTime::now();
|
|
let appointment_id = uuid::Uuid::new_v4().to_string();
|
|
|
|
// Zero-knowledge: store the client's opaque encrypted blob verbatim.
|
|
let appointment_data = EncryptedField {
|
|
data: req.encrypted_data.data,
|
|
encrypted: true,
|
|
iv: req.encrypted_data.iv,
|
|
auth_tag: req.encrypted_data.auth_tag,
|
|
};
|
|
|
|
let appointment = crate::models::appointment::Appointment {
|
|
id: None,
|
|
appointment_id,
|
|
user_id: claims.sub,
|
|
profile_id: req.profile_id.clone(),
|
|
appointment_data,
|
|
reminders: vec![],
|
|
status: req.status,
|
|
created_at: DateTime::from_system_time(now),
|
|
updated_at: DateTime::from_system_time(now),
|
|
};
|
|
|
|
match repo.create(appointment).await {
|
|
Ok(appt) => Ok(Json(appt.into())),
|
|
Err(_) => Err(StatusCode::INTERNAL_SERVER_ERROR),
|
|
}
|
|
}
|
|
|
|
pub async fn list_appointments(
|
|
State(state): State<AppState>,
|
|
Extension(claims): Extension<Claims>,
|
|
Query(query): Query<AppointmentListQuery>,
|
|
) -> Result<Json<Vec<AppointmentResponse>>, StatusCode> {
|
|
let database = state.db.get_database();
|
|
let repo = AppointmentRepository::new(database.collection("appointments"));
|
|
|
|
match repo
|
|
.find_by_user_filtered(
|
|
&claims.sub,
|
|
query.status.as_deref(),
|
|
query.profile_id.as_deref(),
|
|
)
|
|
.await
|
|
{
|
|
Ok(appointments) => {
|
|
let resp: Vec<AppointmentResponse> = appointments.into_iter().map(Into::into).collect();
|
|
Ok(Json(resp))
|
|
}
|
|
Err(_) => Err(StatusCode::INTERNAL_SERVER_ERROR),
|
|
}
|
|
}
|
|
|
|
pub async fn get_appointment(
|
|
State(state): State<AppState>,
|
|
Extension(_claims): Extension<Claims>,
|
|
Path(id): Path<String>,
|
|
) -> Result<Json<AppointmentResponse>, StatusCode> {
|
|
let database = state.db.get_database();
|
|
let repo = AppointmentRepository::new(database.collection("appointments"));
|
|
|
|
match repo.find_by_appointment_id(&id).await {
|
|
Ok(Some(appt)) => Ok(Json(appt.into())),
|
|
Ok(None) => Err(StatusCode::NOT_FOUND),
|
|
Err(_) => Err(StatusCode::INTERNAL_SERVER_ERROR),
|
|
}
|
|
}
|
|
|
|
pub async fn update_appointment(
|
|
State(state): State<AppState>,
|
|
Extension(_claims): Extension<Claims>,
|
|
Path(id): Path<String>,
|
|
Json(req): Json<UpdateAppointmentRequest>,
|
|
) -> Result<Json<AppointmentResponse>, StatusCode> {
|
|
let database = state.db.get_database();
|
|
let repo = AppointmentRepository::new(database.collection("appointments"));
|
|
|
|
match repo.update_by_appointment_id(&id, req).await {
|
|
Ok(Some(appt)) => Ok(Json(appt.into())),
|
|
Ok(None) => Err(StatusCode::NOT_FOUND),
|
|
Err(_) => Err(StatusCode::INTERNAL_SERVER_ERROR),
|
|
}
|
|
}
|
|
|
|
pub async fn delete_appointment(
|
|
State(state): State<AppState>,
|
|
Extension(_claims): Extension<Claims>,
|
|
Path(id): Path<String>,
|
|
) -> Result<StatusCode, StatusCode> {
|
|
let database = state.db.get_database();
|
|
let repo = AppointmentRepository::new(database.collection("appointments"));
|
|
|
|
match repo.delete_by_appointment_id(&id).await {
|
|
Ok(true) => Ok(StatusCode::NO_CONTENT),
|
|
Ok(false) => Err(StatusCode::NOT_FOUND),
|
|
Err(_) => Err(StatusCode::INTERNAL_SERVER_ERROR),
|
|
}
|
|
}
|