123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
- * @copyright Copyright (c) 2017, ownCloud GmbH
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @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,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\DB;
- use Doctrine\DBAL\Platforms\OraclePlatform;
- use Doctrine\DBAL\Platforms\PostgreSQL94Platform;
- use Doctrine\DBAL\Schema\Index;
- use Doctrine\DBAL\Schema\Schema;
- use Doctrine\DBAL\Schema\SchemaException;
- use Doctrine\DBAL\Schema\Sequence;
- use Doctrine\DBAL\Schema\Table;
- use Doctrine\DBAL\Types\Types;
- use OC\App\InfoParser;
- use OC\IntegrityCheck\Helpers\AppLocator;
- use OC\Migration\SimpleOutput;
- use OCP\AppFramework\App;
- use OCP\AppFramework\QueryException;
- use OCP\DB\ISchemaWrapper;
- use OCP\Migration\IMigrationStep;
- use OCP\Migration\IOutput;
- use Psr\Log\LoggerInterface;
- class MigrationService {
- private bool $migrationTableCreated;
- private array $migrations;
- private string $migrationsPath;
- private string $migrationsNamespace;
- private IOutput $output;
- private Connection $connection;
- private string $appName;
- private bool $checkOracle;
- /**
- * @throws \Exception
- */
- public function __construct($appName, Connection $connection, ?IOutput $output = null, ?AppLocator $appLocator = null) {
- $this->appName = $appName;
- $this->connection = $connection;
- if ($output === null) {
- $this->output = new SimpleOutput(\OC::$server->get(LoggerInterface::class), $appName);
- } else {
- $this->output = $output;
- }
- if ($appName === 'core') {
- $this->migrationsPath = \OC::$SERVERROOT . '/core/Migrations';
- $this->migrationsNamespace = 'OC\\Core\\Migrations';
- $this->checkOracle = true;
- } else {
- if (null === $appLocator) {
- $appLocator = new AppLocator();
- }
- $appPath = $appLocator->getAppPath($appName);
- $namespace = App::buildAppNamespace($appName);
- $this->migrationsPath = "$appPath/lib/Migration";
- $this->migrationsNamespace = $namespace . '\\Migration';
- $infoParser = new InfoParser();
- $info = $infoParser->parse($appPath . '/appinfo/info.xml');
- if (!isset($info['dependencies']['database'])) {
- $this->checkOracle = true;
- } else {
- $this->checkOracle = false;
- foreach ($info['dependencies']['database'] as $database) {
- if (\is_string($database) && $database === 'oci') {
- $this->checkOracle = true;
- } elseif (\is_array($database) && isset($database['@value']) && $database['@value'] === 'oci') {
- $this->checkOracle = true;
- }
- }
- }
- }
- $this->migrationTableCreated = false;
- }
- /**
- * Returns the name of the app for which this migration is executed
- *
- * @return string
- */
- public function getApp() {
- return $this->appName;
- }
- /**
- * @return bool
- * @codeCoverageIgnore - this will implicitly tested on installation
- */
- private function createMigrationTable() {
- if ($this->migrationTableCreated) {
- return false;
- }
- if ($this->connection->tableExists('migrations') && \OC::$server->getConfig()->getAppValue('core', 'vendor', '') !== 'owncloud') {
- $this->migrationTableCreated = true;
- return false;
- }
- $schema = new SchemaWrapper($this->connection);
- /**
- * We drop the table when it has different columns or the definition does not
- * match. E.g. ownCloud uses a length of 177 for app and 14 for version.
- */
- try {
- $table = $schema->getTable('migrations');
- $columns = $table->getColumns();
- if (count($columns) === 2) {
- try {
- $column = $table->getColumn('app');
- $schemaMismatch = $column->getLength() !== 255;
- if (!$schemaMismatch) {
- $column = $table->getColumn('version');
- $schemaMismatch = $column->getLength() !== 255;
- }
- } catch (SchemaException $e) {
- // One of the columns is missing
- $schemaMismatch = true;
- }
- if (!$schemaMismatch) {
- // Table exists and schema matches: return back!
- $this->migrationTableCreated = true;
- return false;
- }
- }
- // Drop the table, when it didn't match our expectations.
- $this->connection->dropTable('migrations');
- // Recreate the schema after the table was dropped.
- $schema = new SchemaWrapper($this->connection);
- } catch (SchemaException $e) {
- // Table not found, no need to panic, we will create it.
- }
- $table = $schema->createTable('migrations');
- $table->addColumn('app', Types::STRING, ['length' => 255]);
- $table->addColumn('version', Types::STRING, ['length' => 255]);
- $table->setPrimaryKey(['app', 'version']);
- $this->connection->migrateToSchema($schema->getWrappedSchema());
- $this->migrationTableCreated = true;
- return true;
- }
- /**
- * Returns all versions which have already been applied
- *
- * @return string[]
- * @codeCoverageIgnore - no need to test this
- */
- public function getMigratedVersions() {
- $this->createMigrationTable();
- $qb = $this->connection->getQueryBuilder();
- $qb->select('version')
- ->from('migrations')
- ->where($qb->expr()->eq('app', $qb->createNamedParameter($this->getApp())))
- ->orderBy('version');
- $result = $qb->execute();
- $rows = $result->fetchAll(\PDO::FETCH_COLUMN);
- $result->closeCursor();
- return $rows;
- }
- /**
- * Returns all versions which are available in the migration folder
- *
- * @return array
- */
- public function getAvailableVersions() {
- $this->ensureMigrationsAreLoaded();
- return array_map('strval', array_keys($this->migrations));
- }
- protected function findMigrations() {
- $directory = realpath($this->migrationsPath);
- if ($directory === false || !file_exists($directory) || !is_dir($directory)) {
- return [];
- }
- $iterator = new \RegexIterator(
- new \RecursiveIteratorIterator(
- new \RecursiveDirectoryIterator($directory, \FilesystemIterator::SKIP_DOTS),
- \RecursiveIteratorIterator::LEAVES_ONLY
- ),
- '#^.+\\/Version[^\\/]{1,255}\\.php$#i',
- \RegexIterator::GET_MATCH);
- $files = array_keys(iterator_to_array($iterator));
- uasort($files, function ($a, $b) {
- preg_match('/^Version(\d+)Date(\d+)\\.php$/', basename($a), $matchA);
- preg_match('/^Version(\d+)Date(\d+)\\.php$/', basename($b), $matchB);
- if (!empty($matchA) && !empty($matchB)) {
- if ($matchA[1] !== $matchB[1]) {
- return ($matchA[1] < $matchB[1]) ? -1 : 1;
- }
- return ($matchA[2] < $matchB[2]) ? -1 : 1;
- }
- return (basename($a) < basename($b)) ? -1 : 1;
- });
- $migrations = [];
- foreach ($files as $file) {
- $className = basename($file, '.php');
- $version = (string) substr($className, 7);
- if ($version === '0') {
- throw new \InvalidArgumentException(
- "Cannot load a migrations with the name '$version' because it is a reserved number"
- );
- }
- $migrations[$version] = sprintf('%s\\%s', $this->migrationsNamespace, $className);
- }
- return $migrations;
- }
- /**
- * @param string $to
- * @return string[]
- */
- private function getMigrationsToExecute($to) {
- $knownMigrations = $this->getMigratedVersions();
- $availableMigrations = $this->getAvailableVersions();
- $toBeExecuted = [];
- foreach ($availableMigrations as $v) {
- if ($to !== 'latest' && $v > $to) {
- continue;
- }
- if ($this->shallBeExecuted($v, $knownMigrations)) {
- $toBeExecuted[] = $v;
- }
- }
- return $toBeExecuted;
- }
- /**
- * @param string $m
- * @param string[] $knownMigrations
- * @return bool
- */
- private function shallBeExecuted($m, $knownMigrations) {
- if (in_array($m, $knownMigrations)) {
- return false;
- }
- return true;
- }
- /**
- * @param string $version
- */
- private function markAsExecuted($version) {
- $this->connection->insertIfNotExist('*PREFIX*migrations', [
- 'app' => $this->appName,
- 'version' => $version
- ]);
- }
- /**
- * Returns the name of the table which holds the already applied versions
- *
- * @return string
- */
- public function getMigrationsTableName() {
- return $this->connection->getPrefix() . 'migrations';
- }
- /**
- * Returns the namespace of the version classes
- *
- * @return string
- */
- public function getMigrationsNamespace() {
- return $this->migrationsNamespace;
- }
- /**
- * Returns the directory which holds the versions
- *
- * @return string
- */
- public function getMigrationsDirectory() {
- return $this->migrationsPath;
- }
- /**
- * Return the explicit version for the aliases; current, next, prev, latest
- *
- * @param string $alias
- * @return mixed|null|string
- */
- public function getMigration($alias) {
- switch ($alias) {
- case 'current':
- return $this->getCurrentVersion();
- case 'next':
- return $this->getRelativeVersion($this->getCurrentVersion(), 1);
- case 'prev':
- return $this->getRelativeVersion($this->getCurrentVersion(), -1);
- case 'latest':
- $this->ensureMigrationsAreLoaded();
- $migrations = $this->getAvailableVersions();
- return @end($migrations);
- }
- return '0';
- }
- /**
- * @param string $version
- * @param int $delta
- * @return null|string
- */
- private function getRelativeVersion($version, $delta) {
- $this->ensureMigrationsAreLoaded();
- $versions = $this->getAvailableVersions();
- array_unshift($versions, 0);
- $offset = array_search($version, $versions, true);
- if ($offset === false || !isset($versions[$offset + $delta])) {
- // Unknown version or delta out of bounds.
- return null;
- }
- return (string) $versions[$offset + $delta];
- }
- /**
- * @return string
- */
- private function getCurrentVersion() {
- $m = $this->getMigratedVersions();
- if (count($m) === 0) {
- return '0';
- }
- $migrations = array_values($m);
- return @end($migrations);
- }
- /**
- * @param string $version
- * @return string
- * @throws \InvalidArgumentException
- */
- private function getClass($version) {
- $this->ensureMigrationsAreLoaded();
- if (isset($this->migrations[$version])) {
- return $this->migrations[$version];
- }
- throw new \InvalidArgumentException("Version $version is unknown.");
- }
- /**
- * Allows to set an IOutput implementation which is used for logging progress and messages
- *
- * @param IOutput $output
- */
- public function setOutput(IOutput $output) {
- $this->output = $output;
- }
- /**
- * Applies all not yet applied versions up to $to
- *
- * @param string $to
- * @param bool $schemaOnly
- * @throws \InvalidArgumentException
- */
- public function migrate($to = 'latest', $schemaOnly = false) {
- if ($schemaOnly) {
- $this->migrateSchemaOnly($to);
- return;
- }
- // read known migrations
- $toBeExecuted = $this->getMigrationsToExecute($to);
- foreach ($toBeExecuted as $version) {
- try {
- $this->executeStep($version, $schemaOnly);
- } catch (\Exception $e) {
- // The exception itself does not contain the name of the migration,
- // so we wrap it here, to make debugging easier.
- throw new \Exception('Database error when running migration ' . $version . ' for app ' . $this->getApp() . PHP_EOL. $e->getMessage(), 0, $e);
- }
- }
- }
- /**
- * Applies all not yet applied versions up to $to
- *
- * @param string $to
- * @throws \InvalidArgumentException
- */
- public function migrateSchemaOnly($to = 'latest') {
- // read known migrations
- $toBeExecuted = $this->getMigrationsToExecute($to);
- if (empty($toBeExecuted)) {
- return;
- }
- $toSchema = null;
- foreach ($toBeExecuted as $version) {
- $instance = $this->createInstance($version);
- $toSchema = $instance->changeSchema($this->output, function () use ($toSchema): ISchemaWrapper {
- return $toSchema ?: new SchemaWrapper($this->connection);
- }, ['tablePrefix' => $this->connection->getPrefix()]) ?: $toSchema;
- }
- if ($toSchema instanceof SchemaWrapper) {
- $targetSchema = $toSchema->getWrappedSchema();
- if ($this->checkOracle) {
- $beforeSchema = $this->connection->createSchema();
- $this->ensureOracleConstraints($beforeSchema, $targetSchema, strlen($this->connection->getPrefix()));
- }
- $this->connection->migrateToSchema($targetSchema);
- $toSchema->performDropTableCalls();
- }
- foreach ($toBeExecuted as $version) {
- $this->markAsExecuted($version);
- }
- }
- /**
- * Get the human readable descriptions for the migration steps to run
- *
- * @param string $to
- * @return string[] [$name => $description]
- */
- public function describeMigrationStep($to = 'latest') {
- $toBeExecuted = $this->getMigrationsToExecute($to);
- $description = [];
- foreach ($toBeExecuted as $version) {
- $migration = $this->createInstance($version);
- if ($migration->name()) {
- $description[$migration->name()] = $migration->description();
- }
- }
- return $description;
- }
- /**
- * @param string $version
- * @return IMigrationStep
- * @throws \InvalidArgumentException
- */
- protected function createInstance($version) {
- $class = $this->getClass($version);
- try {
- $s = \OC::$server->query($class);
- if (!$s instanceof IMigrationStep) {
- throw new \InvalidArgumentException('Not a valid migration');
- }
- } catch (QueryException $e) {
- if (class_exists($class)) {
- $s = new $class();
- } else {
- throw new \InvalidArgumentException("Migration step '$class' is unknown");
- }
- }
- return $s;
- }
- /**
- * Executes one explicit version
- *
- * @param string $version
- * @param bool $schemaOnly
- * @throws \InvalidArgumentException
- */
- public function executeStep($version, $schemaOnly = false) {
- $instance = $this->createInstance($version);
- if (!$schemaOnly) {
- $instance->preSchemaChange($this->output, function (): ISchemaWrapper {
- return new SchemaWrapper($this->connection);
- }, ['tablePrefix' => $this->connection->getPrefix()]);
- }
- $toSchema = $instance->changeSchema($this->output, function (): ISchemaWrapper {
- return new SchemaWrapper($this->connection);
- }, ['tablePrefix' => $this->connection->getPrefix()]);
- if ($toSchema instanceof SchemaWrapper) {
- $targetSchema = $toSchema->getWrappedSchema();
- if ($this->checkOracle) {
- $sourceSchema = $this->connection->createSchema();
- $this->ensureOracleConstraints($sourceSchema, $targetSchema, strlen($this->connection->getPrefix()));
- }
- $this->connection->migrateToSchema($targetSchema);
- $toSchema->performDropTableCalls();
- }
- if (!$schemaOnly) {
- $instance->postSchemaChange($this->output, function (): ISchemaWrapper {
- return new SchemaWrapper($this->connection);
- }, ['tablePrefix' => $this->connection->getPrefix()]);
- }
- $this->markAsExecuted($version);
- }
- /**
- * Naming constraints:
- * - Tables names must be 30 chars or shorter (27 + oc_ prefix)
- * - Column names must be 30 chars or shorter
- * - Index names must be 30 chars or shorter
- * - Sequence names must be 30 chars or shorter
- * - Primary key names must be set or the table name 23 chars or shorter
- *
- * Data constraints:
- * - Tables need a primary key (Not specific to Oracle, but required for performant clustering support)
- * - Columns with "NotNull" can not have empty string as default value
- * - Columns with "NotNull" can not have number 0 as default value
- * - Columns with type "bool" (which is in fact integer of length 1) can not be "NotNull" as it can not store 0/false
- * - Columns with type "string" can not be longer than 4.000 characters, use "text" instead
- *
- * @see https://github.com/nextcloud/documentation/blob/master/developer_manual/basics/storage/database.rst
- *
- * @param Schema $sourceSchema
- * @param Schema $targetSchema
- * @param int $prefixLength
- * @throws \Doctrine\DBAL\Exception
- */
- public function ensureOracleConstraints(Schema $sourceSchema, Schema $targetSchema, int $prefixLength) {
- $sequences = $targetSchema->getSequences();
- foreach ($targetSchema->getTables() as $table) {
- try {
- $sourceTable = $sourceSchema->getTable($table->getName());
- } catch (SchemaException $e) {
- if (\strlen($table->getName()) - $prefixLength > 27) {
- throw new \InvalidArgumentException('Table name "' . $table->getName() . '" is too long.');
- }
- $sourceTable = null;
- }
- foreach ($table->getColumns() as $thing) {
- // If the table doesn't exist OR if the column doesn't exist in the table
- if (!$sourceTable instanceof Table || !$sourceTable->hasColumn($thing->getName())) {
- if (\strlen($thing->getName()) > 30) {
- throw new \InvalidArgumentException('Column name "' . $table->getName() . '"."' . $thing->getName() . '" is too long.');
- }
- if ($thing->getNotnull() && $thing->getDefault() === ''
- && $sourceTable instanceof Table && !$sourceTable->hasColumn($thing->getName())) {
- throw new \InvalidArgumentException('Column "' . $table->getName() . '"."' . $thing->getName() . '" is NotNull, but has empty string or null as default.');
- }
- if ($thing->getNotnull() && $thing->getType()->getName() === Types::BOOLEAN) {
- throw new \InvalidArgumentException('Column "' . $table->getName() . '"."' . $thing->getName() . '" is type Bool and also NotNull, so it can not store "false".');
- }
- $sourceColumn = null;
- } else {
- $sourceColumn = $sourceTable->getColumn($thing->getName());
- }
- // If the column was just created OR the length changed OR the type changed
- // we will NOT detect invalid length if the column is not modified
- if (($sourceColumn === null || $sourceColumn->getLength() !== $thing->getLength() || $sourceColumn->getType()->getName() !== Types::STRING)
- && $thing->getLength() > 4000 && $thing->getType()->getName() === Types::STRING) {
- throw new \InvalidArgumentException('Column "' . $table->getName() . '"."' . $thing->getName() . '" is type String, but exceeding the 4.000 length limit.');
- }
- }
- foreach ($table->getIndexes() as $thing) {
- if ((!$sourceTable instanceof Table || !$sourceTable->hasIndex($thing->getName())) && \strlen($thing->getName()) > 30) {
- throw new \InvalidArgumentException('Index name "' . $table->getName() . '"."' . $thing->getName() . '" is too long.');
- }
- }
- foreach ($table->getForeignKeys() as $thing) {
- if ((!$sourceTable instanceof Table || !$sourceTable->hasForeignKey($thing->getName())) && \strlen($thing->getName()) > 30) {
- throw new \InvalidArgumentException('Foreign key name "' . $table->getName() . '"."' . $thing->getName() . '" is too long.');
- }
- }
- $primaryKey = $table->getPrimaryKey();
- if ($primaryKey instanceof Index && (!$sourceTable instanceof Table || !$sourceTable->hasPrimaryKey())) {
- $indexName = strtolower($primaryKey->getName());
- $isUsingDefaultName = $indexName === 'primary';
- if ($this->connection->getDatabasePlatform() instanceof PostgreSQL94Platform) {
- $defaultName = $table->getName() . '_pkey';
- $isUsingDefaultName = strtolower($defaultName) === $indexName;
- if ($isUsingDefaultName) {
- $sequenceName = $table->getName() . '_' . implode('_', $primaryKey->getColumns()) . '_seq';
- $sequences = array_filter($sequences, function (Sequence $sequence) use ($sequenceName) {
- return $sequence->getName() !== $sequenceName;
- });
- }
- } elseif ($this->connection->getDatabasePlatform() instanceof OraclePlatform) {
- $defaultName = $table->getName() . '_seq';
- $isUsingDefaultName = strtolower($defaultName) === $indexName;
- }
- if (!$isUsingDefaultName && \strlen($indexName) > 30) {
- throw new \InvalidArgumentException('Primary index name on "' . $table->getName() . '" is too long.');
- }
- if ($isUsingDefaultName && \strlen($table->getName()) - $prefixLength >= 23) {
- throw new \InvalidArgumentException('Primary index name on "' . $table->getName() . '" is too long.');
- }
- } elseif (!$primaryKey instanceof Index && !$sourceTable instanceof Table) {
- /** @var LoggerInterface $logger */
- $logger = \OC::$server->get(LoggerInterface::class);
- $logger->error('Table "' . $table->getName() . '" has no primary key and therefor will not behave sane in clustered setups. This will throw an exception and not be installable in a future version of Nextcloud.');
- // throw new \InvalidArgumentException('Table "' . $table->getName() . '" has no primary key and therefor will not behave sane in clustered setups.');
- }
- }
- foreach ($sequences as $sequence) {
- if (!$sourceSchema->hasSequence($sequence->getName()) && \strlen($sequence->getName()) > 30) {
- throw new \InvalidArgumentException('Sequence name "' . $sequence->getName() . '" is too long.');
- }
- }
- }
- private function ensureMigrationsAreLoaded() {
- if (empty($this->migrations)) {
- $this->migrations = $this->findMigrations();
- }
- }
- }
|