Adding pre- and post-migration repair steps
This commit is contained in:
parent
d0030aad6c
commit
3aa77960ef
|
@ -24,15 +24,14 @@
|
||||||
|
|
||||||
namespace OC\Core\Command\Maintenance;
|
namespace OC\Core\Command\Maintenance;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Input\InputOption;
|
use Symfony\Component\Console\Input\InputOption;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
class Repair extends Command {
|
class Repair extends Command {
|
||||||
/**
|
/** @var \OC\Repair $repair */
|
||||||
* @var \OC\Repair $repair
|
|
||||||
*/
|
|
||||||
protected $repair;
|
protected $repair;
|
||||||
/** @var \OCP\IConfig */
|
/** @var \OCP\IConfig */
|
||||||
protected $config;
|
protected $config;
|
||||||
|
@ -55,9 +54,7 @@ class Repair extends Command {
|
||||||
'include-expensive',
|
'include-expensive',
|
||||||
null,
|
null,
|
||||||
InputOption::VALUE_NONE,
|
InputOption::VALUE_NONE,
|
||||||
'Use this option when you want to include resource and load expensive tasks'
|
'Use this option when you want to include resource and load expensive tasks');
|
||||||
)
|
|
||||||
;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output) {
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
||||||
|
@ -68,6 +65,25 @@ class Repair extends Command {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$apps = \OC::$server->getAppManager()->getInstalledApps();
|
||||||
|
foreach ($apps as $app) {
|
||||||
|
if (!\OC_App::isEnabled($app)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$info = \OC_App::getAppInfo($app);
|
||||||
|
if (!is_array($info)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$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>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$maintenanceMode = $this->config->getSystemValue('maintenance', false);
|
$maintenanceMode = $this->config->getSystemValue('maintenance', false);
|
||||||
$this->config->setSystemValue('maintenance', true);
|
$this->config->setSystemValue('maintenance', true);
|
||||||
|
|
||||||
|
|
|
@ -60,25 +60,25 @@ class InfoParser {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (!array_key_exists('info', $array)) {
|
if (!array_key_exists('info', $array)) {
|
||||||
$array['info'] = array();
|
$array['info'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('remote', $array)) {
|
if (!array_key_exists('remote', $array)) {
|
||||||
$array['remote'] = array();
|
$array['remote'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('public', $array)) {
|
if (!array_key_exists('public', $array)) {
|
||||||
$array['public'] = array();
|
$array['public'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('types', $array)) {
|
if (!array_key_exists('types', $array)) {
|
||||||
$array['types'] = array();
|
$array['types'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('repair-steps', $array)) {
|
if (!array_key_exists('repair-steps', $array)) {
|
||||||
$array['repair-steps'] = array();
|
$array['repair-steps'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('pre-migration', $array['repair-steps'])) {
|
if (!array_key_exists('pre-migration', $array['repair-steps'])) {
|
||||||
$array['repair-steps']['pre-migration'] = array();
|
$array['repair-steps']['pre-migration'] = [];
|
||||||
}
|
}
|
||||||
if (!array_key_exists('post-migration', $array['repair-steps'])) {
|
if (!array_key_exists('post-migration', $array['repair-steps'])) {
|
||||||
$array['repair-steps']['post-migration'] = array();
|
$array['repair-steps']['post-migration'] = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists('documentation', $array) && is_array($array['documentation'])) {
|
if (array_key_exists('documentation', $array) && is_array($array['documentation'])) {
|
||||||
|
@ -101,7 +101,7 @@ class InfoParser {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$array['types'] = array();
|
$array['types'] = [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isset($array['repair-steps']['pre-migration']['step']) && is_array($array['repair-steps']['pre-migration']['step'])) {
|
if (isset($array['repair-steps']['pre-migration']['step']) && is_array($array['repair-steps']['pre-migration']['step'])) {
|
||||||
|
@ -122,7 +122,7 @@ class InfoParser {
|
||||||
return (string)$xml;
|
return (string)$xml;
|
||||||
}
|
}
|
||||||
|
|
||||||
$array = array();
|
$array = [];
|
||||||
foreach ($xml->children() as $element => $node) {
|
foreach ($xml->children() as $element => $node) {
|
||||||
$totalElement = count($xml->{$element});
|
$totalElement = count($xml->{$element});
|
||||||
|
|
||||||
|
@ -135,9 +135,9 @@ class InfoParser {
|
||||||
|
|
||||||
// Has attributes
|
// Has attributes
|
||||||
if ($attributes = $node->attributes()) {
|
if ($attributes = $node->attributes()) {
|
||||||
$data = array(
|
$data = [
|
||||||
'@attributes' => array(),
|
'@attributes' => [],
|
||||||
);
|
];
|
||||||
if (!count($node->children())){
|
if (!count($node->children())){
|
||||||
$value = (string)$node;
|
$value = (string)$node;
|
||||||
if (!empty($value)) {
|
if (!empty($value)) {
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
use OC\App\DependencyAnalyzer;
|
use OC\App\DependencyAnalyzer;
|
||||||
use OC\App\Platform;
|
use OC\App\Platform;
|
||||||
use OC\OCSClient;
|
use OC\OCSClient;
|
||||||
|
use OC\Repair;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class manages the apps. It allows them to register and integrate in the
|
* This class manages the apps. It allows them to register and integrate in the
|
||||||
|
@ -1031,7 +1032,6 @@ class OC_App {
|
||||||
if (!empty($requireMax)
|
if (!empty($requireMax)
|
||||||
&& version_compare(self::adjustVersionParts($ocVersion, $requireMax), $requireMax, '>')
|
&& version_compare(self::adjustVersionParts($ocVersion, $requireMax), $requireMax, '>')
|
||||||
) {
|
) {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1051,7 +1051,6 @@ class OC_App {
|
||||||
return $versions;
|
return $versions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $app
|
* @param string $app
|
||||||
* @return bool
|
* @return bool
|
||||||
|
@ -1148,9 +1147,12 @@ class OC_App {
|
||||||
if($appPath === false) {
|
if($appPath === false) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
$appData = self::getAppInfo($appId);
|
||||||
|
self::executeRepairSteps($appId, $appData['repair-steps']['pre-migration']);
|
||||||
if (file_exists($appPath . '/appinfo/database.xml')) {
|
if (file_exists($appPath . '/appinfo/database.xml')) {
|
||||||
OC_DB::updateDbFromStructure($appPath . '/appinfo/database.xml');
|
OC_DB::updateDbFromStructure($appPath . '/appinfo/database.xml');
|
||||||
}
|
}
|
||||||
|
self::executeRepairSteps($appId, $appData['repair-steps']['post-migration']);
|
||||||
unset(self::$appVersion[$appId]);
|
unset(self::$appVersion[$appId]);
|
||||||
// run upgrade code
|
// run upgrade code
|
||||||
if (file_exists($appPath . '/appinfo/update.php')) {
|
if (file_exists($appPath . '/appinfo/update.php')) {
|
||||||
|
@ -1159,7 +1161,6 @@ class OC_App {
|
||||||
}
|
}
|
||||||
|
|
||||||
//set remote/public handlers
|
//set remote/public handlers
|
||||||
$appData = self::getAppInfo($appId);
|
|
||||||
if (array_key_exists('ocsid', $appData)) {
|
if (array_key_exists('ocsid', $appData)) {
|
||||||
\OC::$server->getConfig()->setAppValue($appId, 'ocsid', $appData['ocsid']);
|
\OC::$server->getConfig()->setAppValue($appId, 'ocsid', $appData['ocsid']);
|
||||||
} elseif(\OC::$server->getConfig()->getAppValue($appId, 'ocsid', null) !== null) {
|
} elseif(\OC::$server->getConfig()->getAppValue($appId, 'ocsid', null) !== null) {
|
||||||
|
@ -1180,6 +1181,34 @@ class OC_App {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $appId
|
||||||
|
* @param string[] $steps
|
||||||
|
* @throws \OC\NeedsUpdateException
|
||||||
|
*/
|
||||||
|
private static function executeRepairSteps($appId, array $steps) {
|
||||||
|
if (empty($steps)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// load the app
|
||||||
|
self::loadApp($appId, false);
|
||||||
|
|
||||||
|
$dispatcher = OC::$server->getEventDispatcher();
|
||||||
|
|
||||||
|
// load the steps
|
||||||
|
$r = new Repair([], $dispatcher);
|
||||||
|
foreach ($steps as $step) {
|
||||||
|
try {
|
||||||
|
$r->addStep($step);
|
||||||
|
} catch (Exception $ex) {
|
||||||
|
$r->emit('\OC\Repair', 'error', [$ex->getMessage()]);
|
||||||
|
\OC::$server->getLogger()->logException($ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// run the steps
|
||||||
|
$r->run();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $appId
|
* @param string $appId
|
||||||
* @return \OC\Files\View|false
|
* @return \OC\Files\View|false
|
||||||
|
|
|
@ -46,20 +46,24 @@ use OC\Repair\RepairMimeTypes;
|
||||||
use OC\Repair\SearchLuceneTables;
|
use OC\Repair\SearchLuceneTables;
|
||||||
use OC\Repair\UpdateOutdatedOcsIds;
|
use OC\Repair\UpdateOutdatedOcsIds;
|
||||||
use OC\Repair\RepairInvalidShares;
|
use OC\Repair\RepairInvalidShares;
|
||||||
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
||||||
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
||||||
|
|
||||||
class Repair extends BasicEmitter {
|
class Repair extends BasicEmitter {
|
||||||
/**
|
/* @var RepairStep[] */
|
||||||
* @var RepairStep[]
|
|
||||||
**/
|
|
||||||
private $repairSteps;
|
private $repairSteps;
|
||||||
|
/** @var EventDispatcher */
|
||||||
|
private $dispatcher;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new repair step runner
|
* Creates a new repair step runner
|
||||||
*
|
*
|
||||||
* @param array $repairSteps array of RepairStep instances
|
* @param RepairStep[] $repairSteps array of RepairStep instances
|
||||||
|
* @param EventDispatcher $dispatcher
|
||||||
*/
|
*/
|
||||||
public function __construct($repairSteps = array()) {
|
public function __construct($repairSteps = [], EventDispatcher $dispatcher = null) {
|
||||||
$this->repairSteps = $repairSteps;
|
$this->repairSteps = $repairSteps;
|
||||||
|
$this->dispatcher = $dispatcher;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -91,11 +95,25 @@ class Repair extends BasicEmitter {
|
||||||
/**
|
/**
|
||||||
* Add repair step
|
* Add repair step
|
||||||
*
|
*
|
||||||
* @param RepairStep $repairStep repair step
|
* @param RepairStep|string $repairStep repair step
|
||||||
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function addStep($repairStep) {
|
public function addStep($repairStep) {
|
||||||
|
if (is_string($repairStep)) {
|
||||||
|
if (class_exists($repairStep)) {
|
||||||
|
$s = new $repairStep();
|
||||||
|
if ($s instanceof RepairStep) {
|
||||||
|
$this->repairSteps[] = $s;
|
||||||
|
} else {
|
||||||
|
throw new \Exception("Repair step '$repairStep' is not of type \\OC\\RepairStep");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new \Exception("Repair step '$repairStep' is unknown");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
$this->repairSteps[] = $repairStep;
|
$this->repairSteps[] = $repairStep;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the default repair steps to be run on the
|
* Returns the default repair steps to be run on the
|
||||||
|
@ -159,10 +177,12 @@ class Repair extends BasicEmitter {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* Re-declared as public to allow invocation from within the closure above in php 5.3
|
|
||||||
*/
|
*/
|
||||||
public function emit($scope, $method, array $arguments = array()) {
|
public function emit($scope, $method, array $arguments = []) {
|
||||||
parent::emit($scope, $method, $arguments);
|
parent::emit($scope, $method, $arguments);
|
||||||
|
if (!is_null($this->dispatcher)) {
|
||||||
|
$this->dispatcher->dispatch("$scope::$method",
|
||||||
|
new GenericEvent("$scope::$method", $arguments));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,7 @@ use OC_Installer;
|
||||||
use OCP\IConfig;
|
use OCP\IConfig;
|
||||||
use OC\Setup;
|
use OC\Setup;
|
||||||
use OCP\ILogger;
|
use OCP\ILogger;
|
||||||
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class that handles autoupdating of ownCloud
|
* Class that handles autoupdating of ownCloud
|
||||||
|
@ -361,6 +362,7 @@ class Updater extends BasicEmitter {
|
||||||
* @throws NeedsUpdateException
|
* @throws NeedsUpdateException
|
||||||
*/
|
*/
|
||||||
protected function doAppUpgrade() {
|
protected function doAppUpgrade() {
|
||||||
|
$this->emitRepairEvents();
|
||||||
$apps = \OC_App::getEnabledApps();
|
$apps = \OC_App::getEnabledApps();
|
||||||
$priorityTypes = array('authentication', 'filesystem', 'logging');
|
$priorityTypes = array('authentication', 'filesystem', 'logging');
|
||||||
$pseudoOtherType = 'other';
|
$pseudoOtherType = 'other';
|
||||||
|
@ -385,9 +387,9 @@ class Updater extends BasicEmitter {
|
||||||
foreach ($stacks as $type => $stack) {
|
foreach ($stacks as $type => $stack) {
|
||||||
foreach ($stack as $appId) {
|
foreach ($stack as $appId) {
|
||||||
if (\OC_App::shouldUpgrade($appId)) {
|
if (\OC_App::shouldUpgrade($appId)) {
|
||||||
$this->emit('\OC\Updater', 'appUpgradeStarted', array($appId, \OC_App::getAppVersion($appId)));
|
$this->emit('\OC\Updater', 'appUpgradeStarted', [$appId, \OC_App::getAppVersion($appId)]);
|
||||||
\OC_App::updateApp($appId);
|
\OC_App::updateApp($appId);
|
||||||
$this->emit('\OC\Updater', 'appUpgrade', array($appId, \OC_App::getAppVersion($appId)));
|
$this->emit('\OC\Updater', 'appUpgrade', [$appId, \OC_App::getAppVersion($appId)]);
|
||||||
}
|
}
|
||||||
if($type !== $pseudoOtherType) {
|
if($type !== $pseudoOtherType) {
|
||||||
// load authentication, filesystem and logging apps after
|
// load authentication, filesystem and logging apps after
|
||||||
|
@ -473,5 +475,33 @@ class Updater extends BasicEmitter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Forward messages emitted by the repair routine
|
||||||
|
*/
|
||||||
|
private function emitRepairEvents() {
|
||||||
|
$dispatcher = \OC::$server->getEventDispatcher();
|
||||||
|
$dispatcher->addListener('\OC\Repair::warning', function ($event) {
|
||||||
|
if ($event instanceof GenericEvent) {
|
||||||
|
$this->emit('\OC\Updater', 'repairWarning', $event->getArguments());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$dispatcher->addListener('\OC\Repair::error', function ($event) {
|
||||||
|
if ($event instanceof GenericEvent) {
|
||||||
|
$this->emit('\OC\Updater', 'repairError', $event->getArguments());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$dispatcher->addListener('\OC\Repair::info', function ($event) {
|
||||||
|
if ($event instanceof GenericEvent) {
|
||||||
|
$this->emit('\OC\Updater', 'repairInfo', $event->getArguments());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$dispatcher->addListener('\OC\Repair::step', function ($event) {
|
||||||
|
if ($event instanceof GenericEvent) {
|
||||||
|
$this->emit('\OC\Updater', 'repairStep', $event->getArguments());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue