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