From 8c39e66619852b8f2e4a9ca5a210970c6c2c619b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 2 Jun 2017 14:37:57 +0200 Subject: [PATCH] Do not allow to go back on productive systems Signed-off-by: Joas Schilling --- core/Command/Db/Migrations/ExecuteCommand.php | 24 ++++++++++++++++++- core/register_command.php | 2 +- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/core/Command/Db/Migrations/ExecuteCommand.php b/core/Command/Db/Migrations/ExecuteCommand.php index 6aad4f4973..5eaecd0698 100644 --- a/core/Command/Db/Migrations/ExecuteCommand.php +++ b/core/Command/Db/Migrations/ExecuteCommand.php @@ -24,6 +24,7 @@ namespace OC\Core\Command\Db\Migrations; use OC\DB\MigrationService; use OC\Migration\ConsoleOutput; +use OCP\IConfig; use OCP\IDBConnection; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; @@ -34,14 +35,18 @@ class ExecuteCommand extends Command { /** @var IDBConnection */ private $connection; + /** @var IConfig */ + private $config; /** * ExecuteCommand constructor. * * @param IDBConnection $connection + * @param IConfig $config */ - public function __construct(IDBConnection $connection) { + public function __construct(IDBConnection $connection, IConfig $config) { $this->connection = $connection; + $this->config = $config; parent::__construct(); } @@ -56,12 +61,29 @@ class ExecuteCommand extends Command { parent::configure(); } + /** + * @param InputInterface $input + * @param OutputInterface $output + * @return int + */ public function execute(InputInterface $input, OutputInterface $output) { $appName = $input->getArgument('app'); $ms = new MigrationService($appName, $this->connection, new ConsoleOutput($output)); $version = $input->getArgument('version'); + if ($this->config->getSystemValue('debug', false) === false) { + $olderVersions = $ms->getMigratedVersions(); + $olderVersions[] = '0'; + $olderVersions[] = 'prev'; + if (in_array($version, $olderVersions, true)) { + $output->writeln('Can not go back to previous migration without debug enabled'); + return 1; + } + } + + $ms->executeStep($version); + return 0; } } diff --git a/core/register_command.php b/core/register_command.php index 924da6fc94..bfb1138c5e 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -88,7 +88,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Db\Migrations\StatusCommand(\OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\Db\Migrations\MigrateCommand(\OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\Db\Migrations\GenerateCommand(\OC::$server->getDatabaseConnection())); - $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection())); + $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig())); $application->add(new OC\Core\Command\Encryption\Disable(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Encryption\Enable(\OC::$server->getConfig(), \OC::$server->getEncryptionManager()));