688 lines
24 KiB
PHP
688 lines
24 KiB
PHP
<?php
|
|
/**
|
|
* Tracking changes on databases, tables and views
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tracking;
|
|
|
|
use PhpMyAdmin\Cache;
|
|
use PhpMyAdmin\ConfigStorage\Features\TrackingFeature;
|
|
use PhpMyAdmin\ConfigStorage\Relation;
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\Dbal\Connection;
|
|
use PhpMyAdmin\Plugins;
|
|
use PhpMyAdmin\Plugins\Export\ExportSql;
|
|
use PhpMyAdmin\SqlParser\Parser;
|
|
use PhpMyAdmin\SqlParser\Statements\AlterStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\CreateStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\DeleteStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\DropStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\InsertStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\RenameStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\TruncateStatement;
|
|
use PhpMyAdmin\SqlParser\Statements\UpdateStatement;
|
|
use PhpMyAdmin\Util;
|
|
|
|
use function array_values;
|
|
use function count;
|
|
use function intval;
|
|
use function mb_strstr;
|
|
use function preg_quote;
|
|
use function preg_replace;
|
|
use function serialize;
|
|
use function sprintf;
|
|
use function substr;
|
|
use function trim;
|
|
|
|
/**
|
|
* This class tracks changes on databases, tables and views.
|
|
*
|
|
* @todo use stristr instead of strstr
|
|
*/
|
|
class Tracker
|
|
{
|
|
public const TRACKER_ENABLED_CACHE_KEY = 'phpmyadmin.tracker.enabled';
|
|
|
|
/**
|
|
* Cache to avoid quering tracking status multiple times.
|
|
*
|
|
* @var mixed[]
|
|
*/
|
|
protected static array $trackingCache = [];
|
|
|
|
/**
|
|
* Actually enables tracking. This needs to be done after all
|
|
* underlaying code is initialized.
|
|
*/
|
|
public static function enable(): void
|
|
{
|
|
Cache::set(self::TRACKER_ENABLED_CACHE_KEY, true);
|
|
}
|
|
|
|
/**
|
|
* Gets the on/off value of the Tracker module, starts initialization.
|
|
*/
|
|
public static function isActive(): bool
|
|
{
|
|
$trackingEnabled = Cache::get(self::TRACKER_ENABLED_CACHE_KEY, false);
|
|
if (! $trackingEnabled) {
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* We need to avoid attempt to track any queries from {@link Relation::getRelationParameters()}
|
|
*/
|
|
Cache::set(self::TRACKER_ENABLED_CACHE_KEY, false);
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$relationParameters = $relation->getRelationParameters();
|
|
/* Restore original state */
|
|
Cache::set(self::TRACKER_ENABLED_CACHE_KEY, true);
|
|
|
|
return $relationParameters->trackingFeature !== null;
|
|
}
|
|
|
|
/**
|
|
* Gets the tracking status of a table, is it active or disabled ?
|
|
*
|
|
* @param string $dbName name of database
|
|
* @param string $tableName name of table
|
|
*/
|
|
public static function isTracked(string $dbName, string $tableName): bool
|
|
{
|
|
$trackingEnabled = Cache::get(self::TRACKER_ENABLED_CACHE_KEY, false);
|
|
if (! $trackingEnabled) {
|
|
return false;
|
|
}
|
|
|
|
if (isset(self::$trackingCache[$dbName][$tableName])) {
|
|
return self::$trackingCache[$dbName][$tableName];
|
|
}
|
|
|
|
/**
|
|
* We need to avoid attempt to track any queries from {@link Relation::getRelationParameters()}
|
|
*/
|
|
Cache::set(self::TRACKER_ENABLED_CACHE_KEY, false);
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
/* Restore original state */
|
|
Cache::set(self::TRACKER_ENABLED_CACHE_KEY, true);
|
|
if ($trackingFeature === null) {
|
|
return false;
|
|
}
|
|
|
|
$sqlQuery = sprintf(
|
|
'SELECT tracking_active FROM %s.%s WHERE db_name = %s AND table_name = %s'
|
|
. ' ORDER BY version DESC LIMIT 1',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$GLOBALS['dbi']->quoteString($dbName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($tableName, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
$result = $GLOBALS['dbi']->fetchValue($sqlQuery, 0, Connection::TYPE_CONTROL) == 1;
|
|
|
|
self::$trackingCache[$dbName][$tableName] = $result;
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Returns the comment line for the log.
|
|
*
|
|
* @return string Comment, contains date and username
|
|
*/
|
|
public static function getLogComment(): string
|
|
{
|
|
$date = Util::date('Y-m-d H:i:s');
|
|
$user = preg_replace('/\s+/', ' ', $GLOBALS['cfg']['Server']['user']);
|
|
|
|
return '# log ' . $date . ' ' . $user . "\n";
|
|
}
|
|
|
|
/**
|
|
* Creates tracking version of a table / view
|
|
* (in other words: create a job to track future changes on the table).
|
|
*
|
|
* @param string $dbName name of database
|
|
* @param string $tableName name of table
|
|
* @param string $version version
|
|
* @param string $trackingSet set of tracking statements
|
|
* @param bool $isView if table is a view
|
|
*/
|
|
public static function createVersion(
|
|
string $dbName,
|
|
string $tableName,
|
|
string $version,
|
|
string $trackingSet = '',
|
|
bool $isView = false,
|
|
): bool {
|
|
$GLOBALS['export_type'] ??= null;
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
|
|
if ($trackingSet == '') {
|
|
$trackingSet = $GLOBALS['cfg']['Server']['tracking_default_statements'];
|
|
}
|
|
|
|
$exportSqlPlugin = Plugins::getPlugin('export', 'sql', [
|
|
'export_type' => (string) $GLOBALS['export_type'],
|
|
'single_table' => false,
|
|
]);
|
|
if (! $exportSqlPlugin instanceof ExportSql) {
|
|
return false;
|
|
}
|
|
|
|
$exportSqlPlugin->useSqlBackquotes(true);
|
|
|
|
$date = Util::date('Y-m-d H:i:s');
|
|
|
|
// Get data definition snapshot of table
|
|
|
|
$columns = $GLOBALS['dbi']->getColumns($dbName, $tableName, true);
|
|
// int indices to reduce size
|
|
$columns = array_values($columns);
|
|
// remove Privileges to reduce size
|
|
/** @infection-ignore-all */
|
|
for ($i = 0, $nb = count($columns); $i < $nb; $i++) {
|
|
unset($columns[$i]['Privileges']);
|
|
}
|
|
|
|
$indexes = $GLOBALS['dbi']->getTableIndexes($dbName, $tableName);
|
|
|
|
$snapshot = ['COLUMNS' => $columns, 'INDEXES' => $indexes];
|
|
$snapshot = serialize($snapshot);
|
|
|
|
// Get DROP TABLE / DROP VIEW and CREATE TABLE SQL statements
|
|
$createSql = '';
|
|
|
|
if ($GLOBALS['cfg']['Server']['tracking_add_drop_table'] == true && ! $isView) {
|
|
$createSql .= self::getLogComment()
|
|
. 'DROP TABLE IF EXISTS ' . Util::backquote($tableName) . ";\n";
|
|
}
|
|
|
|
if ($GLOBALS['cfg']['Server']['tracking_add_drop_view'] == true && $isView) {
|
|
$createSql .= self::getLogComment()
|
|
. 'DROP VIEW IF EXISTS ' . Util::backquote($tableName) . ";\n";
|
|
}
|
|
|
|
$createSql .= self::getLogComment() . $exportSqlPlugin->getTableDef($dbName, $tableName);
|
|
|
|
// Save version
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return false;
|
|
}
|
|
|
|
$sqlQuery = sprintf(
|
|
'/*NOTRACK*/' . "\n" . 'INSERT INTO %s.%s (db_name, table_name, version,'
|
|
. ' date_created, date_updated, schema_snapshot, schema_sql, data_sql, tracking)'
|
|
. ' values (%s, %s, %s, %s, %s, %s, %s, %s, %s)',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$GLOBALS['dbi']->quoteString($dbName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($tableName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($version, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($date, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($date, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($snapshot, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($createSql, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString("\n", Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($trackingSet, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
$GLOBALS['dbi']->queryAsControlUser($sqlQuery);
|
|
|
|
// Deactivate previous version
|
|
return self::deactivateTracking($dbName, $tableName, (string) ((int) $version - 1));
|
|
}
|
|
|
|
/**
|
|
* Creates tracking version of a database
|
|
* (in other words: create a job to track future changes on the database).
|
|
*
|
|
* @param string $dbName name of database
|
|
* @param string $version version
|
|
* @param string $query query
|
|
* @param string $trackingSet set of tracking statements
|
|
*/
|
|
public static function createDatabaseVersion(
|
|
string $dbName,
|
|
string $version,
|
|
string $query,
|
|
string $trackingSet = 'CREATE DATABASE,ALTER DATABASE,DROP DATABASE',
|
|
): bool {
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
|
|
$date = Util::date('Y-m-d H:i:s');
|
|
|
|
if ($trackingSet == '') {
|
|
$trackingSet = $GLOBALS['cfg']['Server']['tracking_default_statements'];
|
|
}
|
|
|
|
$createSql = '';
|
|
|
|
if ($GLOBALS['cfg']['Server']['tracking_add_drop_database'] == true) {
|
|
$createSql .= self::getLogComment() . 'DROP DATABASE IF EXISTS ' . Util::backquote($dbName) . ";\n";
|
|
}
|
|
|
|
$createSql .= self::getLogComment() . $query;
|
|
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return false;
|
|
}
|
|
|
|
// Save version
|
|
$sqlQuery = sprintf(
|
|
'/*NOTRACK*/' . "\n" . 'INSERT INTO %s.%s (db_name, table_name, version,'
|
|
. ' date_created, date_updated, schema_snapshot, schema_sql, data_sql, tracking)'
|
|
. ' values (%s, %s, %s, %s, %s, %s, %s, %s, %s)',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$GLOBALS['dbi']->quoteString($dbName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString('', Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($version, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($date, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($date, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString('', Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($createSql, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString("\n", Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($trackingSet, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
return (bool) $GLOBALS['dbi']->queryAsControlUser($sqlQuery);
|
|
}
|
|
|
|
/**
|
|
* Changes tracking of a table.
|
|
*
|
|
* @param string $dbName name of database
|
|
* @param string $tableName name of table
|
|
* @param string $version version
|
|
* @param int $newState the new state of tracking
|
|
*/
|
|
private static function changeTracking(
|
|
string $dbName,
|
|
string $tableName,
|
|
string $version,
|
|
int $newState,
|
|
): bool {
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return false;
|
|
}
|
|
|
|
$sqlQuery = sprintf(
|
|
'UPDATE %s.%s SET `tracking_active` = %d'
|
|
. ' WHERE `db_name` = %s AND `table_name` = %s AND `version` = %s',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$newState,
|
|
$GLOBALS['dbi']->quoteString($dbName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($tableName, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($version, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
return (bool) $GLOBALS['dbi']->queryAsControlUser($sqlQuery);
|
|
}
|
|
|
|
/**
|
|
* Activates tracking of a table.
|
|
*
|
|
* @param string $dbname name of database
|
|
* @param string $tablename name of table
|
|
* @param string $version version
|
|
*/
|
|
public static function activateTracking(string $dbname, string $tablename, string $version): bool
|
|
{
|
|
return self::changeTracking($dbname, $tablename, $version, 1);
|
|
}
|
|
|
|
/**
|
|
* Deactivates tracking of a table.
|
|
*
|
|
* @param string $dbname name of database
|
|
* @param string $tablename name of table
|
|
* @param string $version version
|
|
*/
|
|
public static function deactivateTracking(string $dbname, string $tablename, string $version): bool
|
|
{
|
|
return self::changeTracking($dbname, $tablename, $version, 0);
|
|
}
|
|
|
|
/**
|
|
* Gets the newest version of a tracking job
|
|
* (in other words: gets the HEAD version).
|
|
*
|
|
* @param string $dbname name of database
|
|
* @param string $tablename name of table
|
|
* @param string $statement tracked statement
|
|
*
|
|
* @return int (-1 if no version exists | > 0 if a version exists)
|
|
*/
|
|
private static function getVersion(string $dbname, string $tablename, string|null $statement = null): int
|
|
{
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return -1;
|
|
}
|
|
|
|
$sqlQuery = sprintf(
|
|
'SELECT MAX(version) FROM %s.%s WHERE `db_name` = %s AND `table_name` = %s',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$GLOBALS['dbi']->quoteString($dbname, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($tablename, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
if ($statement != '') {
|
|
$sqlQuery .= " AND FIND_IN_SET('" . $statement . "',tracking) > 0";
|
|
}
|
|
|
|
$result = $GLOBALS['dbi']->tryQueryAsControlUser($sqlQuery);
|
|
|
|
if ($result === false) {
|
|
return -1;
|
|
}
|
|
|
|
$row = $result->fetchRow();
|
|
|
|
return intval($row[0] ?? -1);
|
|
}
|
|
|
|
/**
|
|
* Parses a query. Gets
|
|
* - statement identifier (UPDATE, ALTER TABLE, ...)
|
|
* - type of statement, is it part of DDL or DML ?
|
|
* - tablename
|
|
*
|
|
* @param string $query query
|
|
*
|
|
* @return mixed[] containing identifier, type and tablename.
|
|
*
|
|
* @todo: using PMA SQL Parser when possible
|
|
* @todo: support multi-table/view drops
|
|
*/
|
|
public static function parseQuery(string $query): array
|
|
{
|
|
// Usage of PMA_SQP does not work here
|
|
//
|
|
// require_once("libraries/sqlparser.lib.php");
|
|
// $parsed_sql = PMA_SQP_parse($query);
|
|
// $sql_info = PMA_SQP_analyze($parsed_sql);
|
|
|
|
$parser = new Parser($query);
|
|
|
|
$tokens = $parser->list->tokens;
|
|
|
|
// Parse USE statement, need it for SQL dump imports
|
|
if ($tokens[0]->value === 'USE') {
|
|
$GLOBALS['db'] = $tokens[2]->value;
|
|
}
|
|
|
|
$result = [];
|
|
|
|
if ($parser->statements !== []) {
|
|
$statement = $parser->statements[0];
|
|
$options = $statement->options?->options;
|
|
|
|
// DDL statements
|
|
$result['type'] = 'DDL';
|
|
|
|
// Parse CREATE statement
|
|
if ($statement instanceof CreateStatement) {
|
|
if ($options === null || $options === [] || ! isset($options[6])) {
|
|
return $result;
|
|
}
|
|
|
|
if ($options[6] === 'VIEW' || $options[6] === 'TABLE') {
|
|
$result['identifier'] = 'CREATE ' . $options[6];
|
|
$result['tablename'] = $statement->name?->table;
|
|
} elseif ($options[6] === 'DATABASE') {
|
|
$result['identifier'] = 'CREATE DATABASE';
|
|
$result['tablename'] = '';
|
|
|
|
// In case of CREATE DATABASE, database field of the CreateStatement is the name of the database
|
|
$GLOBALS['db'] = $statement->name?->database;
|
|
} elseif (
|
|
$options[6] === 'INDEX'
|
|
|| $options[6] === 'UNIQUE INDEX'
|
|
|| $options[6] === 'FULLTEXT INDEX'
|
|
|| $options[6] === 'SPATIAL INDEX'
|
|
) {
|
|
$result['identifier'] = 'CREATE INDEX';
|
|
|
|
// In case of CREATE INDEX, we have to get the table name from body of the statement
|
|
$result['tablename'] = $statement->body[3]->value === '.' ? $statement->body[4]->value
|
|
: $statement->body[2]->value;
|
|
}
|
|
} elseif ($statement instanceof AlterStatement) { // Parse ALTER statement
|
|
if ($options === null || $options === [] || ! isset($options[3])) {
|
|
return $result;
|
|
}
|
|
|
|
if ($options[3] === 'VIEW' || $options[3] === 'TABLE') {
|
|
$result['identifier'] = 'ALTER ' . $options[3];
|
|
$result['tablename'] = $statement->table->table;
|
|
} elseif ($options[3] === 'DATABASE') {
|
|
$result['identifier'] = 'ALTER DATABASE';
|
|
$result['tablename'] = '';
|
|
|
|
$GLOBALS['db'] = $statement->table->table;
|
|
}
|
|
} elseif ($statement instanceof DropStatement) { // Parse DROP statement
|
|
if ($options === null || $options === [] || ! isset($options[1])) {
|
|
return $result;
|
|
}
|
|
|
|
if ($options[1] === 'VIEW' || $options[1] === 'TABLE') {
|
|
$result['identifier'] = 'DROP ' . $options[1];
|
|
$result['tablename'] = $statement->fields[0]->table;
|
|
} elseif ($options[1] === 'DATABASE') {
|
|
$result['identifier'] = 'DROP DATABASE';
|
|
$result['tablename'] = '';
|
|
|
|
$GLOBALS['db'] = $statement->fields[0]->table;
|
|
} elseif ($options[1] === 'INDEX') {
|
|
$result['identifier'] = 'DROP INDEX';
|
|
$result['tablename'] = $statement->table->table;
|
|
}
|
|
} elseif ($statement instanceof RenameStatement) { // Parse RENAME statement
|
|
$result['identifier'] = 'RENAME TABLE';
|
|
$result['tablename'] = $statement->renames[0]->old->table;
|
|
$result['tablename_after_rename'] = $statement->renames[0]->new->table;
|
|
}
|
|
|
|
if (isset($result['identifier'])) {
|
|
return $result;
|
|
}
|
|
|
|
// DML statements
|
|
$result['type'] = 'DML';
|
|
|
|
// Parse UPDATE statement
|
|
if ($statement instanceof UpdateStatement) {
|
|
$result['identifier'] = 'UPDATE';
|
|
$result['tablename'] = $statement->tables[0]->table;
|
|
}
|
|
|
|
// Parse INSERT INTO statement
|
|
if ($statement instanceof InsertStatement) {
|
|
$result['identifier'] = 'INSERT';
|
|
$result['tablename'] = $statement->into->dest->table;
|
|
}
|
|
|
|
// Parse DELETE statement
|
|
if ($statement instanceof DeleteStatement) {
|
|
$result['identifier'] = 'DELETE';
|
|
$result['tablename'] = $statement->from[0]->table;
|
|
}
|
|
|
|
// Parse TRUNCATE statement
|
|
if ($statement instanceof TruncateStatement) {
|
|
$result['identifier'] = 'TRUNCATE';
|
|
$result['tablename'] = $statement->table->table;
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Analyzes a given SQL statement and saves tracking data.
|
|
*
|
|
* @param string $query a SQL query
|
|
*/
|
|
public static function handleQuery(string $query): void
|
|
{
|
|
// If query is marked as untouchable, leave
|
|
if (mb_strstr($query, '/*NOTRACK*/')) {
|
|
return;
|
|
}
|
|
|
|
if (substr($query, -1) !== ';') {
|
|
$query .= ";\n";
|
|
}
|
|
|
|
// Get database name
|
|
$dbname = trim($GLOBALS['db'] ?? '', '`');
|
|
// $dbname can be empty, for example when coming from Synchronize
|
|
// and this is a query for the remote server
|
|
if ($dbname === '') {
|
|
return;
|
|
}
|
|
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return;
|
|
}
|
|
|
|
if (! self::isAnyTrackingInProgress($GLOBALS['dbi'], $trackingFeature, $dbname)) {
|
|
return;
|
|
}
|
|
|
|
// Get some information about query
|
|
$result = self::parseQuery($query);
|
|
|
|
// If we found a valid statement
|
|
if (! isset($result['identifier'])) {
|
|
return;
|
|
}
|
|
|
|
// The table name was not found, see issue: #16837 as an example
|
|
// Also checks if the value is not null
|
|
if (! isset($result['tablename'])) {
|
|
return;
|
|
}
|
|
|
|
$version = self::getVersion($dbname, $result['tablename'], $result['identifier']);
|
|
|
|
// If version not exists and auto-creation is enabled
|
|
if ($GLOBALS['cfg']['Server']['tracking_version_auto_create'] == true && $version == -1) {
|
|
// Create the version
|
|
|
|
switch ($result['identifier']) {
|
|
case 'CREATE TABLE':
|
|
self::createVersion($dbname, $result['tablename'], '1');
|
|
break;
|
|
case 'CREATE VIEW':
|
|
self::createVersion($dbname, $result['tablename'], '1', '', true);
|
|
break;
|
|
case 'CREATE DATABASE':
|
|
self::createDatabaseVersion($dbname, '1', $query);
|
|
break;
|
|
}
|
|
}
|
|
|
|
// If version exists
|
|
if ($version == -1) {
|
|
return;
|
|
}
|
|
|
|
if (! self::isTracked($dbname, $result['tablename'])) {
|
|
return;
|
|
}
|
|
|
|
if ($result['type'] === 'DDL') {
|
|
$saveTo = 'schema_sql';
|
|
} elseif ($result['type'] === 'DML') {
|
|
$saveTo = 'data_sql';
|
|
} else {
|
|
$saveTo = '';
|
|
}
|
|
|
|
$date = Util::date('Y-m-d H:i:s');
|
|
|
|
// Cut off `dbname`. from query
|
|
$query = preg_replace(
|
|
'/`' . preg_quote($dbname, '/') . '`\s?\./',
|
|
'',
|
|
$query,
|
|
);
|
|
|
|
// Add log information
|
|
$query = self::getLogComment() . $query;
|
|
|
|
$relation = new Relation($GLOBALS['dbi']);
|
|
$trackingFeature = $relation->getRelationParameters()->trackingFeature;
|
|
if ($trackingFeature === null) {
|
|
return;
|
|
}
|
|
|
|
// Mark it as untouchable
|
|
$sqlQuery = sprintf(
|
|
'/*NOTRACK*/' . "\n" . 'UPDATE %s.%s SET %s = CONCAT(%s, %s), `date_updated` = %s',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
Util::backquote($saveTo),
|
|
Util::backquote($saveTo),
|
|
$GLOBALS['dbi']->quoteString("\n" . $query, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($date, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
// If table was renamed we have to change
|
|
// the tablename attribute in pma_tracking too
|
|
if ($result['identifier'] === 'RENAME TABLE') {
|
|
$sqlQuery .= ', `table_name` = '
|
|
. $GLOBALS['dbi']->quoteString($result['tablename_after_rename'], Connection::TYPE_CONTROL)
|
|
. ' ';
|
|
}
|
|
|
|
// Save the tracking information only for
|
|
// 1. the database
|
|
// 2. the table / view
|
|
// 3. the statements
|
|
// we want to track
|
|
$sqlQuery .= sprintf(
|
|
" WHERE FIND_IN_SET('" . $result['identifier'] . "',tracking) > 0" .
|
|
' AND `db_name` = %s ' .
|
|
' AND `table_name` = %s ' .
|
|
' AND `version` = %s ',
|
|
$GLOBALS['dbi']->quoteString($dbname, Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString($result['tablename'], Connection::TYPE_CONTROL),
|
|
$GLOBALS['dbi']->quoteString((string) $version, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
$GLOBALS['dbi']->queryAsControlUser($sqlQuery);
|
|
}
|
|
|
|
private static function isAnyTrackingInProgress(
|
|
DatabaseInterface $dbi,
|
|
TrackingFeature $trackingFeature,
|
|
string $dbname,
|
|
): bool {
|
|
$sqlQuery = sprintf(
|
|
'/*NOTRACK*/ SELECT 1 FROM %s.%s WHERE tracking_active = 1 AND db_name = %s LIMIT 1',
|
|
Util::backquote($trackingFeature->database),
|
|
Util::backquote($trackingFeature->tracking),
|
|
$dbi->quoteString($dbname, Connection::TYPE_CONTROL),
|
|
);
|
|
|
|
return $dbi->queryAsControlUser($sqlQuery)->fetchValue() !== false;
|
|
}
|
|
}
|