aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/appinfo/update.php32
-rw-r--r--apps/files_external/lib/Migration/StorageMigrator.php10
-rw-r--r--apps/files_external/lib/Service/GlobalLegacyStoragesService.php46
3 files changed, 0 insertions, 88 deletions
diff --git a/apps/files_external/appinfo/update.php b/apps/files_external/appinfo/update.php
deleted file mode 100644
index 3d173f300e7..00000000000
--- a/apps/files_external/appinfo/update.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @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 <http://www.gnu.org/licenses/>
- *
- */
-
-$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 e48c6726136..2ecc5d6cd66 100644
--- a/apps/files_external/lib/Migration/StorageMigrator.php
+++ b/apps/files_external/lib/Migration/StorageMigrator.php
@@ -118,16 +118,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
*
* @param IUser $user
diff --git a/apps/files_external/lib/Service/GlobalLegacyStoragesService.php b/apps/files_external/lib/Service/GlobalLegacyStoragesService.php
deleted file mode 100644
index ee7f158b792..00000000000
--- a/apps/files_external/lib/Service/GlobalLegacyStoragesService.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @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 <http://www.gnu.org/licenses/>
- *
- */
-
-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();
- }
-}