2020-10-11 02:18:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert a JSON abstract schema change to a schema change file in the given DBMS type
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Maintenance
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
use Doctrine\SqlFormatter\NullHighlighter;
|
|
|
|
|
use Doctrine\SqlFormatter\SqlFormatter;
|
|
|
|
|
use Wikimedia\Rdbms\DoctrineSchemaBuilderFactory;
|
|
|
|
|
|
2022-02-11 10:24:54 +00:00
|
|
|
require_once __DIR__ . '/includes/SchemaMaintenance.php';
|
2020-10-11 02:18:47 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maintenance script to generate schema from abstract json files.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Maintenance
|
|
|
|
|
*/
|
2022-02-11 10:24:54 +00:00
|
|
|
class GenerateSchemaChangeSql extends SchemaMaintenance {
|
2020-10-11 02:18:47 +00:00
|
|
|
public function __construct() {
|
|
|
|
|
parent::__construct();
|
2022-02-11 10:24:54 +00:00
|
|
|
$this->addDescription( 'Build SQL files for schema changes from abstract JSON files' );
|
|
|
|
|
$this->scriptName = 'generateSchemaChangeSql.php';
|
2020-10-11 02:18:47 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-11 10:24:54 +00:00
|
|
|
protected function generateSchema( string $platform, array $schema ): string {
|
2021-12-01 19:14:06 +00:00
|
|
|
$schemaChangeBuilder = ( new DoctrineSchemaBuilderFactory() )->getSchemaChangeBuilder( $platform );
|
2020-10-11 02:18:47 +00:00
|
|
|
|
2022-02-11 10:24:54 +00:00
|
|
|
$schemaChangeSqls = $schemaChangeBuilder->getSchemaChangeSql( $schema );
|
2020-10-11 02:18:47 +00:00
|
|
|
|
2022-02-11 10:24:54 +00:00
|
|
|
$sql = '';
|
2020-10-11 02:18:47 +00:00
|
|
|
|
|
|
|
|
if ( $schemaChangeSqls !== [] ) {
|
|
|
|
|
// Temporary
|
2021-02-19 23:05:36 +00:00
|
|
|
$sql .= implode( ";\n\n", $schemaChangeSqls ) . ';';
|
2020-10-11 02:18:47 +00:00
|
|
|
$sql = ( new SqlFormatter( new NullHighlighter() ) )->format( $sql );
|
2021-12-01 19:14:06 +00:00
|
|
|
} else {
|
2022-02-11 10:24:54 +00:00
|
|
|
$this->fatalError( 'No schema changes detected!' );
|
2020-10-11 02:18:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Until the linting issue is resolved
|
|
|
|
|
// https://github.com/doctrine/sql-formatter/issues/53
|
2021-04-24 10:42:10 +00:00
|
|
|
$sql = str_replace( "\n/*_*/\n", " /*_*/", $sql );
|
2020-10-11 02:18:47 +00:00
|
|
|
$sql = str_replace( "; ", ";\n", $sql );
|
|
|
|
|
$sql = preg_replace( "/\n+? +?/", ' ', $sql );
|
|
|
|
|
$sql = str_replace( "/*_*/ ", "/*_*/", $sql );
|
|
|
|
|
|
|
|
|
|
// Sqlite hacks
|
2021-12-01 19:14:06 +00:00
|
|
|
if ( $platform === 'sqlite' ) {
|
2020-10-11 02:18:47 +00:00
|
|
|
// Doctrine prepends __temp__ to the table name and we set the table with the schema prefix causing invalid
|
|
|
|
|
// sqlite.
|
2021-12-01 18:21:59 +00:00
|
|
|
$sql = preg_replace( '/__temp__\s*\/\*_\*\//', '/*_*/__temp__', $sql );
|
2020-10-11 02:18:47 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-11 10:24:54 +00:00
|
|
|
return $sql;
|
2020-10-11 02:18:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$maintClass = GenerateSchemaChangeSql::class;
|
|
|
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|