Delta-upload protocol: negotiate chunks by hash, upload only what changed
Phase 1 of the delta-sync plan, server side. The CDC store already shares
unchanged chunks between file versions after the bytes arrive; these three
stateless endpoints move that detection to the client, so editing a few
bytes of a large file uploads ~1 MiB instead of the whole file:
- POST /api/files/delta/negotiate — given the file's chunk hashes, answer
which ones the caller must upload. User-scoped and purely advisory.
- PUT /api/files/delta/chunks — missing chunks as [u32 BE len][bytes]
frames (streaming parse, ≤1 MiB per frame, chunk_max_bytes per request).
Every hash is recomputed server-side; chunks land as ref_count=0 orphans
that a commit pins or the periodic GC sweeps — no session table.
- POST /api/files/delta/commit — pin one reference per distinct chunk with
a single UPDATE…RETURNING restricted to chunks the caller is entitled
to (reachable through their own non-trashed files, or unreferenced
orphans); anything else returns 409 {still_missing} for the client to
upload and retry. The pinned sequence is then RE-READ and the whole-file
BLAKE3 recomputed before any manifest exists — a declared file_hash is
never trusted, because a forged manifest would poison future whole-file
dedup hits for other users. The manifest accounting is shared with the
byte path (attach_manifest, extracted from store_from_stream); the file
row is created (201) or its content swapped by file_id (200). Owners of
the exact file_hash short-circuit to a pure reference bump.
Supporting pieces: GIN index on chunk_manifests.chunk_hashes (containment
probes were sequential scans), claimable/pin/release/store-loose/verify
primitives on DedupService, update-by-id with Update-permission AuthZ on
FileUploadService, per-caller rate limiter (240/min), audit events with
stable reasons (rate_limited, chunk_verification_failed,
file_hash_mismatch), OpenAPI + docs/delta-upload-protocol.md, framing
parser unit tests and a PG-gated integration suite covering the
entitlement matrix (owned/foreign/orphan/unknown), orphan registration
and the verification read.
Verified end-to-end against PostgreSQL 16 with a node client hashing via
the vendored WASM: a 24 MB file delta-committed in 96 fixed-size chunks;
a 3-byte edit then negotiated missing 1/96 and synced with 278 KB on the
wire vs 24 MB (98.9% saved), downloading byte-identical. A second user
probing the same chunks got nothing (negotiate: all missing; commit: 409
with all 96 still withheld); a forged file_hash returned 400 plus the
audit line; a commit referencing one never-uploaded chunk returned 409
naming exactly that hash; the GIN index serves containment probes
(Bitmap Index Scan) once the planner favors it.
https://claude.ai/code/session_01WdNenpnujNR2sc32XVvwfS
This commit is contained in:
@@ -0,0 +1,477 @@
|
||||
//! Delta-upload protocol — "upload only what changed".
|
||||
//!
|
||||
//! The CDC dedup store already shares unchanged chunks between file
|
||||
//! versions *after* the bytes arrive; this protocol moves that detection
|
||||
//! to the client side so unchanged bytes never cross the wire:
|
||||
//!
|
||||
//! 1. `negotiate`: the client sends the chunk hashes that compose its
|
||||
//! file; the server answers which of them it cannot claim — only those
|
||||
//! need uploading.
|
||||
//! 2. `chunks`: the client uploads the missing chunks (raw frames). The
|
||||
//! server recomputes every hash itself and registers the chunks as
|
||||
//! unreferenced (`ref_count = 0`) orphans — pinned by the commit that
|
||||
//! follows, or swept by the periodic GC if the client never returns.
|
||||
//! 3. `commit`: the server pins one reference per distinct chunk (only
|
||||
//! chunks the caller owns or unreferenced orphans — see the security
|
||||
//! notes in `dedup_service.rs`), **re-reads the proposed sequence and
|
||||
//! recomputes the whole-file BLAKE3** (a declared hash is never
|
||||
//! trusted: a forged manifest would poison future whole-file dedup
|
||||
//! hits for other users), attaches the manifest with the same
|
||||
//! accounting as the streaming ingest, and creates or updates the
|
||||
//! file row.
|
||||
//!
|
||||
//! Stateless by design: there is no session table. Every step re-derives
|
||||
//! its facts from the chunk store, and the GC reclaims anything a client
|
||||
//! abandons mid-protocol.
|
||||
|
||||
use std::collections::HashSet;
|
||||
use std::sync::Arc;
|
||||
|
||||
use bytes::Bytes;
|
||||
use futures::Stream;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use utoipa::ToSchema;
|
||||
use uuid::Uuid;
|
||||
|
||||
use crate::application::dtos::file_dto::FileDto;
|
||||
use crate::application::ports::authorization_ports::AuthorizationEngine;
|
||||
use crate::application::ports::file_ports::{FileUploadUseCase, StoredBlob};
|
||||
use crate::application::ports::storage_ports::StorageUsagePort;
|
||||
use crate::application::services::file_upload_service::FileUploadService;
|
||||
use crate::application::services::storage_usage_service::StorageUsageService;
|
||||
use crate::common::errors::DomainError;
|
||||
use crate::common::mime_detect::{MAGIC_BYTES_LEN, refine_content_type};
|
||||
use crate::domain::services::authorization::{Permission, Resource, Subject};
|
||||
use crate::infrastructure::services::dedup_service::{CDC_MAX_CHUNK, DedupService};
|
||||
use crate::infrastructure::services::pg_acl_engine::PgAclEngine;
|
||||
|
||||
// ── Wire DTOs ────────────────────────────────────────────────────────────────
|
||||
|
||||
/// One chunk reference: `h` = BLAKE3 hex (64 chars), `s` = size in bytes.
|
||||
/// Field names are deliberately terse — a 10 GB file is ~40 000 of these.
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, ToSchema)]
|
||||
pub struct ChunkRef {
|
||||
/// BLAKE3 hash of the chunk (64 hex chars).
|
||||
pub h: String,
|
||||
/// Chunk size in bytes (1 ..= 1 MiB).
|
||||
pub s: u64,
|
||||
}
|
||||
|
||||
/// Request body of `POST /api/files/delta/negotiate`.
|
||||
#[derive(Debug, Deserialize, ToSchema)]
|
||||
pub struct DeltaNegotiateRequest {
|
||||
/// The file's chunks, in order (duplicates allowed — repeated content).
|
||||
pub chunks: Vec<ChunkRef>,
|
||||
}
|
||||
|
||||
/// Response of `POST /api/files/delta/negotiate`.
|
||||
#[derive(Debug, Serialize, ToSchema)]
|
||||
pub struct DeltaNegotiateResponse {
|
||||
/// Distinct chunk hashes the caller must upload (first-occurrence order).
|
||||
pub missing: Vec<String>,
|
||||
}
|
||||
|
||||
/// Response of `PUT /api/files/delta/chunks` — the server-computed identity
|
||||
/// of every received frame, in wire order. Clients compare against their
|
||||
/// own hashes to detect corruption before committing.
|
||||
#[derive(Debug, Serialize, ToSchema)]
|
||||
pub struct DeltaChunksResponse {
|
||||
pub received: Vec<ChunkRef>,
|
||||
}
|
||||
|
||||
/// Request body of `POST /api/files/delta/commit`.
|
||||
///
|
||||
/// Exactly one of (`name` + `folder_id`) or `file_id` selects the mode:
|
||||
/// create a new file, or replace an existing file's content.
|
||||
#[derive(Debug, Deserialize, ToSchema)]
|
||||
pub struct DeltaCommitRequest {
|
||||
/// BLAKE3 of the complete file (verified server-side, never trusted).
|
||||
pub file_hash: String,
|
||||
/// Full chunk sequence, in file order (per occurrence).
|
||||
pub chunks: Vec<ChunkRef>,
|
||||
/// Create mode: file name (basename).
|
||||
pub name: Option<String>,
|
||||
/// Create mode: target folder (caller needs Create permission).
|
||||
pub folder_id: Option<String>,
|
||||
/// Update mode: file whose content is replaced (caller needs Write).
|
||||
pub file_id: Option<String>,
|
||||
}
|
||||
|
||||
/// Resolved commit mode after request validation.
|
||||
enum CommitMode {
|
||||
Create { name: String, folder_id: String },
|
||||
Update { file_id: String },
|
||||
}
|
||||
|
||||
/// Outcome of a commit attempt.
|
||||
pub enum DeltaCommitOutcome {
|
||||
/// The file row exists; `created` distinguishes 201 from 200.
|
||||
Done { file: FileDto, created: bool },
|
||||
/// Some chunks could not be pinned (GC race, skipped negotiate, or
|
||||
/// chunks the caller may not claim). The client uploads exactly these
|
||||
/// and retries the same commit.
|
||||
StillMissing(Vec<String>),
|
||||
}
|
||||
|
||||
// ── Service ──────────────────────────────────────────────────────────────────
|
||||
|
||||
/// Orchestrates the three delta-upload steps. All authorization lives here
|
||||
/// (service layer), per the project's AuthZ rule; handlers only
|
||||
/// authenticate, rate-limit and translate the wire format.
|
||||
pub struct DeltaUploadService {
|
||||
dedup: Arc<DedupService>,
|
||||
uploads: Arc<FileUploadService>,
|
||||
quota: Arc<StorageUsageService>,
|
||||
authz: Arc<PgAclEngine>,
|
||||
/// Whole-file ceiling — same `max_upload_size` that bounds byte uploads.
|
||||
max_total_size: u64,
|
||||
}
|
||||
|
||||
impl DeltaUploadService {
|
||||
pub fn new(
|
||||
dedup: Arc<DedupService>,
|
||||
uploads: Arc<FileUploadService>,
|
||||
quota: Arc<StorageUsageService>,
|
||||
authz: Arc<PgAclEngine>,
|
||||
max_total_size: u64,
|
||||
) -> Self {
|
||||
Self {
|
||||
dedup,
|
||||
uploads,
|
||||
quota,
|
||||
authz,
|
||||
max_total_size,
|
||||
}
|
||||
}
|
||||
|
||||
/// Most chunks a single request may reference: the whole-file ceiling
|
||||
/// divided by the smallest possible CDC chunk, with headroom for
|
||||
/// fixed-size client chunkers.
|
||||
fn max_chunk_count(&self) -> usize {
|
||||
(self.max_total_size as usize
|
||||
/ crate::infrastructure::services::dedup_service::CDC_MIN_CHUNK)
|
||||
.saturating_mul(2)
|
||||
.max(1024)
|
||||
}
|
||||
|
||||
/// Shape-validate a chunk list: hash format, per-chunk size bounds,
|
||||
/// count and total ceilings. Returns the total size.
|
||||
fn validate_chunk_list(&self, chunks: &[ChunkRef]) -> Result<u64, DomainError> {
|
||||
if chunks.len() > self.max_chunk_count() {
|
||||
return Err(DomainError::validation_error(format!(
|
||||
"Too many chunks: {} (maximum {})",
|
||||
chunks.len(),
|
||||
self.max_chunk_count()
|
||||
)));
|
||||
}
|
||||
let mut total: u64 = 0;
|
||||
for chunk in chunks {
|
||||
if !is_valid_hash(&chunk.h) {
|
||||
return Err(DomainError::validation_error(
|
||||
"Invalid chunk hash format. Expected BLAKE3 (64 hex characters)",
|
||||
));
|
||||
}
|
||||
if chunk.s == 0 || chunk.s > CDC_MAX_CHUNK as u64 {
|
||||
return Err(DomainError::validation_error(format!(
|
||||
"Chunk size {} out of bounds (1 ..= {CDC_MAX_CHUNK})",
|
||||
chunk.s
|
||||
)));
|
||||
}
|
||||
total = total.saturating_add(chunk.s);
|
||||
}
|
||||
if total > self.max_total_size {
|
||||
return Err(DomainError::validation_error(format!(
|
||||
"Declared total of {total} bytes exceeds the {}-byte upload ceiling",
|
||||
self.max_total_size
|
||||
)));
|
||||
}
|
||||
Ok(total)
|
||||
}
|
||||
|
||||
/// Step 1: which of these chunks must the caller upload?
|
||||
///
|
||||
/// Purely advisory and user-scoped — the commit re-checks entitlement
|
||||
/// atomically, so a stale answer can never leak content.
|
||||
pub async fn negotiate_with_perms(
|
||||
&self,
|
||||
caller_id: Uuid,
|
||||
request: &DeltaNegotiateRequest,
|
||||
) -> Result<DeltaNegotiateResponse, DomainError> {
|
||||
self.validate_chunk_list(&request.chunks)?;
|
||||
|
||||
let distinct = distinct_hashes(&request.chunks);
|
||||
let claimable = self.dedup.claimable_chunks(caller_id, &distinct).await?;
|
||||
let missing = distinct
|
||||
.into_iter()
|
||||
.filter(|h| !claimable.contains(h))
|
||||
.collect();
|
||||
Ok(DeltaNegotiateResponse { missing })
|
||||
}
|
||||
|
||||
/// Step 2: store uploaded chunk frames. Hashes are computed
|
||||
/// server-side; chunks land as unreferenced orphans awaiting a commit.
|
||||
pub async fn receive_chunks<S>(&self, frames: S) -> Result<DeltaChunksResponse, DomainError>
|
||||
where
|
||||
S: Stream<Item = Result<Bytes, DomainError>> + Send,
|
||||
{
|
||||
let received = self.dedup.store_loose_chunks(frames).await?;
|
||||
Ok(DeltaChunksResponse {
|
||||
received: received
|
||||
.into_iter()
|
||||
.map(|(h, s)| ChunkRef { h, s })
|
||||
.collect(),
|
||||
})
|
||||
}
|
||||
|
||||
/// Step 3: pin → verify → attach manifest → create/update the file row.
|
||||
pub async fn commit_with_perms(
|
||||
&self,
|
||||
caller_id: Uuid,
|
||||
request: DeltaCommitRequest,
|
||||
) -> Result<DeltaCommitOutcome, DomainError> {
|
||||
// ── Shape ─────────────────────────────────────────────────
|
||||
if !is_valid_hash(&request.file_hash) {
|
||||
return Err(DomainError::validation_error(
|
||||
"Invalid file_hash format. Expected BLAKE3 (64 hex characters)",
|
||||
));
|
||||
}
|
||||
let total_size = self.validate_chunk_list(&request.chunks)?;
|
||||
|
||||
let mode = match (&request.name, &request.folder_id, &request.file_id) {
|
||||
(Some(name), Some(folder_id), None) => {
|
||||
let name = sanitize_file_name(name)?;
|
||||
CommitMode::Create {
|
||||
name,
|
||||
folder_id: folder_id.clone(),
|
||||
}
|
||||
}
|
||||
(None, None, Some(file_id)) => CommitMode::Update {
|
||||
file_id: file_id.clone(),
|
||||
},
|
||||
_ => {
|
||||
return Err(DomainError::validation_error(
|
||||
"Provide either name + folder_id (create) or file_id (update)",
|
||||
));
|
||||
}
|
||||
};
|
||||
|
||||
// ── AuthZ first: nothing is pinned for callers who may not write ──
|
||||
match &mode {
|
||||
CommitMode::Create { folder_id, .. } => {
|
||||
let folder_uuid = Uuid::parse_str(folder_id)
|
||||
.map_err(|_| DomainError::not_found("Folder", folder_id.clone()))?;
|
||||
self.authz
|
||||
.require(
|
||||
Subject::User(caller_id),
|
||||
Permission::Create,
|
||||
Resource::Folder(folder_uuid),
|
||||
)
|
||||
.await?;
|
||||
}
|
||||
CommitMode::Update { file_id } => {
|
||||
let file_uuid = Uuid::parse_str(file_id)
|
||||
.map_err(|_| DomainError::not_found("File", file_id.clone()))?;
|
||||
self.authz
|
||||
.require(
|
||||
Subject::User(caller_id),
|
||||
Permission::Update,
|
||||
Resource::File(file_uuid),
|
||||
)
|
||||
.await?;
|
||||
}
|
||||
}
|
||||
|
||||
// ── Quota on the logical size (same semantics as a byte upload) ──
|
||||
self.quota
|
||||
.check_storage_quota(caller_id, total_size)
|
||||
.await?;
|
||||
|
||||
// ── Whole-file fast path: caller already owns this exact content ──
|
||||
// Mirrors the instant-upload endpoint: a reference bump, no chunk
|
||||
// work at all. Ownership is required — an existing-but-foreign
|
||||
// manifest must be earned through the pin + verify path below.
|
||||
if self
|
||||
.dedup
|
||||
.user_owns_blob_reference(&request.file_hash, &caller_id.to_string())
|
||||
.await
|
||||
&& let Some(metadata) = self.dedup.get_blob_metadata(&request.file_hash).await
|
||||
{
|
||||
self.dedup.add_reference(&request.file_hash).await?;
|
||||
let blob = StoredBlob {
|
||||
hash: request.file_hash.clone(),
|
||||
size: metadata.size,
|
||||
is_new_blob: false,
|
||||
};
|
||||
let file = self
|
||||
.register_row(caller_id, &mode, metadata.content_type, blob)
|
||||
.await?;
|
||||
return Ok(DeltaCommitOutcome::Done {
|
||||
file,
|
||||
created: matches!(mode, CommitMode::Create { .. }),
|
||||
});
|
||||
}
|
||||
|
||||
// ── Pin: atomically take one reference per distinct entitled chunk ──
|
||||
let distinct = distinct_hashes(&request.chunks);
|
||||
let pinned = self
|
||||
.dedup
|
||||
.pin_claimable_chunks(caller_id, &distinct)
|
||||
.await?;
|
||||
if pinned.len() != distinct.len() {
|
||||
let still_missing: Vec<String> = distinct
|
||||
.iter()
|
||||
.filter(|h| !pinned.contains(*h))
|
||||
.cloned()
|
||||
.collect();
|
||||
let pinned_vec: Vec<String> = pinned.into_iter().collect();
|
||||
self.dedup.release_pinned_chunks(&pinned_vec).await;
|
||||
tracing::debug!(
|
||||
"Delta commit: {} of {} chunks not claimable — client must upload them",
|
||||
still_missing.len(),
|
||||
distinct.len()
|
||||
);
|
||||
return Ok(DeltaCommitOutcome::StillMissing(still_missing));
|
||||
}
|
||||
|
||||
// ── Verify: the declared file_hash is recomputed from the pinned
|
||||
// bytes before any manifest row can exist. ──
|
||||
let verification = self
|
||||
.dedup
|
||||
.hash_chunk_sequence(
|
||||
&request
|
||||
.chunks
|
||||
.iter()
|
||||
.map(|c| (c.h.clone(), c.s))
|
||||
.collect::<Vec<_>>(),
|
||||
MAGIC_BYTES_LEN,
|
||||
)
|
||||
.await;
|
||||
let (computed_hash, head) = match verification {
|
||||
Ok(v) => v,
|
||||
Err(e) => {
|
||||
self.dedup.release_pinned_chunks(&distinct).await;
|
||||
tracing::info!(
|
||||
target: "audit",
|
||||
event = "delta_upload.rejected",
|
||||
reason = "chunk_verification_failed",
|
||||
caller_id = %caller_id,
|
||||
file_hash = %request.file_hash,
|
||||
"👮🏻♂️ Delta commit rejected: chunk sequence failed verification read",
|
||||
);
|
||||
return Err(e);
|
||||
}
|
||||
};
|
||||
if computed_hash != request.file_hash {
|
||||
self.dedup.release_pinned_chunks(&distinct).await;
|
||||
tracing::info!(
|
||||
target: "audit",
|
||||
event = "delta_upload.rejected",
|
||||
reason = "file_hash_mismatch",
|
||||
caller_id = %caller_id,
|
||||
declared_hash = %request.file_hash,
|
||||
computed_hash = %computed_hash,
|
||||
"👮🏻♂️ Delta commit rejected: declared file_hash does not match the chunk sequence",
|
||||
);
|
||||
return Err(DomainError::validation_error(
|
||||
"file_hash does not match the chunk sequence",
|
||||
));
|
||||
}
|
||||
|
||||
// ── Attach the manifest (shared accounting with the byte path) ──
|
||||
let display_name = match &mode {
|
||||
CommitMode::Create { name, .. } => name.clone(),
|
||||
CommitMode::Update { file_id } => file_id.clone(),
|
||||
};
|
||||
let content_type = match refine_content_type(&head, &display_name, "") {
|
||||
ct if ct.is_empty() => "application/octet-stream".to_string(),
|
||||
ct => ct,
|
||||
};
|
||||
let chunk_hashes: Vec<String> = request.chunks.iter().map(|c| c.h.clone()).collect();
|
||||
let chunk_sizes: Vec<u64> = request.chunks.iter().map(|c| c.s).collect();
|
||||
let attached = self
|
||||
.dedup
|
||||
.attach_manifest(
|
||||
&request.file_hash,
|
||||
&chunk_hashes,
|
||||
&chunk_sizes,
|
||||
total_size,
|
||||
Some(content_type.clone()),
|
||||
&distinct,
|
||||
)
|
||||
.await?;
|
||||
|
||||
let blob = StoredBlob {
|
||||
hash: request.file_hash.clone(),
|
||||
size: attached.size(),
|
||||
is_new_blob: !attached.was_deduplicated(),
|
||||
};
|
||||
let file = self
|
||||
.register_row(caller_id, &mode, Some(content_type), blob)
|
||||
.await?;
|
||||
Ok(DeltaCommitOutcome::Done {
|
||||
file,
|
||||
created: matches!(mode, CommitMode::Create { .. }),
|
||||
})
|
||||
}
|
||||
|
||||
/// Create or update the file row against a blob reference the commit
|
||||
/// already holds (the registration paths release it on failure).
|
||||
async fn register_row(
|
||||
&self,
|
||||
caller_id: Uuid,
|
||||
mode: &CommitMode,
|
||||
content_type: Option<String>,
|
||||
blob: StoredBlob,
|
||||
) -> Result<FileDto, DomainError> {
|
||||
match mode {
|
||||
CommitMode::Create { name, folder_id } => {
|
||||
let content_type =
|
||||
content_type.unwrap_or_else(|| "application/octet-stream".to_string());
|
||||
self.uploads
|
||||
.upload_file_streaming(
|
||||
name.clone(),
|
||||
Some(folder_id.clone()),
|
||||
content_type,
|
||||
blob,
|
||||
)
|
||||
.await
|
||||
}
|
||||
CommitMode::Update { file_id } => {
|
||||
self.uploads
|
||||
.update_file_content_by_id_with_perms(caller_id, file_id, blob)
|
||||
.await
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// 64 lowercase/uppercase hex characters.
|
||||
fn is_valid_hash(hash: &str) -> bool {
|
||||
hash.len() == 64 && hash.chars().all(|c| c.is_ascii_hexdigit())
|
||||
}
|
||||
|
||||
/// Basename only — same path-traversal guard as the upload handlers.
|
||||
fn sanitize_file_name(name: &str) -> Result<String, DomainError> {
|
||||
let base = name
|
||||
.rsplit('/')
|
||||
.next()
|
||||
.unwrap_or(name)
|
||||
.rsplit('\\')
|
||||
.next()
|
||||
.unwrap_or(name)
|
||||
.trim();
|
||||
if base.is_empty() {
|
||||
return Err(DomainError::validation_error("File name must not be empty"));
|
||||
}
|
||||
Ok(base.to_string())
|
||||
}
|
||||
|
||||
/// Distinct hashes in first-occurrence order.
|
||||
fn distinct_hashes(chunks: &[ChunkRef]) -> Vec<String> {
|
||||
let mut seen = HashSet::new();
|
||||
chunks
|
||||
.iter()
|
||||
.filter(|c| seen.insert(c.h.as_str()))
|
||||
.map(|c| c.h.clone())
|
||||
.collect()
|
||||
}
|
||||
@@ -238,6 +238,71 @@ impl FileUploadService {
|
||||
Ok(dto)
|
||||
}
|
||||
|
||||
/// Swap an existing file's content to an already-ingested blob — the
|
||||
/// update mode of the delta-upload commit. The caller needs `Write`
|
||||
/// permission on the file; the blob reference is consumed (released on
|
||||
/// failure by the write port, like every other registration path).
|
||||
pub async fn update_file_content_by_id_with_perms(
|
||||
&self,
|
||||
caller_id: Uuid,
|
||||
file_id: &str,
|
||||
blob: StoredBlob,
|
||||
) -> Result<FileDto, DomainError> {
|
||||
let Some(InstantUploadDeps { authz, .. }) = &self.instant_upload else {
|
||||
return Err(DomainError::internal_error(
|
||||
"FileUpload",
|
||||
"instant upload is not wired (authz/dedup/quota missing)",
|
||||
));
|
||||
};
|
||||
let Some(file_read) = &self.file_read else {
|
||||
return Err(DomainError::internal_error(
|
||||
"FileUpload",
|
||||
"read port is not wired",
|
||||
));
|
||||
};
|
||||
|
||||
let file_uuid = Uuid::parse_str(file_id)
|
||||
.map_err(|_| DomainError::not_found("File", file_id.to_string()))?;
|
||||
authz
|
||||
.require(
|
||||
Subject::User(caller_id),
|
||||
Permission::Update,
|
||||
Resource::File(file_uuid),
|
||||
)
|
||||
.await?;
|
||||
|
||||
let file = file_read.get_file(file_id).await?;
|
||||
let (new_hash, updated_at) = self
|
||||
.file_write
|
||||
.update_file_content_with_blob(file_id, &blob.hash, blob.size, None)
|
||||
.await?;
|
||||
// The file maps to a different blob now — stale cached content must
|
||||
// never be served for the rest of its TTI window.
|
||||
if let Some(cc) = &self.content_cache {
|
||||
cc.invalidate(file_id).await;
|
||||
}
|
||||
|
||||
let parts = file.into_parts();
|
||||
let updated = crate::domain::entities::file::File::with_timestamps_and_blob_hash(
|
||||
parts.id,
|
||||
parts.name,
|
||||
parts.storage_path,
|
||||
blob.size,
|
||||
parts.mime_type,
|
||||
parts.folder_id,
|
||||
parts.created_at,
|
||||
updated_at as u64,
|
||||
parts.owner_id,
|
||||
new_hash,
|
||||
)
|
||||
.map_err(|e| DomainError::internal_error("FileUpload", format!("rebuild entity: {e}")))?;
|
||||
let dto = FileDto::from(updated);
|
||||
if let Some(hook) = &self.file_lifecycle_hook {
|
||||
hook.on_file_updated(file_id, &dto.content_hash, &dto.mime_type);
|
||||
}
|
||||
Ok(dto)
|
||||
}
|
||||
|
||||
// ── private helpers ──────────────────────────────────────────
|
||||
|
||||
/// Optionally update storage usage after a successful upload.
|
||||
|
||||
@@ -5,6 +5,7 @@ pub mod batch_operations;
|
||||
pub mod blob_lifecycle_service;
|
||||
pub mod calendar_service;
|
||||
pub mod contact_service;
|
||||
pub mod delta_upload_service;
|
||||
pub mod device_auth_service;
|
||||
pub mod external_identity_service;
|
||||
pub mod favorites_service;
|
||||
|
||||
Reference in New Issue
Block a user