phpmyadmin/libraries/classes/Controllers/Sql/SetValuesController.php
Kamil Tekiela 959849f446
Introduce ServerRequest::hasBodyParam() (#17870)
* Drop Sql::setUiProp()
* Remove ternary operator
* Improve array guard
* Remove redundant isset
* Implement hasBodyParam()
* Add has() and hasQueryParam()

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2022-11-05 13:04:45 -03:00

79 lines
2.2 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Sql;
use PhpMyAdmin\CheckUserPrivileges;
use PhpMyAdmin\Controllers\AbstractController;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\Sql;
use PhpMyAdmin\Template;
use function __;
use function htmlentities;
use const ENT_COMPAT;
final class SetValuesController extends AbstractController
{
/** @var Sql */
private $sql;
/** @var CheckUserPrivileges */
private $checkUserPrivileges;
public function __construct(
ResponseRenderer $response,
Template $template,
Sql $sql,
CheckUserPrivileges $checkUserPrivileges
) {
parent::__construct($response, $template);
$this->sql = $sql;
$this->checkUserPrivileges = $checkUserPrivileges;
}
/**
* Get possible values for SET fields during grid edit.
*/
public function __invoke(ServerRequest $request): void
{
$this->checkUserPrivileges->getPrivileges();
$column = $request->getParsedBodyParam('column');
$currentValue = $request->getParsedBodyParam('curr_value');
$whereClause = $request->getParsedBodyParam('where_clause');
$values = $this->sql->getValuesForColumn($GLOBALS['db'], $GLOBALS['table'], $column);
if ($values === null) {
$this->response->addJSON('message', __('Error in processing request'));
$this->response->setRequestStatus(false);
return;
}
// If the $currentValue was truncated, we should fetch the correct full values from the table.
if ($request->hasBodyParam('get_full_values') && ! empty($whereClause)) {
$currentValue = $this->sql->getFullValuesForSetColumn(
$GLOBALS['db'],
$GLOBALS['table'],
$column,
$whereClause
);
}
// Converts characters of $currentValue to HTML entities.
$convertedCurrentValue = htmlentities($currentValue, ENT_COMPAT, 'UTF-8');
$select = $this->template->render('sql/set_column', [
'values' => $values,
'current_values' => $convertedCurrentValue,
]);
$this->response->addJSON('select', $select);
}
}