2026-03-07 18:05:52 +01:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
|
2026-06-06 17:47:59 +02:00
|
|
|
use crate::domain::services::path_service::{
|
|
|
|
|
StoragePath, normalize_storage_name, validate_storage_name,
|
|
|
|
|
};
|
2025-03-19 00:44:27 +01:00
|
|
|
|
2026-02-12 09:41:25 +01:00
|
|
|
// Re-export entity errors from the centralized module
|
2026-02-06 20:57:00 +01:00
|
|
|
pub use super::entity_errors::{FolderError, FolderResult};
|
2025-03-17 21:28:08 +01:00
|
|
|
|
|
|
|
|
/// Represents a folder entity in the domain
|
2026-02-02 23:56:40 +01:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2025-03-17 21:28:08 +01:00
|
|
|
pub struct Folder {
|
|
|
|
|
/// Unique identifier for the folder
|
2025-03-19 00:44:27 +01:00
|
|
|
id: String,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-17 21:28:08 +01:00
|
|
|
/// Name of the folder
|
2025-03-19 00:44:27 +01:00
|
|
|
name: String,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
/// Path to the folder in the domain model
|
|
|
|
|
storage_path: StoragePath,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-02-02 23:56:40 +01:00
|
|
|
/// String representation of the path (for API compatibility)
|
2025-03-19 00:44:27 +01:00
|
|
|
path_string: String,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-17 21:28:08 +01:00
|
|
|
/// Parent folder ID (None if it's a root folder)
|
2025-03-19 00:44:27 +01:00
|
|
|
parent_id: Option<String>,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-02-15 23:45:11 +01:00
|
|
|
/// Owner user ID — scopes folder visibility per user.
|
|
|
|
|
/// `None` only for legacy/stub folders; real folders always have an owner.
|
2026-03-07 18:05:52 +01:00
|
|
|
owner_id: Option<Uuid>,
|
2026-02-15 23:45:11 +01:00
|
|
|
|
2025-03-17 21:28:08 +01:00
|
|
|
/// Creation timestamp
|
2025-03-19 00:44:27 +01:00
|
|
|
created_at: u64,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-06-06 17:02:50 +02:00
|
|
|
/// Last modification timestamp of THIS folder row (rename, move,
|
|
|
|
|
/// metadata change). Does NOT bump when descendants change —
|
|
|
|
|
/// that signal lives on `tree_modified_at`.
|
2025-03-19 00:44:27 +01:00
|
|
|
modified_at: u64,
|
2026-06-06 17:02:50 +02:00
|
|
|
|
|
|
|
|
/// Latest `modified_at`-equivalent across the entire descendant
|
|
|
|
|
/// subtree. Bumped by a PostgreSQL trigger on any file or folder
|
|
|
|
|
/// write under this folder's ltree subtree. Source of the
|
|
|
|
|
/// HTTP ETag emitted in PROPFIND/GET/HEAD responses — see
|
|
|
|
|
/// [`Folder::etag`] for the formula and rationale.
|
|
|
|
|
tree_modified_at: u64,
|
2025-03-17 21:28:08 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// We no longer need this module, now we use a String directly
|
2025-03-19 00:44:27 +01:00
|
|
|
|
2025-03-20 09:22:31 +01:00
|
|
|
impl Default for Folder {
|
|
|
|
|
fn default() -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
id: "stub-id".to_string(),
|
|
|
|
|
name: "stub-folder".to_string(),
|
|
|
|
|
storage_path: StoragePath::from_string("/"),
|
|
|
|
|
path_string: "/".to_string(),
|
|
|
|
|
parent_id: None,
|
2026-02-15 23:45:11 +01:00
|
|
|
owner_id: None,
|
2025-03-20 09:22:31 +01:00
|
|
|
created_at: 0,
|
|
|
|
|
modified_at: 0,
|
2026-06-06 17:02:50 +02:00
|
|
|
tree_modified_at: 0,
|
2025-03-20 09:22:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-17 21:28:08 +01:00
|
|
|
impl Folder {
|
2025-03-19 00:44:27 +01:00
|
|
|
/// Creates a new folder with validation
|
|
|
|
|
pub fn new(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
storage_path: StoragePath,
|
|
|
|
|
parent_id: Option<String>,
|
2026-02-15 23:45:11 +01:00
|
|
|
) -> FolderResult<Self> {
|
|
|
|
|
Self::new_with_owner(id, name, storage_path, parent_id, None)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Creates a new folder with validation and an explicit owner.
|
|
|
|
|
pub fn new_with_owner(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
storage_path: StoragePath,
|
|
|
|
|
parent_id: Option<String>,
|
2026-03-07 18:05:52 +01:00
|
|
|
owner_id: Option<Uuid>,
|
2025-03-19 00:44:27 +01:00
|
|
|
) -> FolderResult<Self> {
|
2026-06-06 17:47:59 +02:00
|
|
|
let name = normalize_storage_name(&name);
|
2025-03-30 14:17:09 +00:00
|
|
|
// Validate folder name
|
2026-05-08 00:11:02 +02:00
|
|
|
if let Err(reason) = validate_storage_name(&name) {
|
|
|
|
|
return Err(FolderError::InvalidFolderName(format!("{name}: {reason}")));
|
2025-03-19 00:44:27 +01:00
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-17 21:28:08 +01:00
|
|
|
let now = std::time::SystemTime::now()
|
|
|
|
|
.duration_since(std::time::UNIX_EPOCH)
|
2025-03-19 00:44:27 +01:00
|
|
|
.unwrap_or_default()
|
2025-03-17 21:28:08 +01:00
|
|
|
.as_secs();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// Store the path string for serialization compatibility
|
2025-03-19 00:44:27 +01:00
|
|
|
let path_string = storage_path.to_string();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
Ok(Self {
|
2025-03-17 21:28:08 +01:00
|
|
|
id,
|
|
|
|
|
name,
|
2025-03-19 00:44:27 +01:00
|
|
|
storage_path,
|
|
|
|
|
path_string,
|
2025-03-17 21:28:08 +01:00
|
|
|
parent_id,
|
2026-02-15 23:45:11 +01:00
|
|
|
owner_id,
|
2025-03-17 21:28:08 +01:00
|
|
|
created_at: now,
|
|
|
|
|
modified_at: now,
|
2026-06-06 17:02:50 +02:00
|
|
|
tree_modified_at: now,
|
2025-03-19 00:44:27 +01:00
|
|
|
})
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-06-06 17:02:50 +02:00
|
|
|
/// Creates a folder with specific timestamps (for reconstruction).
|
|
|
|
|
/// `tree_modified_at` defaults to `modified_at` — appropriate for
|
|
|
|
|
/// in-memory construction; database loads should always go via
|
|
|
|
|
/// [`Folder::with_timestamps_and_tree`] so the rollup value
|
|
|
|
|
/// reflects DB reality.
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn with_timestamps(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
storage_path: StoragePath,
|
|
|
|
|
parent_id: Option<String>,
|
|
|
|
|
created_at: u64,
|
|
|
|
|
modified_at: u64,
|
2026-02-15 23:45:11 +01:00
|
|
|
) -> FolderResult<Self> {
|
2026-06-06 17:02:50 +02:00
|
|
|
Self::with_timestamps_and_tree(
|
2026-02-21 13:33:18 +01:00
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
storage_path,
|
|
|
|
|
parent_id,
|
|
|
|
|
None,
|
|
|
|
|
created_at,
|
|
|
|
|
modified_at,
|
2026-06-06 17:02:50 +02:00
|
|
|
modified_at,
|
2026-02-21 13:33:18 +01:00
|
|
|
)
|
2026-02-15 23:45:11 +01:00
|
|
|
}
|
|
|
|
|
|
2026-06-06 17:02:50 +02:00
|
|
|
/// Creates a folder with specific timestamps and owner (legacy
|
|
|
|
|
/// constructor — `tree_modified_at` defaults to `modified_at`).
|
|
|
|
|
/// Prefer [`Folder::with_timestamps_and_tree`] for DB reconstruction
|
|
|
|
|
/// so the rollup ETag reflects descendant activity, not just this
|
|
|
|
|
/// row's own metadata.
|
2026-02-15 23:45:11 +01:00
|
|
|
pub fn with_timestamps_and_owner(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
storage_path: StoragePath,
|
|
|
|
|
parent_id: Option<String>,
|
2026-03-07 18:05:52 +01:00
|
|
|
owner_id: Option<Uuid>,
|
2026-02-15 23:45:11 +01:00
|
|
|
created_at: u64,
|
|
|
|
|
modified_at: u64,
|
2025-03-19 00:44:27 +01:00
|
|
|
) -> FolderResult<Self> {
|
2026-06-06 17:02:50 +02:00
|
|
|
Self::with_timestamps_and_tree(
|
|
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
storage_path,
|
|
|
|
|
parent_id,
|
|
|
|
|
owner_id,
|
|
|
|
|
created_at,
|
|
|
|
|
modified_at,
|
|
|
|
|
modified_at,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Full constructor used by the PG repository when reading rows.
|
|
|
|
|
/// `tree_modified_at` comes from the trigger-maintained column on
|
|
|
|
|
/// `storage.folders` and feeds [`Folder::etag`].
|
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
|
|
|
pub fn with_timestamps_and_tree(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
storage_path: StoragePath,
|
|
|
|
|
parent_id: Option<String>,
|
|
|
|
|
owner_id: Option<Uuid>,
|
|
|
|
|
created_at: u64,
|
|
|
|
|
modified_at: u64,
|
|
|
|
|
tree_modified_at: u64,
|
|
|
|
|
) -> FolderResult<Self> {
|
2026-06-06 17:47:59 +02:00
|
|
|
let name = normalize_storage_name(&name);
|
2026-05-08 00:11:02 +02:00
|
|
|
if let Err(reason) = validate_storage_name(&name) {
|
|
|
|
|
return Err(FolderError::InvalidFolderName(format!("{name}: {reason}")));
|
2025-03-17 21:28:08 +01:00
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
let path_string = storage_path.to_string();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
Ok(Self {
|
|
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
storage_path,
|
|
|
|
|
path_string,
|
|
|
|
|
parent_id,
|
2026-02-15 23:45:11 +01:00
|
|
|
owner_id,
|
2025-03-19 00:44:27 +01:00
|
|
|
created_at,
|
|
|
|
|
modified_at,
|
2026-06-06 17:02:50 +02:00
|
|
|
tree_modified_at,
|
2025-03-19 00:44:27 +01:00
|
|
|
})
|
2025-03-17 21:28:08 +01:00
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
// Getters
|
|
|
|
|
pub fn id(&self) -> &str {
|
|
|
|
|
&self.id
|
2025-03-17 21:28:08 +01:00
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn name(&self) -> &str {
|
|
|
|
|
&self.name
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn storage_path(&self) -> &StoragePath {
|
|
|
|
|
&self.storage_path
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn path_string(&self) -> &str {
|
|
|
|
|
&self.path_string
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn parent_id(&self) -> Option<&str> {
|
|
|
|
|
self.parent_id.as_deref()
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn created_at(&self) -> u64 {
|
|
|
|
|
self.created_at
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn modified_at(&self) -> u64 {
|
|
|
|
|
self.modified_at
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-03-07 18:05:52 +01:00
|
|
|
pub fn owner_id(&self) -> Option<Uuid> {
|
|
|
|
|
self.owner_id
|
2026-02-15 23:45:11 +01:00
|
|
|
}
|
|
|
|
|
|
2026-06-10 22:03:49 +02:00
|
|
|
/// Latest descendant-write timestamp. Statement-level Postgres
|
|
|
|
|
/// triggers enqueue every file/folder write into
|
|
|
|
|
/// `storage.tree_etag_dirty`; the background `TreeEtagFlushService`
|
|
|
|
|
/// drains the queue (default every 500 ms) and bumps the ltree
|
|
|
|
|
/// ancestor chain in one batched UPDATE. Eventually consistent:
|
|
|
|
|
/// the bump lands within ~one flush interval AFTER the change is
|
|
|
|
|
/// committed, never before. See migration
|
|
|
|
|
/// `20260627000000_async_tree_etag_queue.sql` for the rationale
|
|
|
|
|
/// (user-facing writes must take zero folder-row locks).
|
2026-06-06 17:02:50 +02:00
|
|
|
pub fn tree_modified_at(&self) -> u64 {
|
|
|
|
|
self.tree_modified_at
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Opaque HTTP ETag string (raw, NOT HTTP-quoted). Handlers wrap
|
|
|
|
|
/// in `"…"` themselves at the HTTP boundary.
|
2026-06-06 15:37:27 +02:00
|
|
|
///
|
2026-06-06 19:51:51 +02:00
|
|
|
/// Thin instance-method wrapper around [`Folder::compute_etag`]
|
|
|
|
|
/// — see that function for the formula and the rationale.
|
|
|
|
|
/// Raw-row listings (favorites, trash, recents, search) call
|
|
|
|
|
/// the static form so the same formula governs every code path.
|
|
|
|
|
pub fn etag(&self) -> String {
|
|
|
|
|
Self::compute_etag(&self.id, self.tree_modified_at)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Pure formula for the folder ETag, exposed as a static method
|
|
|
|
|
/// so callers that don't have a fully-constructed `Folder` (raw
|
|
|
|
|
/// SQL rows in listing handlers, search results, etc.) route
|
|
|
|
|
/// through the same definition.
|
|
|
|
|
///
|
2026-06-06 17:02:50 +02:00
|
|
|
/// **Formula**: `{id[..16]}-{tree_modified_at}`.
|
2026-06-06 15:37:27 +02:00
|
|
|
///
|
2026-06-06 17:02:50 +02:00
|
|
|
/// - The 16-char UUID prefix gives the folder its identity
|
|
|
|
|
/// component — keeps two empty same-mtime folders distinct.
|
|
|
|
|
/// - `tree_modified_at` (Unix seconds) is the actual signal:
|
2026-06-10 22:03:49 +02:00
|
|
|
/// bumped whenever ANY descendant (file or sub-folder, at any
|
|
|
|
|
/// depth) is created, modified, deleted, or moved. This is the
|
|
|
|
|
/// contract NextCloud's sync engine relies on — "did anything
|
|
|
|
|
/// change inside this collection since I last looked?". Until
|
|
|
|
|
/// this column existed, the answer was always "no" because the
|
|
|
|
|
/// folder UUID never changed; clients had to do periodic deep
|
|
|
|
|
/// PROPFIND walks to discover web-uploaded files.
|
|
|
|
|
/// - The bump is asynchronous: triggers enqueue, the
|
|
|
|
|
/// `TreeEtagFlushService` applies (≤ ~one flush interval after
|
|
|
|
|
/// commit, monotonic — two flushes in the same wall-clock
|
|
|
|
|
/// second still yield distinct values). Clients only compare
|
|
|
|
|
/// etags across successive polls, so the short lag is
|
|
|
|
|
/// unobservable; what matters is the bump never precedes the
|
|
|
|
|
/// change becoming visible.
|
2026-06-06 17:02:50 +02:00
|
|
|
/// - Renaming the folder itself does NOT change the etag's
|
2026-06-10 22:03:49 +02:00
|
|
|
/// identity portion (UUID is stable across renames). A rename
|
|
|
|
|
/// does enqueue the ancestor chain, so the PARENT's etag still
|
|
|
|
|
/// changes — which is correct, the parent collection's listing
|
|
|
|
|
/// changed; the folder's own value stays untouched
|
|
|
|
|
/// (self-exclusion).
|
2026-06-06 19:51:51 +02:00
|
|
|
pub fn compute_etag(id: &str, tree_modified_at: u64) -> String {
|
|
|
|
|
let prefix: String = id.chars().take(16).collect();
|
|
|
|
|
format!("{}-{}", prefix, tree_modified_at)
|
2026-06-06 15:37:27 +02:00
|
|
|
}
|
|
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
/// Creates a new Folder instance from a DTO
|
|
|
|
|
/// This function is primarily for conversions in batch handlers
|
2025-03-19 00:44:27 +01:00
|
|
|
pub fn from_dto(
|
|
|
|
|
id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
path: String,
|
|
|
|
|
parent_id: Option<String>,
|
|
|
|
|
created_at: u64,
|
|
|
|
|
modified_at: u64,
|
|
|
|
|
) -> Self {
|
2025-03-30 14:17:09 +00:00
|
|
|
// Create storage_path from the string
|
2025-03-19 00:44:27 +01:00
|
|
|
let storage_path = StoragePath::from_string(&path);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2026-06-06 17:02:50 +02:00
|
|
|
// Create directly without validation to avoid errors in DTO
|
2026-06-06 17:47:59 +02:00
|
|
|
// conversions. Still NFC-normalize so DTO-reconstructed
|
|
|
|
|
// entities maintain the storage invariant.
|
|
|
|
|
// `tree_modified_at` defaults to `modified_at`: DTO
|
|
|
|
|
// round-trips lose the real rollup signal, so callers that
|
|
|
|
|
// need a freshly-rolled-up etag must reload from the
|
2026-06-06 17:02:50 +02:00
|
|
|
// repository.
|
2026-06-06 17:47:59 +02:00
|
|
|
let name = normalize_storage_name(&name);
|
2025-03-19 00:44:27 +01:00
|
|
|
Self {
|
|
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
storage_path,
|
|
|
|
|
path_string: path,
|
|
|
|
|
parent_id,
|
2026-02-15 23:45:11 +01:00
|
|
|
owner_id: None,
|
2025-03-19 00:44:27 +01:00
|
|
|
created_at,
|
|
|
|
|
modified_at,
|
2026-06-06 17:02:50 +02:00
|
|
|
tree_modified_at: modified_at,
|
2025-03-19 00:44:27 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// Methods to create new versions of the folder (immutable)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
/// Creates a new version of the folder with updated name
|
|
|
|
|
pub fn with_name(&self, new_name: String) -> FolderResult<Self> {
|
2026-06-06 17:47:59 +02:00
|
|
|
let new_name = normalize_storage_name(&new_name);
|
2026-05-08 00:11:02 +02:00
|
|
|
if let Err(reason) = validate_storage_name(&new_name) {
|
|
|
|
|
return Err(FolderError::InvalidFolderName(format!(
|
|
|
|
|
"{new_name}: {reason}"
|
|
|
|
|
)));
|
2025-03-19 00:44:27 +01:00
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// Update path based on the name
|
2025-03-19 00:44:27 +01:00
|
|
|
let parent_path = self.storage_path.parent();
|
|
|
|
|
let new_storage_path = match parent_path {
|
|
|
|
|
Some(parent) => parent.join(&new_name),
|
|
|
|
|
None => StoragePath::from_string(&new_name),
|
|
|
|
|
};
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// Update string representation
|
2025-03-19 00:44:27 +01:00
|
|
|
let new_path_string = new_storage_path.to_string();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
let now = std::time::SystemTime::now()
|
2025-03-17 21:28:08 +01:00
|
|
|
.duration_since(std::time::UNIX_EPOCH)
|
2025-03-19 00:44:27 +01:00
|
|
|
.unwrap_or_default()
|
2025-03-17 21:28:08 +01:00
|
|
|
.as_secs();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
Ok(Self {
|
|
|
|
|
id: self.id.clone(),
|
|
|
|
|
name: new_name,
|
|
|
|
|
storage_path: new_storage_path,
|
|
|
|
|
path_string: new_path_string,
|
|
|
|
|
parent_id: self.parent_id.clone(),
|
2026-03-09 14:34:07 +01:00
|
|
|
owner_id: self.owner_id,
|
2025-03-19 00:44:27 +01:00
|
|
|
created_at: self.created_at,
|
|
|
|
|
modified_at: now,
|
2026-06-06 17:02:50 +02:00
|
|
|
// Renaming bumps both self and descendant rollup —
|
|
|
|
|
// ancestors' listings now show a new name, so the
|
|
|
|
|
// collection has materially changed.
|
|
|
|
|
tree_modified_at: now,
|
2025-03-19 00:44:27 +01:00
|
|
|
})
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
/// Creates a new version of the folder with updated parent
|
2026-02-14 01:29:34 +01:00
|
|
|
pub fn with_parent(
|
|
|
|
|
&self,
|
|
|
|
|
parent_id: Option<String>,
|
|
|
|
|
parent_path: Option<StoragePath>,
|
|
|
|
|
) -> FolderResult<Self> {
|
2025-03-30 14:17:09 +00:00
|
|
|
// We need a folder path to update the path
|
2025-03-19 00:44:27 +01:00
|
|
|
let new_storage_path = match parent_path {
|
|
|
|
|
Some(path) => path.join(&self.name),
|
2025-03-30 14:17:09 +00:00
|
|
|
None => StoragePath::from_string(&self.name), // Root
|
2025-03-19 00:44:27 +01:00
|
|
|
};
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-30 14:17:09 +00:00
|
|
|
// Update string representation
|
2025-03-19 00:44:27 +01:00
|
|
|
let new_path_string = new_storage_path.to_string();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
let now = std::time::SystemTime::now()
|
|
|
|
|
.duration_since(std::time::UNIX_EPOCH)
|
|
|
|
|
.unwrap_or_default()
|
|
|
|
|
.as_secs();
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
Ok(Self {
|
|
|
|
|
id: self.id.clone(),
|
|
|
|
|
name: self.name.clone(),
|
|
|
|
|
storage_path: new_storage_path,
|
|
|
|
|
path_string: new_path_string,
|
|
|
|
|
parent_id,
|
2026-03-09 14:34:07 +01:00
|
|
|
owner_id: self.owner_id,
|
2025-03-19 00:44:27 +01:00
|
|
|
created_at: self.created_at,
|
|
|
|
|
modified_at: now,
|
2026-06-06 17:02:50 +02:00
|
|
|
tree_modified_at: now,
|
2025-03-19 00:44:27 +01:00
|
|
|
})
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
/// Returns an absolute path for this folder
|
|
|
|
|
pub fn get_absolute_path<P: AsRef<std::path::Path>>(&self, root_path: P) -> std::path::PathBuf {
|
|
|
|
|
let mut result = std::path::PathBuf::from(root_path.as_ref());
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
// Skip leading '/' from path_string to avoid creating absolute path incorrectly
|
|
|
|
|
let relative_path = if self.path_string.starts_with('/') {
|
|
|
|
|
&self.path_string[1..]
|
|
|
|
|
} else {
|
|
|
|
|
&self.path_string
|
|
|
|
|
};
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
if !relative_path.is_empty() {
|
|
|
|
|
result.push(relative_path);
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
result
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
#[test]
|
|
|
|
|
fn test_folder_creation_with_valid_name() {
|
|
|
|
|
let storage_path = StoragePath::from_string("/test/folder");
|
|
|
|
|
let folder = Folder::new(
|
|
|
|
|
"123".to_string(),
|
|
|
|
|
"my_folder".to_string(),
|
|
|
|
|
storage_path,
|
|
|
|
|
None,
|
|
|
|
|
);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
assert!(folder.is_ok());
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
#[test]
|
|
|
|
|
fn test_folder_creation_with_invalid_name() {
|
|
|
|
|
let storage_path = StoragePath::from_string("/test/invalid/folder");
|
|
|
|
|
let folder = Folder::new(
|
|
|
|
|
"123".to_string(),
|
2025-03-30 14:17:09 +00:00
|
|
|
"folder/with/slash".to_string(), // Invalid name
|
2025-03-19 00:44:27 +01:00
|
|
|
storage_path,
|
|
|
|
|
None,
|
|
|
|
|
);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
assert!(folder.is_err());
|
|
|
|
|
match folder {
|
|
|
|
|
Err(FolderError::InvalidFolderName(_)) => (),
|
|
|
|
|
_ => panic!("Expected InvalidFolderName error"),
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
#[test]
|
|
|
|
|
fn test_folder_with_name() {
|
|
|
|
|
let storage_path = StoragePath::from_string("/test/folder");
|
|
|
|
|
let folder = Folder::new(
|
|
|
|
|
"123".to_string(),
|
|
|
|
|
"old_name".to_string(),
|
|
|
|
|
storage_path,
|
|
|
|
|
None,
|
2026-02-14 01:29:34 +01:00
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
2025-03-19 00:44:27 +01:00
|
|
|
let renamed = folder.with_name("new_name".to_string());
|
|
|
|
|
assert!(renamed.is_ok());
|
|
|
|
|
let renamed = renamed.unwrap();
|
|
|
|
|
assert_eq!(renamed.name(), "new_name");
|
2025-03-30 14:17:09 +00:00
|
|
|
assert_eq!(renamed.id(), "123"); // The ID doesn't change
|
2025-03-17 21:28:08 +01:00
|
|
|
}
|
2026-06-06 17:02:50 +02:00
|
|
|
|
|
|
|
|
/// The folder ETag is `{id[..16]}-{tree_modified_at}`. Two
|
|
|
|
|
/// fixtures with identical id-prefix + tree_modified_at must
|
|
|
|
|
/// produce byte-identical ETags — that's what NC's incremental
|
|
|
|
|
/// sync relies on across PROPFIND cycles.
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_etag_combines_id_prefix_and_tree_modified_at() {
|
|
|
|
|
let folder = Folder::with_timestamps_and_tree(
|
|
|
|
|
"0123456789abcdefZZZZZZZZ".to_string(),
|
|
|
|
|
"folder".to_string(),
|
|
|
|
|
StoragePath::from_string("/folder"),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
1_000,
|
|
|
|
|
2_000,
|
|
|
|
|
5_000,
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
assert_eq!(folder.tree_modified_at(), 5_000);
|
|
|
|
|
assert_eq!(folder.etag(), "0123456789abcdef-5000");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Two folders with the same `tree_modified_at` but different
|
|
|
|
|
/// IDs must NOT collide on ETag — the id prefix is the identity
|
|
|
|
|
/// portion that keeps them distinct.
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_etag_distinct_folders_same_tree_mtime() {
|
|
|
|
|
let a = Folder::with_timestamps_and_tree(
|
|
|
|
|
"aaaaaaaaaaaaaaaaZZZZZZZZ".to_string(),
|
|
|
|
|
"a".to_string(),
|
|
|
|
|
StoragePath::from_string("/a"),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
42,
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
let b = Folder::with_timestamps_and_tree(
|
|
|
|
|
"bbbbbbbbbbbbbbbbZZZZZZZZ".to_string(),
|
|
|
|
|
"b".to_string(),
|
|
|
|
|
StoragePath::from_string("/b"),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
42,
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
assert_ne!(a.etag(), b.etag());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// `tree_modified_at` is the actual change-detection signal —
|
|
|
|
|
/// the trigger bumps it for descendant writes. Renaming the
|
|
|
|
|
/// folder bumps both `modified_at` and `tree_modified_at`
|
|
|
|
|
/// (the parent collection's listing changed), and the etag
|
|
|
|
|
/// must reflect that — otherwise NC won't notice the rename.
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_etag_changes_when_tree_modified_at_changes() {
|
|
|
|
|
let folder_a = Folder::with_timestamps_and_tree(
|
|
|
|
|
"abcd1234efgh5678ZZZZZZZZ".to_string(),
|
|
|
|
|
"folder".to_string(),
|
|
|
|
|
StoragePath::from_string("/folder"),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
1_000,
|
|
|
|
|
2_000,
|
|
|
|
|
3_000,
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
let folder_b = Folder::with_timestamps_and_tree(
|
|
|
|
|
"abcd1234efgh5678ZZZZZZZZ".to_string(),
|
|
|
|
|
"folder".to_string(),
|
|
|
|
|
StoragePath::from_string("/folder"),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
1_000,
|
|
|
|
|
2_000,
|
|
|
|
|
4_000,
|
|
|
|
|
)
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
assert_ne!(folder_a.etag(), folder_b.etag());
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
}
|