Skip to content
Snippets Groups Projects
Commit f27e98a3 authored by Robin Appelman's avatar Robin Appelman
Browse files

Migrate files external for the user that the filesystem is being setup for

parent 96b28382
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ class ConfigAdapter implements IMountProvider { ...@@ -114,7 +114,7 @@ class ConfigAdapter implements IMountProvider {
* @return \OCP\Files\Mount\IMountPoint[] * @return \OCP\Files\Mount\IMountPoint[]
*/ */
public function getMountsForUser(IUser $user, IStorageFactory $loader) { public function getMountsForUser(IUser $user, IStorageFactory $loader) {
$this->migrator->migrateUser(); $this->migrator->migrateUser($user);
$mounts = []; $mounts = [];
......
<?php
/**
* @author Robin Appelman <icewind@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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\Migration;
use OCP\IUser;
use OCP\IUserSession;
class DummyUserSession implements IUserSession {
/**
* @var IUser
*/
private $user;
public function login($user, $password) {
}
public function logout() {
}
public function setUser($user) {
$this->user = $user;
}
public function getUser() {
return $this->user;
}
public function isLoggedIn() {
return !is_null($this->user);
}
}
...@@ -32,6 +32,7 @@ use OCA\Files_external\Service\UserStoragesService; ...@@ -32,6 +32,7 @@ use OCA\Files_external\Service\UserStoragesService;
use OCP\IConfig; use OCP\IConfig;
use OCP\IDBConnection; use OCP\IDBConnection;
use OCP\ILogger; use OCP\ILogger;
use OCP\IUser;
use OCP\IUserSession; use OCP\IUserSession;
/** /**
...@@ -48,11 +49,6 @@ class StorageMigrator { ...@@ -48,11 +49,6 @@ class StorageMigrator {
*/ */
private $dbConfig; private $dbConfig;
/**
* @var IUserSession
*/
private $userSession;
/** /**
* @var IConfig * @var IConfig
*/ */
...@@ -73,7 +69,6 @@ class StorageMigrator { ...@@ -73,7 +69,6 @@ class StorageMigrator {
* *
* @param BackendService $backendService * @param BackendService $backendService
* @param DBConfigService $dbConfig * @param DBConfigService $dbConfig
* @param IUserSession $userSession
* @param IConfig $config * @param IConfig $config
* @param IDBConnection $connection * @param IDBConnection $connection
* @param ILogger $logger * @param ILogger $logger
...@@ -81,14 +76,12 @@ class StorageMigrator { ...@@ -81,14 +76,12 @@ class StorageMigrator {
public function __construct( public function __construct(
BackendService $backendService, BackendService $backendService,
DBConfigService $dbConfig, DBConfigService $dbConfig,
IUserSession $userSession,
IConfig $config, IConfig $config,
IDBConnection $connection, IDBConnection $connection,
ILogger $logger ILogger $logger
) { ) {
$this->backendService = $backendService; $this->backendService = $backendService;
$this->dbConfig = $dbConfig; $this->dbConfig = $dbConfig;
$this->userSession = $userSession;
$this->config = $config; $this->config = $config;
$this->connection = $connection; $this->connection = $connection;
$this->logger = $logger; $this->logger = $logger;
...@@ -121,14 +114,18 @@ class StorageMigrator { ...@@ -121,14 +114,18 @@ class StorageMigrator {
/** /**
* Migrate personal storages configured by the current user * Migrate personal storages configured by the current user
*
* @param IUser $user
*/ */
public function migrateUser() { public function migrateUser(IUser $user) {
$userId = $this->userSession->getUser()->getUID(); $dummySession = new DummyUserSession();
$dummySession->setUser($user);
$userId = $user->getUID();
$userVersion = $this->config->getUserValue($userId, 'files_external', 'config_version', '0.0.0'); $userVersion = $this->config->getUserValue($userId, 'files_external', 'config_version', '0.0.0');
if (version_compare($userVersion, '0.5.0', '<')) { if (version_compare($userVersion, '0.5.0', '<')) {
$this->config->setUserValue($userId, 'files_external', 'config_version', '0.5.0'); $this->config->setUserValue($userId, 'files_external', 'config_version', '0.5.0');
$legacyService = new UserLegacyStoragesService($this->backendService, $this->userSession); $legacyService = new UserLegacyStoragesService($this->backendService, $dummySession);
$storageService = new UserStoragesService($this->backendService, $this->dbConfig, $this->userSession); $storageService = new UserStoragesService($this->backendService, $this->dbConfig, $dummySession);
$this->migrate($legacyService, $storageService); $this->migrate($legacyService, $storageService);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment