-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathValidateController.php
More file actions
76 lines (63 loc) · 2.34 KB
/
ValidateController.php
File metadata and controls
76 lines (63 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Setup;
use Fig\Http\Message\StatusCodeInterface;
use PhpMyAdmin\Config;
use PhpMyAdmin\Config\Validator;
use PhpMyAdmin\Controllers\InvocableController;
use PhpMyAdmin\Core;
use PhpMyAdmin\Current;
use PhpMyAdmin\Http\Factory\ResponseFactory;
use PhpMyAdmin\Http\Response;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\Setup\SetupHelper;
use PhpMyAdmin\Template;
use function __;
use function explode;
use function file_exists;
use function implode;
use function is_array;
use function json_decode;
use function json_encode;
use function sprintf;
use const CONFIG_FILE;
final readonly class ValidateController implements InvocableController
{
public function __construct(
private ResponseFactory $responseFactory,
private Template $template,
private Config $config,
) {
}
public function __invoke(ServerRequest $request): Response
{
if (@file_exists(CONFIG_FILE) && ! $this->config->config->debug->demo) {
$response = $this->responseFactory->createResponse(StatusCodeInterface::STATUS_NOT_FOUND);
return $response->write($this->template->render('error/generic', [
'lang' => Current::$lang,
'error_message' => __('Configuration already exists, setup is disabled!'),
]));
}
$response = $this->responseFactory->createResponse();
foreach (Core::headerJSON() as $name => $value) {
$response = $response->withHeader($name, $value);
}
$id = $request->getParsedBodyParamAsString('id', '');
$vids = explode(',', $id);
$valuesParam = $request->getParsedBodyParamAsString('values', '');
$values = json_decode($valuesParam, true);
if (! is_array($values)) {
return $response->write((string) json_encode(['success' => false, 'message' => __('Wrong data')]));
}
$configFile = SetupHelper::createConfigFile();
$validator = new Validator($configFile);
$result = $validator->validate($vids, $values, true);
if ($result === false) {
$result = sprintf(
__('Wrong data or no validation for %s'),
implode(',', $vids),
);
}
return $response->write($result !== true ? (string) json_encode($result) : '');
}
}