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.
66 lines
1.8 KiB
66 lines
1.8 KiB
<?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 RepairController 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->repair($database, $table, $partitionName); |
|
|
|
$message = Generator::getMessage( |
|
__('Your SQL query has been executed successfully.'), |
|
$query, |
|
'success' |
|
); |
|
|
|
$this->render('table/partition/repair', [ |
|
'partition_name' => $partitionName, |
|
'message' => $message, |
|
'rows' => $rows, |
|
]); |
|
} |
|
}
|
|
|