]> source.dussan.org Git - nextcloud-server.git/commitdiff
Adapt user_migration APIs to have information about failures
authorCôme Chilliet <come.chilliet@nextcloud.com>
Tue, 12 Apr 2022 14:02:29 +0000 (16:02 +0200)
committerVincent Petry <vincent@nextcloud.com>
Wed, 13 Apr 2022 14:52:39 +0000 (16:52 +0200)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
lib/public/UserMigration/IExportDestination.php
lib/public/UserMigration/IImportSource.php

index a721efcdf93f30c98c5a8368c8c9e6ae00d040d1..2c5598482550b0e7f9c8d3a779ca83c2e7e3e429 100644 (file)
@@ -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<string,int> $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;
index 3816afdd033f81cf5879025834169337010c06d4..da2c87ba24133317a2ae6b14f9a8ddeb0f383359 100644 (file)
@@ -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<string,int> 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;