57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Controllers\Server\Status\Monitor;
|
|
|
|
use PhpMyAdmin\Controllers\Server\Status\AbstractController;
|
|
use PhpMyAdmin\DatabaseInterface;
|
|
use PhpMyAdmin\ResponseRenderer;
|
|
use PhpMyAdmin\Server\Status\Data;
|
|
use PhpMyAdmin\Server\Status\Monitor;
|
|
use PhpMyAdmin\Template;
|
|
use PhpMyAdmin\Url;
|
|
|
|
final class ChartingDataController extends AbstractController
|
|
{
|
|
/** @var Monitor */
|
|
private $monitor;
|
|
|
|
/** @var DatabaseInterface */
|
|
private $dbi;
|
|
|
|
public function __construct(
|
|
ResponseRenderer $response,
|
|
Template $template,
|
|
Data $data,
|
|
Monitor $monitor,
|
|
DatabaseInterface $dbi
|
|
) {
|
|
parent::__construct($response, $template, $data);
|
|
$this->monitor = $monitor;
|
|
$this->dbi = $dbi;
|
|
}
|
|
|
|
public function __invoke(): void
|
|
{
|
|
global $errorUrl;
|
|
|
|
$params = ['requiredData' => $_POST['requiredData'] ?? null];
|
|
$errorUrl = Url::getFromRoute('/');
|
|
|
|
if ($this->dbi->isSuperUser()) {
|
|
$this->dbi->selectDb('mysql');
|
|
}
|
|
|
|
if (! $this->response->isAjax()) {
|
|
return;
|
|
}
|
|
|
|
$this->response->addJSON([
|
|
'message' => $this->monitor->getJsonForChartingData(
|
|
$params['requiredData'] ?? ''
|
|
),
|
|
]);
|
|
}
|
|
}
|