2015-04-09 17:07:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-04-09 17:07:15 +03:00
|
|
|
*
|
|
|
|
* @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 OC\Settings\Controller;
|
2016-10-05 17:31:28 +03:00
|
|
|
|
2015-04-09 17:07:15 +03:00
|
|
|
use OC\Files\View;
|
|
|
|
use OCA\Encryption\Migration;
|
2016-10-05 17:31:28 +03:00
|
|
|
use OCP\IDBConnection;
|
2015-04-09 17:07:15 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\AppFramework\Controller;
|
2015-07-17 13:49:45 +03:00
|
|
|
use OCP\ILogger;
|
2015-04-09 17:07:15 +03:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package OC\Settings\Controller
|
|
|
|
*/
|
|
|
|
class EncryptionController extends Controller {
|
|
|
|
|
2016-10-05 17:31:28 +03:00
|
|
|
/** @var IL10N */
|
2015-04-09 17:07:15 +03:00
|
|
|
private $l10n;
|
|
|
|
|
2016-10-05 17:31:28 +03:00
|
|
|
/** @var IDBConnection */
|
2015-04-09 17:07:15 +03:00
|
|
|
private $connection;
|
|
|
|
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/** @var IUserManager */
|
|
|
|
private $userManager;
|
|
|
|
|
|
|
|
/** @var View */
|
|
|
|
private $view;
|
|
|
|
|
2016-10-05 17:31:28 +03:00
|
|
|
/** @var ILogger */
|
2015-07-17 13:49:45 +03:00
|
|
|
private $logger;
|
|
|
|
|
2015-04-09 17:07:15 +03:00
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
2016-10-05 17:31:28 +03:00
|
|
|
* @param IL10N $l10n
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param IDBConnection $connection
|
2015-04-09 17:07:15 +03:00
|
|
|
* @param IUserManager $userManager
|
|
|
|
* @param View $view
|
2015-07-17 13:49:45 +03:00
|
|
|
* @param ILogger $logger
|
2015-04-09 17:07:15 +03:00
|
|
|
*/
|
|
|
|
public function __construct($appName,
|
|
|
|
IRequest $request,
|
|
|
|
IL10N $l10n,
|
|
|
|
IConfig $config,
|
2016-10-05 17:31:28 +03:00
|
|
|
IDBConnection $connection,
|
2015-04-09 17:07:15 +03:00
|
|
|
IUserManager $userManager,
|
2015-07-17 13:49:45 +03:00
|
|
|
View $view,
|
|
|
|
ILogger $logger) {
|
2015-04-09 17:07:15 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->connection = $connection;
|
|
|
|
$this->view = $view;
|
|
|
|
$this->userManager = $userManager;
|
2015-07-28 15:16:36 +03:00
|
|
|
$this->logger = $logger;
|
2015-04-09 17:07:15 +03:00
|
|
|
}
|
|
|
|
|
2015-07-28 16:12:41 +03:00
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param View $view
|
2016-10-05 17:31:28 +03:00
|
|
|
* @param IDBConnection $connection
|
2015-07-28 16:12:41 +03:00
|
|
|
* @param ILogger $logger
|
|
|
|
* @return Migration
|
|
|
|
*/
|
|
|
|
protected function getMigration(IConfig $config,
|
|
|
|
View $view,
|
2016-10-05 17:31:28 +03:00
|
|
|
IDBConnection $connection,
|
2015-07-28 16:12:41 +03:00
|
|
|
ILogger $logger) {
|
|
|
|
return new Migration($config, $view, $connection, $logger);
|
|
|
|
}
|
|
|
|
|
2015-04-09 17:07:15 +03:00
|
|
|
/**
|
|
|
|
* start migration
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function startMigration() {
|
|
|
|
// allow as long execution on the web server as possible
|
2017-03-11 19:04:21 +03:00
|
|
|
if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
|
|
|
|
@set_time_limit(0);
|
|
|
|
}
|
2015-04-09 17:07:15 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
2015-07-28 16:12:41 +03:00
|
|
|
$migration = $this->getMigration($this->config, $this->view, $this->connection, $this->logger);
|
2015-05-27 14:01:32 +03:00
|
|
|
$migration->reorganizeSystemFolderStructure();
|
|
|
|
$migration->updateDB();
|
|
|
|
|
2015-04-09 17:07:15 +03:00
|
|
|
foreach ($this->userManager->getBackends() as $backend) {
|
|
|
|
$limit = 500;
|
|
|
|
$offset = 0;
|
|
|
|
do {
|
|
|
|
$users = $backend->getUsers('', $limit, $offset);
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$migration->reorganizeFolderStructureForUser($user);
|
|
|
|
}
|
|
|
|
$offset += $limit;
|
|
|
|
} while (count($users) >= $limit);
|
|
|
|
}
|
|
|
|
|
2015-07-08 19:23:18 +03:00
|
|
|
$migration->finalCleanUp();
|
|
|
|
|
2015-04-09 17:07:15 +03:00
|
|
|
} catch (\Exception $e) {
|
2015-07-28 16:12:41 +03:00
|
|
|
return [
|
|
|
|
'data' => [
|
2015-04-09 17:07:15 +03:00
|
|
|
'message' => (string)$this->l10n->t('A problem occurred, please check your log files (Error: %s)', [$e->getMessage()]),
|
2015-07-28 16:12:41 +03:00
|
|
|
],
|
2015-04-09 17:07:15 +03:00
|
|
|
'status' => 'error',
|
2015-07-28 16:12:41 +03:00
|
|
|
];
|
2015-04-09 17:07:15 +03:00
|
|
|
}
|
|
|
|
|
2015-07-28 16:12:41 +03:00
|
|
|
return [
|
|
|
|
'data' => [
|
|
|
|
'message' => (string) $this->l10n->t('Migration Completed'),
|
|
|
|
],
|
|
|
|
'status' => 'success',
|
|
|
|
];
|
2015-04-09 17:07:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|