From a77ffe85936ab1ea9184935714b65320de95679a Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Tue, 12 Apr 2022 16:02:29 +0200 Subject: [PATCH] Adapt user_migration APIs to have information about failures MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/public/UserMigration/IExportDestination.php | 15 +++++++++------ lib/public/UserMigration/IImportSource.php | 16 ++++++++++++++-- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/lib/public/UserMigration/IExportDestination.php b/lib/public/UserMigration/IExportDestination.php index a721efcdf93..2c559848255 100644 --- a/lib/public/UserMigration/IExportDestination.php +++ b/lib/public/UserMigration/IExportDestination.php @@ -38,36 +38,37 @@ interface IExportDestination { * * @param string $path Full path to the file in the export archive. Parent directories will be created if needed. * @param string $content The full content of the file. - * @return bool whether the file contents were successfully added. + * @throws UserMigrationException * * @since 24.0.0 */ - public function addFileContents(string $path, string $content): bool; + public function addFileContents(string $path, string $content): void; /** * Adds a file to the export as a stream * * @param string $path Full path to the file in the export archive. Parent directories will be created if needed. * @param resource $stream A stream resource to read from to get the file content. - * @return bool whether the file stream was successfully added. + * @throws UserMigrationException * * @since 24.0.0 */ - public function addFileAsStream(string $path, $stream): bool; + public function addFileAsStream(string $path, $stream): void; /** * Copy a folder to the export * * @param Folder $folder folder to copy to the export archive. * @param string $destinationPath Full path to the folder in the export archive. Parent directories will be created if needed. - * @return bool whether the folder was successfully added. + * @throws UserMigrationException * * @since 24.0.0 */ - public function copyFolder(Folder $folder, string $destinationPath): bool; + public function copyFolder(Folder $folder, string $destinationPath): void; /** * @param array $versions Migrators and their versions. + * @throws UserMigrationException * * @since 24.0.0 */ @@ -76,6 +77,8 @@ interface IExportDestination { /** * Called after export is complete * + * @throws UserMigrationException + * * @since 24.0.0 */ public function close(): void; diff --git a/lib/public/UserMigration/IImportSource.php b/lib/public/UserMigration/IImportSource.php index 3816afdd033..da2c87ba241 100644 --- a/lib/public/UserMigration/IImportSource.php +++ b/lib/public/UserMigration/IImportSource.php @@ -39,6 +39,7 @@ interface IImportSource { * * @param string $path Full path to the file in the export archive. * @return string The full content of the file. + * @throws UserMigrationException * * @since 24.0.0 */ @@ -49,6 +50,7 @@ interface IImportSource { * * @param string $path Full path to the file in the export archive. * @return resource A stream resource to read from to get the file content. + * @throws UserMigrationException * * @since 24.0.0 */ @@ -59,6 +61,7 @@ interface IImportSource { * * @param string $path Full path to the folder in the export archive. * @return array The list of files. + * @throws UserMigrationException * * @since 24.0.0 */ @@ -67,6 +70,8 @@ interface IImportSource { /** * Test if a path exists, which may be a file or a folder * + * @throws UserMigrationException + * * @since 24.0.0 */ public function pathExists(string $path): bool; @@ -77,12 +82,15 @@ interface IImportSource { * Folder $destination folder to copy into * string $sourcePath path in the export archive * + * @throws UserMigrationException + * * @since 24.0.0 */ - public function copyToFolder(Folder $destination, string $sourcePath): bool; + public function copyToFolder(Folder $destination, string $sourcePath): void; /** * @return array Migrators and their versions from the export archive. + * @throws UserMigrationException * * @since 24.0.0 */ @@ -90,7 +98,7 @@ interface IImportSource { /** * @return ?int Version for this migrator from the export archive. Null means migrator missing. - * + * @throws UserMigrationException * @param string $migrator Migrator id (as returned by IMigrator::getId) * * @since 24.0.0 @@ -100,6 +108,8 @@ interface IImportSource { /** * Get original uid of the imported account * + * @throws UserMigrationException + * * @since 24.0.0 */ public function getOriginalUid(): string; @@ -107,6 +117,8 @@ interface IImportSource { /** * Called after import is complete * + * @throws UserMigrationException + * * @since 24.0.0 */ public function close(): void; -- 2.39.5