2012-10-10 22:49:47 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
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-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +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
|
|
|
*
|
2012-10-10 22:49:47 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-07-29 19:46:20 +04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
use Doctrine\DBAL\Platforms\MySQLPlatform;
|
2014-04-11 17:10:09 +04:00
|
|
|
use Doctrine\DBAL\Platforms\OraclePlatform;
|
2021-01-03 17:28:31 +03:00
|
|
|
use Doctrine\DBAL\Platforms\PostgreSQL94Platform;
|
2014-04-08 18:01:08 +04:00
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
2015-07-30 11:57:16 +03:00
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
2014-04-08 18:01:08 +04:00
|
|
|
|
2013-08-02 15:19:27 +04:00
|
|
|
class MDB2SchemaManager {
|
2021-01-03 17:28:31 +03:00
|
|
|
/** @var Connection $conn */
|
2013-07-29 19:46:20 +04:00
|
|
|
protected $conn;
|
|
|
|
|
2013-08-02 17:09:50 +04:00
|
|
|
/**
|
2021-01-03 17:28:31 +03:00
|
|
|
* @param Connection $conn
|
2013-08-02 17:09:50 +04:00
|
|
|
*/
|
|
|
|
public function __construct($conn) {
|
2013-07-29 19:46:20 +04:00
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
|
|
|
|
2012-10-10 22:49:47 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Creates tables from XML file
|
2012-10-10 22:49:47 +04:00
|
|
|
* @param string $file file to read structure from
|
|
|
|
* @return bool
|
|
|
|
*
|
|
|
|
* TODO: write more documentation
|
|
|
|
*/
|
2014-04-08 18:01:08 +04:00
|
|
|
public function createDbFromStructure($file) {
|
2014-11-19 02:25:26 +03:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $this->conn->getDatabasePlatform());
|
2015-07-30 11:57:16 +03:00
|
|
|
$toSchema = new Schema([], [], $this->conn->getSchemaManager()->createSchemaConfig());
|
|
|
|
$toSchema = $schemaReader->loadSchemaFromFile($file, $toSchema);
|
2013-07-29 19:46:20 +04:00
|
|
|
return $this->executeSchemaChange($toSchema);
|
2012-10-10 22:49:47 +04:00
|
|
|
}
|
|
|
|
|
2014-04-11 17:10:09 +04:00
|
|
|
/**
|
|
|
|
* @return \OC\DB\Migrator
|
|
|
|
*/
|
2014-07-01 14:54:35 +04:00
|
|
|
public function getMigrator() {
|
2016-01-11 22:05:30 +03:00
|
|
|
$random = \OC::$server->getSecureRandom();
|
2014-04-11 17:10:09 +04:00
|
|
|
$platform = $this->conn->getDatabasePlatform();
|
2014-12-22 12:43:56 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2016-03-31 00:38:26 +03:00
|
|
|
$dispatcher = \OC::$server->getEventDispatcher();
|
2014-04-11 17:10:09 +04:00
|
|
|
if ($platform instanceof SqlitePlatform) {
|
2016-03-31 00:38:26 +03:00
|
|
|
return new SQLiteMigrator($this->conn, $random, $config, $dispatcher);
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif ($platform instanceof OraclePlatform) {
|
2016-03-31 00:38:26 +03:00
|
|
|
return new OracleMigrator($this->conn, $random, $config, $dispatcher);
|
2021-01-03 17:28:31 +03:00
|
|
|
} elseif ($platform instanceof MySQLPlatform) {
|
2016-03-31 00:38:26 +03:00
|
|
|
return new MySQLMigrator($this->conn, $random, $config, $dispatcher);
|
2021-01-03 17:28:31 +03:00
|
|
|
} elseif ($platform instanceof PostgreSQL94Platform) {
|
2016-06-29 15:54:41 +03:00
|
|
|
return new PostgreSqlMigrator($this->conn, $random, $config, $dispatcher);
|
2014-05-06 16:04:22 +04:00
|
|
|
} else {
|
2017-10-16 23:43:24 +03:00
|
|
|
return new Migrator($this->conn, $random, $config, $dispatcher);
|
2014-04-11 17:10:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 20:15:58 +04:00
|
|
|
/**
|
|
|
|
* Reads database schema from file
|
|
|
|
*
|
|
|
|
* @param string $file file to read from
|
2016-03-31 00:38:26 +03:00
|
|
|
* @return \Doctrine\DBAL\Schema\Schema
|
2014-06-04 20:15:58 +04:00
|
|
|
*/
|
|
|
|
private function readSchemaFromFile($file) {
|
|
|
|
$platform = $this->conn->getDatabasePlatform();
|
2014-11-19 02:25:26 +03:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $platform);
|
2015-07-30 11:57:16 +03:00
|
|
|
$toSchema = new Schema([], [], $this->conn->getSchemaManager()->createSchemaConfig());
|
|
|
|
return $schemaReader->loadSchemaFromFile($file, $toSchema);
|
2014-06-04 20:15:58 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 22:49:47 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* update the database scheme
|
2012-10-10 22:49:47 +04:00
|
|
|
* @param string $file file to read structure from
|
2014-04-08 18:01:08 +04:00
|
|
|
* @param bool $generateSql only return the sql needed for the upgrade
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|boolean
|
2012-10-10 22:49:47 +04:00
|
|
|
*/
|
2014-06-04 20:15:58 +04:00
|
|
|
public function updateDbFromStructure($file, $generateSql = false) {
|
|
|
|
$toSchema = $this->readSchemaFromFile($file);
|
2014-04-11 17:10:09 +04:00
|
|
|
$migrator = $this->getMigrator();
|
2014-05-19 19:50:53 +04:00
|
|
|
|
2013-10-17 14:51:30 +04:00
|
|
|
if ($generateSql) {
|
2014-04-08 18:01:08 +04:00
|
|
|
return $migrator->generateChangeScript($toSchema);
|
|
|
|
} else {
|
2014-06-04 20:15:58 +04:00
|
|
|
$migrator->migrate($toSchema);
|
2014-04-08 18:01:08 +04:00
|
|
|
return true;
|
2013-10-17 14:51:30 +04:00
|
|
|
}
|
2012-10-10 22:49:47 +04:00
|
|
|
}
|
|
|
|
|
2014-05-26 17:59:02 +04:00
|
|
|
/**
|
|
|
|
* @param \Doctrine\DBAL\Schema\Schema $schema
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function generateChangeScript($schema) {
|
|
|
|
$migrator = $this->getMigrator();
|
|
|
|
return $migrator->generateChangeScript($schema);
|
|
|
|
}
|
|
|
|
|
2012-10-10 22:49:47 +04:00
|
|
|
/**
|
|
|
|
* remove all tables defined in a database structure xml file
|
2014-04-08 18:01:08 +04:00
|
|
|
*
|
2012-10-10 22:49:47 +04:00
|
|
|
* @param string $file the xml file describing the tables
|
|
|
|
*/
|
2013-07-29 19:46:20 +04:00
|
|
|
public function removeDBStructure($file) {
|
2014-11-19 02:25:26 +03:00
|
|
|
$schemaReader = new MDB2SchemaReader(\OC::$server->getConfig(), $this->conn->getDatabasePlatform());
|
2015-07-30 11:57:16 +03:00
|
|
|
$toSchema = new Schema([], [], $this->conn->getSchemaManager()->createSchemaConfig());
|
|
|
|
$fromSchema = $schemaReader->loadSchemaFromFile($file, $toSchema);
|
2012-10-10 22:49:47 +04:00
|
|
|
$toSchema = clone $fromSchema;
|
2014-04-08 18:01:08 +04:00
|
|
|
foreach ($toSchema->getTables() as $table) {
|
2012-10-10 22:49:47 +04:00
|
|
|
$toSchema->dropTable($table->getName());
|
|
|
|
}
|
|
|
|
$comparator = new \Doctrine\DBAL\Schema\Comparator();
|
|
|
|
$schemaDiff = $comparator->compare($fromSchema, $toSchema);
|
2013-07-29 19:46:20 +04:00
|
|
|
$this->executeSchemaChange($schemaDiff);
|
2012-10-10 22:49:47 +04:00
|
|
|
}
|
|
|
|
|
2013-07-29 18:33:00 +04:00
|
|
|
/**
|
2014-10-24 17:49:55 +04:00
|
|
|
* @param \Doctrine\DBAL\Schema\Schema|\Doctrine\DBAL\Schema\SchemaDiff $schema
|
2013-07-29 18:33:00 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-10-24 17:49:55 +04:00
|
|
|
private function executeSchemaChange($schema) {
|
2013-07-29 19:46:20 +04:00
|
|
|
$this->conn->beginTransaction();
|
2014-04-08 18:01:08 +04:00
|
|
|
foreach ($schema->toSql($this->conn->getDatabasePlatform()) as $sql) {
|
2013-07-29 19:46:20 +04:00
|
|
|
$this->conn->query($sql);
|
2012-10-10 22:49:47 +04:00
|
|
|
}
|
2013-07-29 19:46:20 +04:00
|
|
|
$this->conn->commit();
|
2014-06-11 19:02:34 +04:00
|
|
|
|
|
|
|
if ($this->conn->getDatabasePlatform() instanceof SqlitePlatform) {
|
2014-09-10 15:33:59 +04:00
|
|
|
$this->conn->close();
|
|
|
|
$this->conn->connect();
|
2014-06-11 19:02:34 +04:00
|
|
|
}
|
2013-07-29 18:33:00 +04:00
|
|
|
return true;
|
2012-10-10 22:49:47 +04:00
|
|
|
}
|
|
|
|
}
|