From 83864d465e76a948798a407a2e1d69fe974d6f88 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 12 Apr 2017 00:45:19 -0500 Subject: [PATCH] [files_external] Remove unneeded update steps Signed-off-by: Morris Jobke --- apps/files_external/appinfo/update.php | 32 ------------- .../lib/Migration/StorageMigrator.php | 10 ---- .../Service/GlobalLegacyStoragesService.php | 46 ------------------- 3 files changed, 88 deletions(-) delete mode 100644 apps/files_external/appinfo/update.php delete mode 100644 apps/files_external/lib/Service/GlobalLegacyStoragesService.php diff --git a/apps/files_external/appinfo/update.php b/apps/files_external/appinfo/update.php deleted file mode 100644 index 3d173f300e..0000000000 --- a/apps/files_external/appinfo/update.php +++ /dev/null @@ -1,32 +0,0 @@ - - * @author Robin Appelman - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see - * - */ - -$installedVersion = \OC::$server->getConfig()->getAppValue('files_external', 'installed_version'); - -$app = new \OCA\Files_External\AppInfo\Application(); - -// Migration to db config -if (version_compare($installedVersion, '0.5.0', '<')) { - $migrator = $app->getContainer()->query('OCA\Files_External\Migration\StorageMigrator'); - $migrator->migrateGlobal(); -} diff --git a/apps/files_external/lib/Migration/StorageMigrator.php b/apps/files_external/lib/Migration/StorageMigrator.php index e48c672613..2ecc5d6cd6 100644 --- a/apps/files_external/lib/Migration/StorageMigrator.php +++ b/apps/files_external/lib/Migration/StorageMigrator.php @@ -117,16 +117,6 @@ class StorageMigrator { } } - /** - * Migrate admin configured storages - */ - public function migrateGlobal() { - $legacyService = new GlobalLegacyStoragesService($this->backendService); - $storageService = new GlobalStoragesService($this->backendService, $this->dbConfig, $this->userMountCache); - - $this->migrate($legacyService, $storageService); - } - /** * Migrate personal storages configured by the current user * diff --git a/apps/files_external/lib/Service/GlobalLegacyStoragesService.php b/apps/files_external/lib/Service/GlobalLegacyStoragesService.php deleted file mode 100644 index ee7f158b79..0000000000 --- a/apps/files_external/lib/Service/GlobalLegacyStoragesService.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @author Robin Appelman - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see - * - */ - -namespace OCA\Files_External\Service; - -/** - * Read admin defined mounts from the legacy mount.json - */ -class GlobalLegacyStoragesService extends LegacyStoragesService { - /** - * @param BackendService $backendService - */ - public function __construct(BackendService $backendService) { - $this->backendService = $backendService; - } - - /** - * Read legacy config data - * - * @return array list of mount configs - */ - protected function readLegacyConfig() { - // read global config - return \OC_Mount_Config::readData(); - } -}