Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-04-12 17:02:29 +0300
committerVincent Petry <vincent@nextcloud.com>2022-04-13 17:52:39 +0300
commita77ffe85936ab1ea9184935714b65320de95679a (patch)
tree5dcdb8c1e5cefa53c69f1b4a654ee696e4b2be46 /lib
parentcd95fce105fe5f0e71b1bcac7685464f936b9749 (diff)
Adapt user_migration APIs to have information about failures
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/public/UserMigration/IExportDestination.php15
-rw-r--r--lib/public/UserMigration/IImportSource.php16
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<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;
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<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;