You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
2 years ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace PhpMyAdmin\Controllers\Table\Partition;
|
||
|
|
||
|
use PhpMyAdmin\Controllers\Table\AbstractController;
|
||
|
use PhpMyAdmin\Dbal\DatabaseName;
|
||
|
use PhpMyAdmin\Dbal\TableName;
|
||
|
use PhpMyAdmin\Html\Generator;
|
||
|
use PhpMyAdmin\Http\ServerRequest;
|
||
|
use PhpMyAdmin\Message;
|
||
|
use PhpMyAdmin\Partitioning\Maintenance;
|
||
|
use PhpMyAdmin\ResponseRenderer;
|
||
|
use PhpMyAdmin\Template;
|
||
|
use Webmozart\Assert\Assert;
|
||
|
use Webmozart\Assert\InvalidArgumentException;
|
||
|
|
||
|
use function __;
|
||
|
|
||
|
final class OptimizeController extends AbstractController
|
||
|
{
|
||
|
/** @var Maintenance */
|
||
|
private $model;
|
||
|
|
||
|
public function __construct(
|
||
|
ResponseRenderer $response,
|
||
|
Template $template,
|
||
|
string $db,
|
||
|
string $table,
|
||
|
Maintenance $maintenance
|
||
|
) {
|
||
|
parent::__construct($response, $template, $db, $table);
|
||
|
$this->model = $maintenance;
|
||
|
}
|
||
|
|
||
|
public function __invoke(ServerRequest $request): void
|
||
|
{
|
||
|
$partitionName = $request->getParsedBodyParam('partition_name');
|
||
|
|
||
|
try {
|
||
|
Assert::stringNotEmpty($partitionName);
|
||
|
$database = DatabaseName::fromValue($request->getParam('db'));
|
||
|
$table = TableName::fromValue($request->getParam('table'));
|
||
|
} catch (InvalidArgumentException $exception) {
|
||
|
$message = Message::error($exception->getMessage());
|
||
|
$this->response->addHTML($message->getDisplay());
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
[$rows, $query] = $this->model->optimize($database, $table, $partitionName);
|
||
|
|
||
|
$message = Generator::getMessage(
|
||
|
__('Your SQL query has been executed successfully.'),
|
||
|
$query,
|
||
|
'success'
|
||
|
);
|
||
|
|
||
|
$this->render('table/partition/optimize', [
|
||
|
'partition_name' => $partitionName,
|
||
|
'message' => $message,
|
||
|
'rows' => $rows,
|
||
|
]);
|
||
|
}
|
||
|
}
|