2014-01-29 18:48:12 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author martin-rueegg <martin.rueegg@metaworx.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author tbelau666 <thomas.belau@gmx.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2015-03-26 13:44:34 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2014-01-29 18:48:12 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-01-29 18:48:12 +04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
use Doctrine\DBAL\Exception;
|
2021-01-08 18:25:40 +03:00
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
2021-01-03 17:28:31 +03:00
|
|
|
use Doctrine\DBAL\Schema\AbstractAsset;
|
2019-11-22 22:52:10 +03:00
|
|
|
use Doctrine\DBAL\Schema\Comparator;
|
|
|
|
use Doctrine\DBAL\Schema\Index;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
|
|
use Doctrine\DBAL\Schema\SchemaConfig;
|
|
|
|
use Doctrine\DBAL\Schema\Table;
|
2016-06-29 15:54:41 +03:00
|
|
|
use Doctrine\DBAL\Types\StringType;
|
|
|
|
use Doctrine\DBAL\Types\Type;
|
2014-12-22 12:43:56 +03:00
|
|
|
use OCP\IConfig;
|
2013-10-17 22:16:27 +04:00
|
|
|
use OCP\Security\ISecureRandom;
|
2019-05-28 20:46:36 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-03-31 00:38:26 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2021-01-03 17:28:31 +03:00
|
|
|
use function preg_match;
|
2014-01-29 18:48:12 +04:00
|
|
|
|
|
|
|
class Migrator {
|
2013-10-17 22:16:27 +04:00
|
|
|
|
2017-06-01 17:56:34 +03:00
|
|
|
/** @var \Doctrine\DBAL\Connection */
|
2014-01-29 18:48:12 +04:00
|
|
|
protected $connection;
|
|
|
|
|
2017-06-01 17:56:34 +03:00
|
|
|
/** @var ISecureRandom */
|
2013-10-17 22:16:27 +04:00
|
|
|
private $random;
|
|
|
|
|
2014-12-22 12:43:56 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
|
|
|
|
2019-05-28 20:46:36 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
2016-03-31 00:38:26 +03:00
|
|
|
private $dispatcher;
|
|
|
|
|
2016-04-04 17:20:53 +03:00
|
|
|
/** @var bool */
|
|
|
|
private $noEmit = false;
|
|
|
|
|
2014-01-29 18:48:12 +04:00
|
|
|
/**
|
2020-03-06 18:28:42 +03:00
|
|
|
* @param \Doctrine\DBAL\Connection $connection
|
2013-10-17 22:16:27 +04:00
|
|
|
* @param ISecureRandom $random
|
2014-12-22 12:43:56 +03:00
|
|
|
* @param IConfig $config
|
2019-05-28 20:46:36 +03:00
|
|
|
* @param EventDispatcherInterface $dispatcher
|
2014-01-29 18:48:12 +04:00
|
|
|
*/
|
2016-03-31 00:38:26 +03:00
|
|
|
public function __construct(\Doctrine\DBAL\Connection $connection,
|
|
|
|
ISecureRandom $random,
|
|
|
|
IConfig $config,
|
2019-05-28 20:46:36 +03:00
|
|
|
EventDispatcherInterface $dispatcher = null) {
|
2014-01-29 18:48:12 +04:00
|
|
|
$this->connection = $connection;
|
2013-10-17 22:16:27 +04:00
|
|
|
$this->random = $random;
|
2014-12-22 12:43:56 +03:00
|
|
|
$this->config = $config;
|
2016-03-31 00:38:26 +03:00
|
|
|
$this->dispatcher = $dispatcher;
|
2014-01-29 18:48:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $targetSchema
|
2021-01-12 14:24:36 +03:00
|
|
|
*
|
|
|
|
* @throws Exception
|
2014-01-29 18:48:12 +04:00
|
|
|
*/
|
|
|
|
public function migrate(Schema $targetSchema) {
|
2016-04-04 17:20:53 +03:00
|
|
|
$this->noEmit = true;
|
2014-01-29 18:48:12 +04:00
|
|
|
$this->applySchema($targetSchema);
|
|
|
|
}
|
|
|
|
|
2014-04-08 18:01:08 +04:00
|
|
|
/**
|
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $targetSchema
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function generateChangeScript(Schema $targetSchema) {
|
|
|
|
$schemaDiff = $this->getDiff($targetSchema, $this->connection);
|
|
|
|
|
|
|
|
$script = '';
|
|
|
|
$sqls = $schemaDiff->toSql($this->connection->getDatabasePlatform());
|
|
|
|
foreach ($sqls as $sql) {
|
2013-10-17 22:16:27 +04:00
|
|
|
$script .= $this->convertStatementToScript($sql);
|
2014-04-08 18:01:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $script;
|
|
|
|
}
|
|
|
|
|
2014-06-03 13:24:31 +04:00
|
|
|
/**
|
|
|
|
* Create a unique name for the temporary table
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function generateTemporaryTableName($name) {
|
2015-03-03 03:49:15 +03:00
|
|
|
return $this->config->getSystemValue('dbtableprefix', 'oc_') . $name . '_' . $this->random->generate(13, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_DIGITS);
|
2014-06-03 13:24:31 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 18:48:12 +04:00
|
|
|
/**
|
|
|
|
* Check the migration of a table on a copy so we can detect errors before messing with the real table
|
|
|
|
*
|
|
|
|
* @param \Doctrine\DBAL\Schema\Table $table
|
2014-01-30 17:21:16 +04:00
|
|
|
* @throws \OC\DB\MigrationException
|
2014-01-29 18:48:12 +04:00
|
|
|
*/
|
|
|
|
protected function checkTableMigrate(Table $table) {
|
|
|
|
$name = $table->getName();
|
2014-06-03 13:24:31 +04:00
|
|
|
$tmpName = $this->generateTemporaryTableName($name);
|
2014-01-29 18:48:12 +04:00
|
|
|
|
|
|
|
$this->copyTable($name, $tmpName);
|
|
|
|
|
|
|
|
//create the migration schema for the temporary table
|
2014-01-30 17:21:16 +04:00
|
|
|
$tmpTable = $this->renameTableSchema($table, $tmpName);
|
2014-01-29 18:48:12 +04:00
|
|
|
$schemaConfig = new SchemaConfig();
|
|
|
|
$schemaConfig->setName($this->connection->getDatabase());
|
2020-03-26 11:30:18 +03:00
|
|
|
$schema = new Schema([$tmpTable], [], $schemaConfig);
|
2014-01-29 18:48:12 +04:00
|
|
|
|
|
|
|
try {
|
|
|
|
$this->applySchema($schema);
|
|
|
|
$this->dropTable($tmpName);
|
2021-01-03 17:28:31 +03:00
|
|
|
} catch (Exception $e) {
|
2014-03-14 19:28:56 +04:00
|
|
|
// pgsql needs to commit it's failed transaction before doing anything else
|
2014-07-23 22:13:19 +04:00
|
|
|
if ($this->connection->isTransactionActive()) {
|
|
|
|
$this->connection->commit();
|
|
|
|
}
|
2014-01-29 18:48:12 +04:00
|
|
|
$this->dropTable($tmpName);
|
|
|
|
throw new MigrationException($table->getName(), $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 17:21:16 +04:00
|
|
|
/**
|
|
|
|
* @param \Doctrine\DBAL\Schema\Table $table
|
|
|
|
* @param string $newName
|
|
|
|
* @return \Doctrine\DBAL\Schema\Table
|
|
|
|
*/
|
|
|
|
protected function renameTableSchema(Table $table, $newName) {
|
2014-03-12 17:23:00 +04:00
|
|
|
/**
|
|
|
|
* @var \Doctrine\DBAL\Schema\Index[] $indexes
|
|
|
|
*/
|
2014-01-30 17:21:16 +04:00
|
|
|
$indexes = $table->getIndexes();
|
2020-03-26 11:30:18 +03:00
|
|
|
$newIndexes = [];
|
2014-01-30 17:21:16 +04:00
|
|
|
foreach ($indexes as $index) {
|
2014-06-17 16:11:02 +04:00
|
|
|
if ($index->isPrimary()) {
|
|
|
|
// do not rename primary key
|
|
|
|
$indexName = $index->getName();
|
|
|
|
} else {
|
|
|
|
// avoid conflicts in index names
|
2015-06-08 18:59:24 +03:00
|
|
|
$indexName = $this->config->getSystemValue('dbtableprefix', 'oc_') . $this->random->generate(13, ISecureRandom::CHAR_LOWER);
|
2014-06-17 16:11:02 +04:00
|
|
|
}
|
2014-03-12 17:23:00 +04:00
|
|
|
$newIndexes[] = new Index($indexName, $index->getColumns(), $index->isUnique(), $index->isPrimary());
|
2014-01-30 17:21:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// foreign keys are not supported so we just set it to an empty array
|
2021-01-03 17:28:31 +03:00
|
|
|
return new Table($newName, $table->getColumns(), $newIndexes, [], [], $table->getOptions());
|
2014-01-30 17:21:16 +04:00
|
|
|
}
|
|
|
|
|
2021-01-12 14:24:36 +03:00
|
|
|
/**
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2017-06-01 17:56:34 +03:00
|
|
|
public function createSchema() {
|
2021-01-03 17:28:31 +03:00
|
|
|
$this->connection->getConfiguration()->setSchemaAssetsFilter(function ($asset) {
|
|
|
|
/** @var string|AbstractAsset $asset */
|
|
|
|
$filterExpression = $this->getFilterExpression();
|
|
|
|
if ($asset instanceof AbstractAsset) {
|
2021-03-02 18:04:44 +03:00
|
|
|
return preg_match($filterExpression, $asset->getName()) === 1;
|
2021-01-03 17:28:31 +03:00
|
|
|
}
|
2021-03-02 18:04:44 +03:00
|
|
|
return preg_match($filterExpression, $asset) === 1;
|
2021-01-03 17:28:31 +03:00
|
|
|
});
|
2017-06-01 17:56:34 +03:00
|
|
|
return $this->connection->getSchemaManager()->createSchema();
|
|
|
|
}
|
|
|
|
|
2016-06-29 15:54:41 +03:00
|
|
|
/**
|
|
|
|
* @param Schema $targetSchema
|
|
|
|
* @param \Doctrine\DBAL\Connection $connection
|
|
|
|
* @return \Doctrine\DBAL\Schema\SchemaDiff
|
|
|
|
*/
|
2014-04-08 18:01:08 +04:00
|
|
|
protected function getDiff(Schema $targetSchema, \Doctrine\DBAL\Connection $connection) {
|
2016-06-29 15:54:41 +03:00
|
|
|
// adjust varchar columns with a length higher then getVarcharMaxLength to clob
|
|
|
|
foreach ($targetSchema->getTables() as $table) {
|
|
|
|
foreach ($table->getColumns() as $column) {
|
|
|
|
if ($column->getType() instanceof StringType) {
|
|
|
|
if ($column->getLength() > $connection->getDatabasePlatform()->getVarcharMaxLength()) {
|
|
|
|
$column->setType(Type::getType('text'));
|
|
|
|
$column->setLength(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
$this->connection->getConfiguration()->setSchemaAssetsFilter(function ($asset) {
|
|
|
|
/** @var string|AbstractAsset $asset */
|
|
|
|
$filterExpression = $this->getFilterExpression();
|
|
|
|
if ($asset instanceof AbstractAsset) {
|
2021-03-02 18:04:44 +03:00
|
|
|
return preg_match($filterExpression, $asset->getName()) === 1;
|
2021-01-03 17:28:31 +03:00
|
|
|
}
|
2021-03-02 18:04:44 +03:00
|
|
|
return preg_match($filterExpression, $asset) === 1;
|
2021-01-03 17:28:31 +03:00
|
|
|
});
|
2014-04-08 18:01:08 +04:00
|
|
|
$sourceSchema = $connection->getSchemaManager()->createSchema();
|
2014-01-29 18:48:12 +04:00
|
|
|
|
|
|
|
// remove tables we don't know about
|
|
|
|
foreach ($sourceSchema->getTables() as $table) {
|
|
|
|
if (!$targetSchema->hasTable($table->getName())) {
|
|
|
|
$sourceSchema->dropTable($table->getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// remove sequences we don't know about
|
|
|
|
foreach ($sourceSchema->getSequences() as $table) {
|
|
|
|
if (!$targetSchema->hasSequence($table->getName())) {
|
|
|
|
$sourceSchema->dropSequence($table->getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 17:21:16 +04:00
|
|
|
$comparator = new Comparator();
|
2014-04-11 17:10:09 +04:00
|
|
|
return $comparator->compare($sourceSchema, $targetSchema);
|
2014-04-08 18:01:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $targetSchema
|
|
|
|
* @param \Doctrine\DBAL\Connection $connection
|
2021-01-12 14:24:36 +03:00
|
|
|
*
|
|
|
|
* @throws Exception
|
2014-04-08 18:01:08 +04:00
|
|
|
*/
|
|
|
|
protected function applySchema(Schema $targetSchema, \Doctrine\DBAL\Connection $connection = null) {
|
|
|
|
if (is_null($connection)) {
|
|
|
|
$connection = $this->connection;
|
2014-01-29 18:48:12 +04:00
|
|
|
}
|
|
|
|
|
2014-04-08 18:01:08 +04:00
|
|
|
$schemaDiff = $this->getDiff($targetSchema, $connection);
|
|
|
|
|
2021-01-08 18:25:40 +03:00
|
|
|
if (!$connection->getDatabasePlatform() instanceof MySQLPlatform) {
|
|
|
|
$connection->beginTransaction();
|
|
|
|
}
|
2016-03-31 00:38:26 +03:00
|
|
|
$sqls = $schemaDiff->toSql($connection->getDatabasePlatform());
|
|
|
|
$step = 0;
|
|
|
|
foreach ($sqls as $sql) {
|
|
|
|
$this->emit($sql, $step++, count($sqls));
|
2014-01-29 18:48:12 +04:00
|
|
|
$connection->query($sql);
|
|
|
|
}
|
2021-01-08 18:25:40 +03:00
|
|
|
if (!$connection->getDatabasePlatform() instanceof MySQLPlatform) {
|
|
|
|
$connection->commit();
|
|
|
|
}
|
2014-01-29 18:48:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $sourceName
|
|
|
|
* @param string $targetName
|
|
|
|
*/
|
|
|
|
protected function copyTable($sourceName, $targetName) {
|
|
|
|
$quotedSource = $this->connection->quoteIdentifier($sourceName);
|
|
|
|
$quotedTarget = $this->connection->quoteIdentifier($targetName);
|
|
|
|
|
2014-03-14 19:28:56 +04:00
|
|
|
$this->connection->exec('CREATE TABLE ' . $quotedTarget . ' (LIKE ' . $quotedSource . ')');
|
2014-01-29 18:48:12 +04:00
|
|
|
$this->connection->exec('INSERT INTO ' . $quotedTarget . ' SELECT * FROM ' . $quotedSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
*/
|
|
|
|
protected function dropTable($name) {
|
|
|
|
$this->connection->exec('DROP TABLE ' . $this->connection->quoteIdentifier($name));
|
|
|
|
}
|
2013-10-17 22:16:27 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $statement
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function convertStatementToScript($statement) {
|
|
|
|
$script = $statement . ';';
|
|
|
|
$script .= PHP_EOL;
|
|
|
|
$script .= PHP_EOL;
|
|
|
|
return $script;
|
|
|
|
}
|
2015-01-12 15:57:46 +03:00
|
|
|
|
|
|
|
protected function getFilterExpression() {
|
|
|
|
return '/^' . preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')) . '/';
|
|
|
|
}
|
2016-03-31 00:38:26 +03:00
|
|
|
|
|
|
|
protected function emit($sql, $step, $max) {
|
2016-04-04 17:20:53 +03:00
|
|
|
if ($this->noEmit) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
if (is_null($this->dispatcher)) {
|
2016-03-31 00:38:26 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-10-05 16:12:57 +03:00
|
|
|
$this->dispatcher->dispatch('\OC\DB\Migrator::executeSql', new GenericEvent($sql, [$step + 1, $max]));
|
2016-03-31 00:38:26 +03:00
|
|
|
}
|
2016-04-04 17:20:53 +03:00
|
|
|
|
|
|
|
private function emitCheckStep($tableName, $step, $max) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (is_null($this->dispatcher)) {
|
2016-04-04 17:20:53 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-10-05 16:12:57 +03:00
|
|
|
$this->dispatcher->dispatch('\OC\DB\Migrator::checkTable', new GenericEvent($tableName, [$step + 1, $max]));
|
2016-04-04 17:20:53 +03:00
|
|
|
}
|
2014-01-29 18:48:12 +04:00
|
|
|
}
|