PHPStorm has been a little annoying with showing all these code issues. I took some time to analyse most of them and fix whichever were easy to fix. This kind of change should improve future maintenance as developers do not need to wonder what a line of code does. Code that has no impact on functionality should be removed. * Remove redundant variables * Invert condition for better clarity * Remove some of the redundant casts * Replace switch with an if * Fix foreach variable * Remove redundant variable concat * Remove redundant concats * Replace for loop with str_repeat * Remove always true param * Turn property $position into local var * Turn Pdf properties into local vars * Remove unused properties in Pdf * Change ternary into condition * Remove redundant assignments They are immediately overwritten with a different value. * Redundant array append * Collapse if statements into assignments * Use boolean constants instead of variables * Remove unneeded parameter * Remove null-coalesce * Unnecessary assignment * Remove redundant isset * Remove readOnly flag for InsertEdit fields * Remove function_exists and $mode var * Remove duplicate condition * Remove redundant elseif * Remove redundant isset * Use hasBodyParam() * Simplify isRoutesCacheFileValid() Psalm complains but is wrong. https://github.com/phpmyadmin/phpmyadmin/pull/18063 --------- Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
979 lines
34 KiB
PHP
979 lines
34 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin;
|
|
|
|
use PhpMyAdmin\ConfigStorage\Relation;
|
|
use PhpMyAdmin\Database\Events;
|
|
use PhpMyAdmin\Database\Routines;
|
|
use PhpMyAdmin\Database\Triggers;
|
|
use PhpMyAdmin\Dbal\DatabaseName;
|
|
use PhpMyAdmin\Engines\Innodb;
|
|
use PhpMyAdmin\Partitioning\Partition;
|
|
use PhpMyAdmin\Plugins\Export\ExportSql;
|
|
|
|
use function __;
|
|
use function array_keys;
|
|
use function array_merge;
|
|
use function count;
|
|
use function explode;
|
|
use function is_scalar;
|
|
use function is_string;
|
|
use function mb_strtolower;
|
|
use function str_replace;
|
|
use function strlen;
|
|
use function strtolower;
|
|
use function urldecode;
|
|
|
|
/**
|
|
* Set of functions with the operations section in phpMyAdmin
|
|
*/
|
|
class Operations
|
|
{
|
|
private Relation $relation;
|
|
|
|
private DatabaseInterface $dbi;
|
|
|
|
/**
|
|
* @param DatabaseInterface $dbi DatabaseInterface object
|
|
* @param Relation $relation Relation object
|
|
*/
|
|
public function __construct(DatabaseInterface $dbi, Relation $relation)
|
|
{
|
|
$this->dbi = $dbi;
|
|
$this->relation = $relation;
|
|
}
|
|
|
|
/**
|
|
* Run the Procedure definitions and function definitions
|
|
*
|
|
* to avoid selecting alternatively the current and new db
|
|
* we would need to modify the CREATE definitions to qualify
|
|
* the db name
|
|
*
|
|
* @param string $db database name
|
|
*/
|
|
public function runProcedureAndFunctionDefinitions($db, DatabaseName $newDatabaseName): void
|
|
{
|
|
foreach (Routines::getProcedureNames($this->dbi, $db) as $procedureName) {
|
|
$this->dbi->selectDb($db);
|
|
$query = Routines::getProcedureDefinition($this->dbi, $db, $procedureName);
|
|
if ($query === null) {
|
|
continue;
|
|
}
|
|
|
|
// collect for later display
|
|
$GLOBALS['sql_query'] .= "\n" . $query;
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
$this->dbi->query($query);
|
|
}
|
|
|
|
foreach (Routines::getFunctionNames($this->dbi, $db) as $functionName) {
|
|
$this->dbi->selectDb($db);
|
|
$query = Routines::getFunctionDefinition($this->dbi, $db, $functionName);
|
|
if ($query === null) {
|
|
continue;
|
|
}
|
|
|
|
// collect for later display
|
|
$GLOBALS['sql_query'] .= "\n" . $query;
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
$this->dbi->query($query);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Create database before copy
|
|
*/
|
|
public function createDbBeforeCopy(DatabaseName $newDatabaseName): void
|
|
{
|
|
$localQuery = 'CREATE DATABASE IF NOT EXISTS '
|
|
. Util::backquote($newDatabaseName);
|
|
if (isset($_POST['db_collation'])) {
|
|
$localQuery .= ' DEFAULT'
|
|
. Util::getCharsetQueryPart($_POST['db_collation'] ?? '');
|
|
}
|
|
|
|
$localQuery .= ';';
|
|
$GLOBALS['sql_query'] .= $localQuery;
|
|
|
|
// save the original db name because Tracker.php which
|
|
// may be called under $this->dbi->query() changes $GLOBALS['db']
|
|
// for some statements, one of which being CREATE DATABASE
|
|
$originalDb = $GLOBALS['db'];
|
|
$this->dbi->query($localQuery);
|
|
$GLOBALS['db'] = $originalDb;
|
|
|
|
// Set the SQL mode to NO_AUTO_VALUE_ON_ZERO to prevent MySQL from creating
|
|
// export statements it cannot import
|
|
$sqlSetMode = "SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO'";
|
|
$this->dbi->query($sqlSetMode);
|
|
|
|
// rebuild the database list because Table::moveCopy
|
|
// checks in this list if the target db exists
|
|
$this->dbi->getDatabaseList()->build();
|
|
}
|
|
|
|
/**
|
|
* Get views as an array and create SQL view stand-in
|
|
*
|
|
* @param array $tablesFull array of all tables in given db or dbs
|
|
* @param ExportSql $exportSqlPlugin export plugin instance
|
|
* @param string $db database name
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getViewsAndCreateSqlViewStandIn(
|
|
array $tablesFull,
|
|
$exportSqlPlugin,
|
|
$db,
|
|
DatabaseName $newDatabaseName
|
|
) {
|
|
$views = [];
|
|
foreach (array_keys($tablesFull) as $tableName) {
|
|
// to be able to rename a db containing views,
|
|
// first all the views are collected and a stand-in is created
|
|
// the real views are created after the tables
|
|
if (! $this->dbi->getTable($db, (string) $tableName)->isView()) {
|
|
continue;
|
|
}
|
|
|
|
// If view exists, and 'add drop view' is selected: Drop it!
|
|
if ($_POST['what'] !== 'nocopy' && isset($_POST['drop_if_exists']) && $_POST['drop_if_exists'] === 'true') {
|
|
$dropQuery = 'DROP VIEW IF EXISTS '
|
|
. Util::backquote($newDatabaseName) . '.'
|
|
. Util::backquote($tableName);
|
|
$this->dbi->query($dropQuery);
|
|
|
|
$GLOBALS['sql_query'] .= "\n" . $dropQuery . ';';
|
|
}
|
|
|
|
$views[] = $tableName;
|
|
// Create stand-in definition to resolve view dependencies
|
|
$sqlViewStandin = $exportSqlPlugin->getTableDefStandIn($db, $tableName);
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
$this->dbi->query($sqlViewStandin);
|
|
$GLOBALS['sql_query'] .= "\n" . $sqlViewStandin;
|
|
}
|
|
|
|
return $views;
|
|
}
|
|
|
|
/**
|
|
* Get sql query for copy/rename table and boolean for whether copy/rename or not
|
|
*
|
|
* @param array $tablesFull array of all tables in given db or dbs
|
|
* @param bool $move whether database name is empty or not
|
|
* @param string $db database name
|
|
*
|
|
* @return array SQL queries for the constraints
|
|
*/
|
|
public function copyTables(array $tablesFull, $move, $db, DatabaseName $newDatabaseName)
|
|
{
|
|
$sqlContraints = [];
|
|
foreach (array_keys($tablesFull) as $tableName) {
|
|
// skip the views; we have created stand-in definitions
|
|
if ($this->dbi->getTable($db, (string) $tableName)->isView()) {
|
|
continue;
|
|
}
|
|
|
|
// value of $what for this table only
|
|
$copyMode = $_POST['what'];
|
|
|
|
// do not copy the data from a Merge table
|
|
// note: on the calling FORM, 'data' means 'structure and data'
|
|
if ($this->dbi->getTable($db, (string) $tableName)->isMerge()) {
|
|
if ($copyMode === 'data') {
|
|
$copyMode = 'structure';
|
|
}
|
|
|
|
if ($copyMode === 'dataonly') {
|
|
$copyMode = 'nocopy';
|
|
}
|
|
}
|
|
|
|
if ($copyMode === 'nocopy') {
|
|
continue;
|
|
}
|
|
|
|
// keep the triggers from the original db+table
|
|
// (third param is empty because delimiters are only intended
|
|
// for importing via the mysql client or our Import feature)
|
|
$triggers = Triggers::getDetails($this->dbi, $db, (string) $tableName, '');
|
|
|
|
if (
|
|
! Table::moveCopy(
|
|
$db,
|
|
$tableName,
|
|
$newDatabaseName->getName(),
|
|
$tableName,
|
|
($copyMode ?? 'data'),
|
|
$move,
|
|
'db_copy',
|
|
isset($_POST['drop_if_exists']) && $_POST['drop_if_exists'] === 'true'
|
|
)
|
|
) {
|
|
$GLOBALS['_error'] = true;
|
|
break;
|
|
}
|
|
|
|
// apply the triggers to the destination db+table
|
|
if ($triggers) {
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
foreach ($triggers as $trigger) {
|
|
$this->dbi->query($trigger['create']);
|
|
$GLOBALS['sql_query'] .= "\n" . $trigger['create'] . ';';
|
|
}
|
|
}
|
|
|
|
// this does not apply to a rename operation
|
|
if (! isset($_POST['add_constraints']) || empty($GLOBALS['sql_constraints_query'])) {
|
|
continue;
|
|
}
|
|
|
|
$sqlContraints[] = $GLOBALS['sql_constraints_query'];
|
|
unset($GLOBALS['sql_constraints_query']);
|
|
}
|
|
|
|
return $sqlContraints;
|
|
}
|
|
|
|
/**
|
|
* Run the EVENT definition for selected database
|
|
*
|
|
* to avoid selecting alternatively the current and new db
|
|
* we would need to modify the CREATE definitions to qualify
|
|
* the db name
|
|
*
|
|
* @param string $db database name
|
|
*/
|
|
public function runEventDefinitionsForDb($db, DatabaseName $newDatabaseName): void
|
|
{
|
|
/** @var string[] $eventNames */
|
|
$eventNames = $this->dbi->fetchResult(
|
|
'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= '
|
|
. $this->dbi->quoteString($db) . ';'
|
|
);
|
|
|
|
foreach ($eventNames as $eventName) {
|
|
$this->dbi->selectDb($db);
|
|
$query = Events::getDefinition($this->dbi, $db, $eventName);
|
|
// collect for later display
|
|
$GLOBALS['sql_query'] .= "\n" . $query;
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
$this->dbi->query($query);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle the views, return the boolean value whether table rename/copy or not
|
|
*
|
|
* @param array $views views as an array
|
|
* @param bool $move whether database name is empty or not
|
|
* @param string $db database name
|
|
*/
|
|
public function handleTheViews(array $views, $move, $db, DatabaseName $newDatabaseName): void
|
|
{
|
|
// Add DROP IF EXIST to CREATE VIEW query, to remove stand-in VIEW that was created earlier.
|
|
foreach ($views as $view) {
|
|
$copyingSucceeded = Table::moveCopy(
|
|
$db,
|
|
$view,
|
|
$newDatabaseName->getName(),
|
|
$view,
|
|
'structure',
|
|
$move,
|
|
'db_copy',
|
|
true
|
|
);
|
|
if (! $copyingSucceeded) {
|
|
$GLOBALS['_error'] = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adjust the privileges after Renaming the db
|
|
*
|
|
* @param string $oldDb Database name before renaming
|
|
*/
|
|
public function adjustPrivilegesMoveDb($oldDb, DatabaseName $newDatabaseName): void
|
|
{
|
|
if (
|
|
! $GLOBALS['db_priv'] || ! $GLOBALS['table_priv']
|
|
|| ! $GLOBALS['col_priv'] || ! $GLOBALS['proc_priv']
|
|
|| ! $GLOBALS['is_reload_priv']
|
|
) {
|
|
return;
|
|
}
|
|
|
|
$this->dbi->selectDb('mysql');
|
|
$newName = str_replace('_', '\_', $newDatabaseName->getName());
|
|
$oldDb = str_replace('_', '\_', $oldDb);
|
|
|
|
// For Db specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('db')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newName)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb) . ';');
|
|
|
|
// For table specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('tables_priv')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newName)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb) . ';');
|
|
|
|
// For column specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('columns_priv')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newName)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb) . ';');
|
|
|
|
// For procedures specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('procs_priv')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newName)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb) . ';');
|
|
|
|
// Finally FLUSH the new privileges
|
|
$this->dbi->query('FLUSH PRIVILEGES;');
|
|
}
|
|
|
|
/**
|
|
* Adjust the privileges after Copying the db
|
|
*
|
|
* @param string $oldDb Database name before copying
|
|
*/
|
|
public function adjustPrivilegesCopyDb($oldDb, DatabaseName $newDatabaseName): void
|
|
{
|
|
if (
|
|
! $GLOBALS['db_priv'] || ! $GLOBALS['table_priv']
|
|
|| ! $GLOBALS['col_priv'] || ! $GLOBALS['proc_priv']
|
|
|| ! $GLOBALS['is_reload_priv']
|
|
) {
|
|
return;
|
|
}
|
|
|
|
$this->dbi->selectDb('mysql');
|
|
$newName = str_replace('_', '\_', $newDatabaseName->getName());
|
|
$oldDb = str_replace('_', '\_', $oldDb);
|
|
|
|
$queryDbSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('db') . ' WHERE '
|
|
. 'Db = "' . $oldDb . '";';
|
|
|
|
$oldPrivsDb = $this->dbi->fetchResult($queryDbSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsDb as $oldPriv) {
|
|
$newDbDbPrivsQuery = 'INSERT INTO ' . Util::backquote('db')
|
|
. ' VALUES("' . $oldPriv[0] . '", "' . $newName . '"';
|
|
$privCount = count($oldPriv);
|
|
for ($i = 2; $i < $privCount; $i++) {
|
|
$newDbDbPrivsQuery .= ', "' . $oldPriv[$i] . '"';
|
|
}
|
|
|
|
$newDbDbPrivsQuery .= ')';
|
|
|
|
$this->dbi->query($newDbDbPrivsQuery);
|
|
}
|
|
|
|
// For Table Specific privileges
|
|
$queryTableSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('tables_priv') . ' WHERE '
|
|
. 'Db = "' . $oldDb . '";';
|
|
|
|
$oldPrivsTable = $this->dbi->fetchResult($queryTableSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsTable as $oldPriv) {
|
|
$newDbTablePrivsQuery = 'INSERT INTO ' . Util::backquote(
|
|
'tables_priv'
|
|
) . ' VALUES("' . $oldPriv[0] . '", "' . $newName . '", "'
|
|
. $oldPriv[2] . '", "' . $oldPriv[3] . '", "' . $oldPriv[4]
|
|
. '", "' . $oldPriv[5] . '", "' . $oldPriv[6] . '", "'
|
|
. $oldPriv[7] . '");';
|
|
|
|
$this->dbi->query($newDbTablePrivsQuery);
|
|
}
|
|
|
|
// For Column Specific privileges
|
|
$queryColSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('columns_priv') . ' WHERE '
|
|
. 'Db = "' . $oldDb . '";';
|
|
|
|
$oldPrivsCol = $this->dbi->fetchResult($queryColSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsCol as $oldPriv) {
|
|
$newDbColPrivsQuery = 'INSERT INTO ' . Util::backquote(
|
|
'columns_priv'
|
|
) . ' VALUES("' . $oldPriv[0] . '", "' . $newName . '", "'
|
|
. $oldPriv[2] . '", "' . $oldPriv[3] . '", "' . $oldPriv[4]
|
|
. '", "' . $oldPriv[5] . '", "' . $oldPriv[6] . '");';
|
|
|
|
$this->dbi->query($newDbColPrivsQuery);
|
|
}
|
|
|
|
// For Procedure Specific privileges
|
|
$queryProcSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('procs_priv') . ' WHERE '
|
|
. 'Db = "' . $oldDb . '";';
|
|
|
|
$oldPrivsProc = $this->dbi->fetchResult($queryProcSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsProc as $oldPriv) {
|
|
$newDbProcPrivsQuery = 'INSERT INTO ' . Util::backquote(
|
|
'procs_priv'
|
|
) . ' VALUES("' . $oldPriv[0] . '", "' . $newName . '", "'
|
|
. $oldPriv[2] . '", "' . $oldPriv[3] . '", "' . $oldPriv[4]
|
|
. '", "' . $oldPriv[5] . '", "' . $oldPriv[6] . '", "'
|
|
. $oldPriv[7] . '");';
|
|
|
|
$this->dbi->query($newDbProcPrivsQuery);
|
|
}
|
|
|
|
// Finally FLUSH the new privileges
|
|
$this->dbi->query('FLUSH PRIVILEGES;');
|
|
}
|
|
|
|
/**
|
|
* Create all accumulated constraints
|
|
*
|
|
* @param array $sqlConstraints array of sql constraints for the database
|
|
*/
|
|
public function createAllAccumulatedConstraints(array $sqlConstraints, DatabaseName $newDatabaseName): void
|
|
{
|
|
$this->dbi->selectDb($newDatabaseName);
|
|
foreach ($sqlConstraints as $query) {
|
|
$this->dbi->query($query);
|
|
// and prepare to display them
|
|
$GLOBALS['sql_query'] .= "\n" . $query;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Duplicate the bookmarks for the db (done once for each db)
|
|
*
|
|
* @param bool $error whether table rename/copy or not
|
|
* @param string $db database name
|
|
*/
|
|
public function duplicateBookmarks($error, $db, DatabaseName $newDatabaseName): void
|
|
{
|
|
if ($error || $db === $newDatabaseName->getName()) {
|
|
return;
|
|
}
|
|
|
|
$getFields = [
|
|
'user',
|
|
'label',
|
|
'query',
|
|
];
|
|
$whereFields = ['dbase' => $db];
|
|
$newFields = ['dbase' => $newDatabaseName->getName()];
|
|
Table::duplicateInfo('bookmarkwork', 'bookmark', $getFields, $whereFields, $newFields);
|
|
}
|
|
|
|
/**
|
|
* Get array of possible row formats
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getPossibleRowFormat()
|
|
{
|
|
// the outer array is for engines, the inner array contains the dropdown
|
|
// option values as keys then the dropdown option labels
|
|
|
|
$possibleRowFormats = [
|
|
'ARCHIVE' => ['COMPRESSED' => 'COMPRESSED'],
|
|
'ARIA' => [
|
|
'FIXED' => 'FIXED',
|
|
'DYNAMIC' => 'DYNAMIC',
|
|
'PAGE' => 'PAGE',
|
|
],
|
|
'MARIA' => [
|
|
'FIXED' => 'FIXED',
|
|
'DYNAMIC' => 'DYNAMIC',
|
|
'PAGE' => 'PAGE',
|
|
],
|
|
'MYISAM' => [
|
|
'FIXED' => 'FIXED',
|
|
'DYNAMIC' => 'DYNAMIC',
|
|
],
|
|
'PBXT' => [
|
|
'FIXED' => 'FIXED',
|
|
'DYNAMIC' => 'DYNAMIC',
|
|
],
|
|
'INNODB' => [
|
|
'COMPACT' => 'COMPACT',
|
|
'REDUNDANT' => 'REDUNDANT',
|
|
],
|
|
];
|
|
|
|
/** @var Innodb $innodbEnginePlugin */
|
|
$innodbEnginePlugin = StorageEngine::getEngine('Innodb');
|
|
$innodbPluginVersion = $innodbEnginePlugin->getInnodbPluginVersion();
|
|
$innodbFileFormat = '';
|
|
if (! empty($innodbPluginVersion)) {
|
|
$innodbFileFormat = $innodbEnginePlugin->getInnodbFileFormat() ?? '';
|
|
}
|
|
|
|
/**
|
|
* Newer MySQL/MariaDB always return empty a.k.a '' on $innodbFileFormat otherwise
|
|
* old versions of MySQL/MariaDB must be returning something or not empty.
|
|
* This patch is to support newer MySQL/MariaDB while also for backward compatibilities.
|
|
*/
|
|
if (
|
|
(strtolower($innodbFileFormat) === 'barracuda') || ($innodbFileFormat == '')
|
|
&& $innodbEnginePlugin->supportsFilePerTable()
|
|
) {
|
|
$possibleRowFormats['INNODB']['DYNAMIC'] = 'DYNAMIC';
|
|
$possibleRowFormats['INNODB']['COMPRESSED'] = 'COMPRESSED';
|
|
}
|
|
|
|
return $possibleRowFormats;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
public function getPartitionMaintenanceChoices(): array
|
|
{
|
|
$choices = [
|
|
'ANALYZE' => __('Analyze'),
|
|
'CHECK' => __('Check'),
|
|
'OPTIMIZE' => __('Optimize'),
|
|
'REBUILD' => __('Rebuild'),
|
|
'REPAIR' => __('Repair'),
|
|
'TRUNCATE' => __('Truncate'),
|
|
];
|
|
|
|
$partitionMethod = Partition::getPartitionMethod($GLOBALS['db'], $GLOBALS['table']);
|
|
|
|
// add COALESCE or DROP option to choices array depending on Partition method
|
|
if (
|
|
$partitionMethod === 'RANGE'
|
|
|| $partitionMethod === 'RANGE COLUMNS'
|
|
|| $partitionMethod === 'LIST'
|
|
|| $partitionMethod === 'LIST COLUMNS'
|
|
) {
|
|
$choices['DROP'] = __('Drop');
|
|
} else {
|
|
$choices['COALESCE'] = __('Coalesce');
|
|
}
|
|
|
|
return $choices;
|
|
}
|
|
|
|
/**
|
|
* @param array $urlParams Array of url parameters.
|
|
* @param bool $hasRelationFeature If relation feature is enabled.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getForeignersForReferentialIntegrityCheck(
|
|
array $urlParams,
|
|
$hasRelationFeature
|
|
): array {
|
|
if (! $hasRelationFeature) {
|
|
return [];
|
|
}
|
|
|
|
$foreigners = [];
|
|
$this->dbi->selectDb($GLOBALS['db']);
|
|
$foreign = $this->relation->getForeigners($GLOBALS['db'], $GLOBALS['table'], '', 'internal');
|
|
|
|
foreach ($foreign as $master => $arr) {
|
|
$joinQuery = 'SELECT '
|
|
. Util::backquote($GLOBALS['table']) . '.*'
|
|
. ' FROM ' . Util::backquote($GLOBALS['table'])
|
|
. ' LEFT JOIN '
|
|
. Util::backquote($arr['foreign_db'])
|
|
. '.'
|
|
. Util::backquote($arr['foreign_table']);
|
|
|
|
if ($arr['foreign_table'] == $GLOBALS['table']) {
|
|
$foreignTable = $GLOBALS['table'] . '1';
|
|
$joinQuery .= ' AS ' . Util::backquote($foreignTable);
|
|
} else {
|
|
$foreignTable = $arr['foreign_table'];
|
|
}
|
|
|
|
$joinQuery .= ' ON '
|
|
. Util::backquote($GLOBALS['table']) . '.'
|
|
. Util::backquote($master)
|
|
. ' = '
|
|
. Util::backquote($arr['foreign_db'])
|
|
. '.'
|
|
. Util::backquote($foreignTable) . '.'
|
|
. Util::backquote($arr['foreign_field'])
|
|
. ' WHERE '
|
|
. Util::backquote($arr['foreign_db'])
|
|
. '.'
|
|
. Util::backquote($foreignTable) . '.'
|
|
. Util::backquote($arr['foreign_field'])
|
|
. ' IS NULL AND '
|
|
. Util::backquote($GLOBALS['table']) . '.'
|
|
. Util::backquote($master)
|
|
. ' IS NOT NULL';
|
|
$thisUrlParams = array_merge(
|
|
$urlParams,
|
|
[
|
|
'sql_query' => $joinQuery,
|
|
'sql_signature' => Core::signSqlQuery($joinQuery),
|
|
]
|
|
);
|
|
|
|
$foreigners[] = [
|
|
'params' => $thisUrlParams,
|
|
'master' => $master,
|
|
'db' => $arr['foreign_db'],
|
|
'table' => $arr['foreign_table'],
|
|
'field' => $arr['foreign_field'],
|
|
];
|
|
}
|
|
|
|
return $foreigners;
|
|
}
|
|
|
|
/**
|
|
* Get table alters array
|
|
*
|
|
* @param Table $pmaTable The Table object
|
|
* @param string $packKeys pack keys
|
|
* @param string $checksum value of checksum
|
|
* @param string $pageChecksum value of page checksum
|
|
* @param string $delayKeyWrite delay key write
|
|
* @param string $rowFormat row format
|
|
* @param string $newTblStorageEngine table storage engine
|
|
* @param string $transactional value of transactional
|
|
* @param string $tableCollation collation of the table
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getTableAltersArray(
|
|
$pmaTable,
|
|
$packKeys,
|
|
$checksum,
|
|
$pageChecksum,
|
|
$delayKeyWrite,
|
|
$rowFormat,
|
|
$newTblStorageEngine,
|
|
$transactional,
|
|
$tableCollation
|
|
) {
|
|
$GLOBALS['auto_increment'] = $GLOBALS['auto_increment'] ?? null;
|
|
|
|
$tableAlters = [];
|
|
|
|
if (isset($_POST['comment']) && urldecode($_POST['prev_comment']) !== $_POST['comment']) {
|
|
$tableAlters[] = 'COMMENT = ' . $this->dbi->quoteString($_POST['comment']);
|
|
}
|
|
|
|
if (
|
|
! empty($newTblStorageEngine)
|
|
&& mb_strtolower($newTblStorageEngine) !== mb_strtolower($GLOBALS['tbl_storage_engine'])
|
|
) {
|
|
$tableAlters[] = 'ENGINE = ' . $newTblStorageEngine;
|
|
}
|
|
|
|
if (! empty($_POST['tbl_collation']) && $_POST['tbl_collation'] !== $tableCollation) {
|
|
$tableAlters[] = 'DEFAULT '
|
|
. Util::getCharsetQueryPart($_POST['tbl_collation']);
|
|
}
|
|
|
|
if (
|
|
$pmaTable->isEngine(['MYISAM', 'ARIA', 'ISAM'])
|
|
&& isset($_POST['new_pack_keys'])
|
|
&& $_POST['new_pack_keys'] != (string) $packKeys
|
|
) {
|
|
$tableAlters[] = 'pack_keys = ' . $_POST['new_pack_keys'];
|
|
}
|
|
|
|
$newChecksum = empty($_POST['new_checksum']) ? '0' : '1';
|
|
if ($pmaTable->isEngine(['MYISAM', 'ARIA']) && $newChecksum !== $checksum) {
|
|
$tableAlters[] = 'checksum = ' . $newChecksum;
|
|
}
|
|
|
|
$newTransactional = empty($_POST['new_transactional']) ? '0' : '1';
|
|
if ($pmaTable->isEngine('ARIA') && $newTransactional !== $transactional) {
|
|
$tableAlters[] = 'TRANSACTIONAL = ' . $newTransactional;
|
|
}
|
|
|
|
$newPageChecksum = empty($_POST['new_page_checksum']) ? '0' : '1';
|
|
if ($pmaTable->isEngine('ARIA') && $newPageChecksum !== $pageChecksum) {
|
|
$tableAlters[] = 'PAGE_CHECKSUM = ' . $newPageChecksum;
|
|
}
|
|
|
|
$newDelayKeyWrite = empty($_POST['new_delay_key_write']) ? '0' : '1';
|
|
if ($pmaTable->isEngine(['MYISAM', 'ARIA']) && $newDelayKeyWrite !== $delayKeyWrite) {
|
|
$tableAlters[] = 'delay_key_write = ' . $newDelayKeyWrite;
|
|
}
|
|
|
|
if (
|
|
$pmaTable->isEngine(['MYISAM', 'ARIA', 'INNODB', 'PBXT', 'ROCKSDB'])
|
|
&& ! empty($_POST['new_auto_increment'])
|
|
&& (! isset($GLOBALS['auto_increment'])
|
|
|| $_POST['new_auto_increment'] !== $GLOBALS['auto_increment'])
|
|
&& $_POST['new_auto_increment'] !== $_POST['hidden_auto_increment']
|
|
) {
|
|
$tableAlters[] = 'auto_increment = '
|
|
. $this->dbi->escapeString($_POST['new_auto_increment']);
|
|
}
|
|
|
|
if (! empty($_POST['new_row_format'])) {
|
|
$newRowFormat = $_POST['new_row_format'];
|
|
$newRowFormatLower = mb_strtolower($newRowFormat);
|
|
if (
|
|
$pmaTable->isEngine(['MYISAM', 'ARIA', 'INNODB', 'PBXT'])
|
|
&& (strlen($rowFormat) === 0
|
|
|| $newRowFormatLower !== mb_strtolower($rowFormat))
|
|
) {
|
|
$tableAlters[] = 'ROW_FORMAT = '
|
|
. $this->dbi->escapeString($newRowFormat);
|
|
}
|
|
}
|
|
|
|
return $tableAlters;
|
|
}
|
|
|
|
/**
|
|
* Get warning messages array
|
|
*
|
|
* @return string[]
|
|
*/
|
|
public function getWarningMessagesArray(): array
|
|
{
|
|
$warningMessages = [];
|
|
foreach ($this->dbi->getWarnings() as $warning) {
|
|
// In MariaDB 5.1.44, when altering a table from Maria to MyISAM
|
|
// and if TRANSACTIONAL was set, the system reports an error;
|
|
// I discussed with a Maria developer and he agrees that this
|
|
// should not be reported with a Level of Error, so here
|
|
// I just ignore it. But there are other 1478 messages
|
|
// that it's better to show.
|
|
if (
|
|
isset($_POST['new_tbl_storage_engine'])
|
|
&& $_POST['new_tbl_storage_engine'] === 'MyISAM'
|
|
&& $warning->code === 1478
|
|
&& $warning->level === 'Error'
|
|
) {
|
|
continue;
|
|
}
|
|
|
|
$warningMessages[] = (string) $warning;
|
|
}
|
|
|
|
return $warningMessages;
|
|
}
|
|
|
|
/**
|
|
* Adjust the privileges after renaming/moving a table
|
|
*
|
|
* @param string $oldDb Database name before table renaming/moving table
|
|
* @param string $oldTable Table name before table renaming/moving table
|
|
* @param string $newDb Database name after table renaming/ moving table
|
|
* @param string $newTable Table name after table renaming/moving table
|
|
*/
|
|
public function adjustPrivilegesRenameOrMoveTable($oldDb, $oldTable, $newDb, $newTable): void
|
|
{
|
|
if (! $GLOBALS['table_priv'] || ! $GLOBALS['col_priv'] || ! $GLOBALS['is_reload_priv']) {
|
|
return;
|
|
}
|
|
|
|
$this->dbi->selectDb('mysql');
|
|
|
|
// For table specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('tables_priv')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newDb)
|
|
. ', Table_name = ' . $this->dbi->quoteString($newTable)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb)
|
|
. ' AND Table_name = ' . $this->dbi->quoteString($oldTable)
|
|
. ';');
|
|
|
|
// For column specific privileges
|
|
$this->dbi->query('UPDATE ' . Util::backquote('columns_priv')
|
|
. 'SET Db = ' . $this->dbi->quoteString($newDb)
|
|
. ', Table_name = ' . $this->dbi->quoteString($newTable)
|
|
. ' where Db = ' . $this->dbi->quoteString($oldDb)
|
|
. ' AND Table_name = ' . $this->dbi->quoteString($oldTable)
|
|
. ';');
|
|
|
|
// Finally FLUSH the new privileges
|
|
$this->dbi->query('FLUSH PRIVILEGES;');
|
|
}
|
|
|
|
/**
|
|
* Adjust the privileges after copying a table
|
|
*
|
|
* @param string $oldDb Database name before table copying
|
|
* @param string $oldTable Table name before table copying
|
|
* @param string $newDb Database name after table copying
|
|
* @param string $newTable Table name after table copying
|
|
*/
|
|
public function adjustPrivilegesCopyTable($oldDb, $oldTable, $newDb, $newTable): void
|
|
{
|
|
if (! $GLOBALS['table_priv'] || ! $GLOBALS['col_priv'] || ! $GLOBALS['is_reload_priv']) {
|
|
return;
|
|
}
|
|
|
|
$this->dbi->selectDb('mysql');
|
|
|
|
// For Table Specific privileges
|
|
$queryTableSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('tables_priv') . ' where '
|
|
. 'Db = "' . $oldDb . '" AND Table_name = "' . $oldTable . '";';
|
|
|
|
$oldPrivsTable = $this->dbi->fetchResult($queryTableSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsTable as $oldPriv) {
|
|
$newDbTablePrivsQuery = 'INSERT INTO '
|
|
. Util::backquote('tables_priv') . ' VALUES("'
|
|
. $oldPriv[0] . '", "' . $newDb . '", "' . $oldPriv[2] . '", "'
|
|
. $newTable . '", "' . $oldPriv[4] . '", "' . $oldPriv[5]
|
|
. '", "' . $oldPriv[6] . '", "' . $oldPriv[7] . '");';
|
|
|
|
$this->dbi->query($newDbTablePrivsQuery);
|
|
}
|
|
|
|
// For Column Specific privileges
|
|
$queryColSpecificOld = 'SELECT * FROM '
|
|
. Util::backquote('columns_priv') . ' WHERE '
|
|
. 'Db = "' . $oldDb . '" AND Table_name = "' . $oldTable . '";';
|
|
|
|
$oldPrivsCol = $this->dbi->fetchResult($queryColSpecificOld, 0);
|
|
|
|
foreach ($oldPrivsCol as $oldPriv) {
|
|
$newDbColPrivsQuery = 'INSERT INTO '
|
|
. Util::backquote('columns_priv') . ' VALUES("'
|
|
. $oldPriv[0] . '", "' . $newDb . '", "' . $oldPriv[2] . '", "'
|
|
. $newTable . '", "' . $oldPriv[4] . '", "' . $oldPriv[5]
|
|
. '", "' . $oldPriv[6] . '");';
|
|
|
|
$this->dbi->query($newDbColPrivsQuery);
|
|
}
|
|
|
|
// Finally FLUSH the new privileges
|
|
$this->dbi->query('FLUSH PRIVILEGES;');
|
|
}
|
|
|
|
/**
|
|
* Change all collations and character sets of all columns in table
|
|
*
|
|
* @param string $db Database name
|
|
* @param string $table Table name
|
|
* @param string $tableCollation Collation Name
|
|
*/
|
|
public function changeAllColumnsCollation($db, $table, $tableCollation): void
|
|
{
|
|
$this->dbi->selectDb($db);
|
|
|
|
$changeAllCollationsQuery = 'ALTER TABLE '
|
|
. Util::backquote($table)
|
|
. ' CONVERT TO';
|
|
|
|
[$charset] = explode('_', $tableCollation);
|
|
|
|
$changeAllCollationsQuery .= ' CHARACTER SET ' . $charset
|
|
. ($charset == $tableCollation ? '' : ' COLLATE ' . $tableCollation);
|
|
|
|
$this->dbi->query($changeAllCollationsQuery);
|
|
}
|
|
|
|
/**
|
|
* Move or copy a table
|
|
*
|
|
* @param string $db current database name
|
|
* @param string $table current table name
|
|
*/
|
|
public function moveOrCopyTable($db, $table): Message
|
|
{
|
|
/**
|
|
* Selects the database to work with
|
|
*/
|
|
$this->dbi->selectDb($db);
|
|
|
|
/**
|
|
* $_POST['target_db'] could be empty in case we came from an input field
|
|
* (when there are many databases, no drop-down)
|
|
*/
|
|
$targetDb = $db;
|
|
if (isset($_POST['target_db']) && is_string($_POST['target_db']) && strlen($_POST['target_db']) > 0) {
|
|
$targetDb = $_POST['target_db'];
|
|
}
|
|
|
|
/**
|
|
* A target table name has been sent to this script -> do the work
|
|
*/
|
|
if (isset($_POST['new_name']) && is_scalar($_POST['new_name']) && strlen((string) $_POST['new_name']) > 0) {
|
|
if ($db == $targetDb && $table == $_POST['new_name']) {
|
|
if (isset($_POST['submit_move'])) {
|
|
$message = Message::error(__('Can\'t move table to same one!'));
|
|
} else {
|
|
$message = Message::error(__('Can\'t copy table to same one!'));
|
|
}
|
|
} else {
|
|
Table::moveCopy(
|
|
$db,
|
|
$table,
|
|
$targetDb,
|
|
(string) $_POST['new_name'],
|
|
$_POST['what'],
|
|
isset($_POST['submit_move']),
|
|
'one_table',
|
|
isset($_POST['drop_if_exists']) && $_POST['drop_if_exists'] === 'true'
|
|
);
|
|
|
|
if (isset($_POST['adjust_privileges']) && ! empty($_POST['adjust_privileges'])) {
|
|
if (isset($_POST['submit_move'])) {
|
|
$this->adjustPrivilegesRenameOrMoveTable($db, $table, $targetDb, (string) $_POST['new_name']);
|
|
} else {
|
|
$this->adjustPrivilegesCopyTable($db, $table, $targetDb, (string) $_POST['new_name']);
|
|
}
|
|
|
|
if (isset($_POST['submit_move'])) {
|
|
$message = Message::success(
|
|
__(
|
|
'Table %s has been moved to %s. Privileges have been adjusted.'
|
|
)
|
|
);
|
|
} else {
|
|
$message = Message::success(
|
|
__(
|
|
'Table %s has been copied to %s. Privileges have been adjusted.'
|
|
)
|
|
);
|
|
}
|
|
} else {
|
|
if (isset($_POST['submit_move'])) {
|
|
$message = Message::success(
|
|
__('Table %s has been moved to %s.')
|
|
);
|
|
} else {
|
|
$message = Message::success(
|
|
__('Table %s has been copied to %s.')
|
|
);
|
|
}
|
|
}
|
|
|
|
$old = Util::backquote($db) . '.'
|
|
. Util::backquote($table);
|
|
$message->addParam($old);
|
|
|
|
$newName = (string) $_POST['new_name'];
|
|
if ($this->dbi->getLowerCaseNames() === 1) {
|
|
$newName = strtolower($newName);
|
|
}
|
|
|
|
$GLOBALS['table'] = $newName;
|
|
|
|
$new = Util::backquote($targetDb) . '.'
|
|
. Util::backquote($newName);
|
|
$message->addParam($new);
|
|
}
|
|
} else {
|
|
/**
|
|
* No new name for the table!
|
|
*/
|
|
$message = Message::error(__('The table name is empty!'));
|
|
}
|
|
|
|
return $message;
|
|
}
|
|
}
|