nextcloud-server/lib/private/Files/ObjectStore
Louis Chemineau 9bed21a8d7 fix: Transfer ownership with S3 as primary
When using S3 as primary storage, transferring ownership with the `--move` option fail with the following error:

`SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '8-45b963397aa40d4a0063e0d85e4fe7a1' for key 'fs_storage_path_hash'`

The `--move` option moves the entire home folder from one account to another.
The error means that the move failed because the destination folder already exist in `oc_filecache`.

- With S3 as primary storage, folders only exists as entries in `oc_filecache`.
- With S3 as primary storage, `moveFromStorage(...)` only moves the cache entry, as nothing needs to be moved on disk. This cache move does not delete potentially pre-existing destination folder.
- With Local storage, `moveFromStorage(...)` calls `rename(...)` which delete pre-existing folder.

- `transfer(...)`: 687a4d9ac7/apps/files/lib/Service/OwnershipTransferService.php (L112)
- `oneTimeUserSetup(...)`: 687a4d9ac7/lib/private/Files/SetupManager.php (L261-L262)
- `mkdir(...)`: 687a4d9ac7/lib/private/Files/ObjectStore/ObjectStoreStorage.php (L91-L135)
- `moveFromStorage(...)`: 687a4d9ac7/lib/private/Files/ObjectStore/ObjectStoreStorage.php (L635-L636)

Delete pre-existing folder in `moveFromStorage(...)`

Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-04-16 16:18:42 +07:00
..
AppdataPreviewObjectStoreStorage.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
Azure.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
HomeObjectStoreStorage.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
Mapper.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
ObjectStoreScanner.php perf(files): faster query to fetch incomplete directories 2025-02-14 10:57:26 +07:00
ObjectStoreStorage.php fix: Transfer ownership with S3 as primary 2025-04-16 16:18:42 +07:00
S3.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
S3ConfigTrait.php fix(S3ConfigTrait): Allow proxy field to take false 2024-09-15 17:19:40 +07:00
S3ConnectionTrait.php fix(s3): treat empty sse_c_key as not set 2025-01-29 17:34:47 +07:00
S3ObjectTrait.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
S3Signature.php fix(S3): Adjust usage of guzzle promise 2024-06-16 15:54:44 +07:00
StorageObjectStore.php fix: fix object store id for test object store 2024-09-19 13:59:08 +07:00
Swift.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00
SwiftFactory.php fix: make swift connect exception message more informative 2024-09-10 14:47:23 +07:00
SwiftV2CachingAuthService.php chore: Add SPDX header 2024-05-24 13:11:22 +07:00