2013-11-26 17:12:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2013-11-26 17:12:48 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-11-26 17:12:48 +04:00
|
|
|
namespace OC\Core\Command\Maintenance;
|
|
|
|
|
2016-04-19 16:36:11 +03:00
|
|
|
use Exception;
|
2017-10-24 15:13:45 +03:00
|
|
|
use OCP\App\IAppManager;
|
2016-04-26 17:24:50 +03:00
|
|
|
use OCP\IConfig;
|
2013-11-26 17:12:48 +04:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
2016-04-26 17:24:50 +03:00
|
|
|
use Symfony\Component\Console\Helper\ProgressBar;
|
2013-11-26 17:12:48 +04:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
2015-10-19 17:41:43 +03:00
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
2013-11-26 17:12:48 +04:00
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
2016-04-26 17:24:50 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2013-11-26 17:12:48 +04:00
|
|
|
|
|
|
|
class Repair extends Command {
|
2016-04-19 16:36:11 +03:00
|
|
|
/** @var \OC\Repair $repair */
|
2013-11-26 17:12:48 +04:00
|
|
|
protected $repair;
|
2016-04-26 17:24:50 +03:00
|
|
|
/** @var IConfig */
|
2014-11-19 02:25:26 +03:00
|
|
|
protected $config;
|
2016-04-26 17:24:50 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
|
|
|
private $dispatcher;
|
|
|
|
/** @var ProgressBar */
|
|
|
|
private $progress;
|
|
|
|
/** @var OutputInterface */
|
|
|
|
private $output;
|
2017-10-24 15:13:45 +03:00
|
|
|
/** @var IAppManager */
|
|
|
|
private $appManager;
|
2013-11-26 17:12:48 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Repair $repair
|
2016-04-26 17:24:50 +03:00
|
|
|
* @param IConfig $config
|
2017-10-24 15:13:45 +03:00
|
|
|
* @param EventDispatcherInterface $dispatcher
|
|
|
|
* @param IAppManager $appManager
|
2013-11-26 17:12:48 +04:00
|
|
|
*/
|
2017-10-24 15:13:45 +03:00
|
|
|
public function __construct(\OC\Repair $repair, IConfig $config, EventDispatcherInterface $dispatcher, IAppManager $appManager) {
|
2013-11-26 17:12:48 +04:00
|
|
|
$this->repair = $repair;
|
2014-06-10 13:47:27 +04:00
|
|
|
$this->config = $config;
|
2016-04-26 17:24:50 +03:00
|
|
|
$this->dispatcher = $dispatcher;
|
2017-10-24 15:13:45 +03:00
|
|
|
$this->appManager = $appManager;
|
2013-11-26 17:12:48 +04:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('maintenance:repair')
|
2015-10-19 17:41:43 +03:00
|
|
|
->setDescription('repair this installation')
|
|
|
|
->addOption(
|
|
|
|
'include-expensive',
|
|
|
|
null,
|
|
|
|
InputOption::VALUE_NONE,
|
2016-04-19 16:36:11 +03:00
|
|
|
'Use this option when you want to include resource and load expensive tasks');
|
2013-11-26 17:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
2019-02-02 20:07:48 +03:00
|
|
|
$repairSteps = $this->repair::getRepairSteps();
|
|
|
|
|
|
|
|
if ($input->getOption('include-expensive')) {
|
|
|
|
$repairSteps = array_merge($repairSteps, $this->repair::getExpensiveRepairSteps());
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($repairSteps as $step) {
|
|
|
|
$this->repair->addStep($step);
|
2015-10-19 17:41:43 +03:00
|
|
|
}
|
|
|
|
|
2017-10-24 15:13:45 +03:00
|
|
|
$apps = $this->appManager->getInstalledApps();
|
2016-04-19 16:36:11 +03:00
|
|
|
foreach ($apps as $app) {
|
2017-12-18 22:26:44 +03:00
|
|
|
if (!$this->appManager->isEnabledForUser($app)) {
|
2016-04-19 16:36:11 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$info = \OC_App::getAppInfo($app);
|
|
|
|
if (!is_array($info)) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-04-18 15:28:00 +03:00
|
|
|
\OC_App::loadApp($app);
|
2016-04-19 16:36:11 +03:00
|
|
|
$steps = $info['repair-steps']['post-migration'];
|
|
|
|
foreach ($steps as $step) {
|
|
|
|
try {
|
|
|
|
$this->repair->addStep($step);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
$output->writeln("<error>Failed to load repair step for $app: {$ex->getMessage()}</error>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-06 19:08:41 +03:00
|
|
|
$maintenanceMode = $this->config->getSystemValueBool('maintenance');
|
2014-11-19 02:25:26 +03:00
|
|
|
$this->config->setSystemValue('maintenance', true);
|
2014-03-25 15:51:16 +04:00
|
|
|
|
2016-04-26 17:24:50 +03:00
|
|
|
$this->progress = new ProgressBar($output);
|
|
|
|
$this->output = $output;
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::startProgress', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::advance', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::finishProgress', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::step', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::info', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::warning', [$this, 'handleRepairFeedBack']);
|
|
|
|
$this->dispatcher->addListener('\OC\Repair::error', [$this, 'handleRepairFeedBack']);
|
2014-03-25 15:51:16 +04:00
|
|
|
|
2013-11-26 17:12:48 +04:00
|
|
|
$this->repair->run();
|
2014-03-25 15:51:16 +04:00
|
|
|
|
2014-11-19 02:25:26 +03:00
|
|
|
$this->config->setSystemValue('maintenance', $maintenanceMode);
|
2013-11-26 17:12:48 +04:00
|
|
|
}
|
2016-04-26 17:24:50 +03:00
|
|
|
|
|
|
|
public function handleRepairFeedBack($event) {
|
|
|
|
if (!$event instanceof GenericEvent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch ($event->getSubject()) {
|
|
|
|
case '\OC\Repair::startProgress':
|
|
|
|
$this->progress->start($event->getArgument(0));
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::advance':
|
|
|
|
$this->progress->advance($event->getArgument(0));
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::finishProgress':
|
|
|
|
$this->progress->finish();
|
|
|
|
$this->output->writeln('');
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::step':
|
|
|
|
$this->output->writeln(' - ' . $event->getArgument(0));
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::info':
|
|
|
|
$this->output->writeln(' - ' . $event->getArgument(0));
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::warning':
|
|
|
|
$this->output->writeln(' - WARNING: ' . $event->getArgument(0));
|
|
|
|
break;
|
|
|
|
case '\OC\Repair::error':
|
|
|
|
$this->output->writeln(' - ERROR: ' . $event->getArgument(0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-11-26 17:12:48 +04:00
|
|
|
}
|