TYPO3 CMS  TYPO3_8-7
ElementBasedValidator.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
20 
25 {
26 
39  array $currentElement,
40  $value,
41  string $sessionToken,
42  ValidationDto $dto
43  ) {
44  $hmacDataPath = $this->buildHmacDataPath($dto->getPropertyPath());
45  if (ArrayUtility::isValidPath($currentElement, $hmacDataPath, '.')) {
46  $hmacData = ArrayUtility::getValueByPath($currentElement, $hmacDataPath, '.');
47 
48  $hmacContent = [$dto->getFormElementIdentifier(), $dto->getPropertyPath()];
49  if (!$this->getFormDefinitionValidationService()->isPropertyValueEqualToHistoricalValue($hmacContent, $value, $hmacData, $sessionToken)) {
50  $message = 'The value "%s" of property "%s" (form element "%s") is not equal to the historical value "%s" #1528588036';
51  throw new PropertyException(
52  sprintf(
53  $message,
54  $value,
55  $dto->getPropertyPath(),
57  $hmacData['value'] ?? ''
58  ),
59  1528588036
60  );
61  }
62  } else {
63  $message = 'No hmac found for property "%s" (form element "%s") #1528588037';
64  throw new PropertyException(
65  sprintf($message, $dto->getPropertyPath(), $dto->getFormElementIdentifier()),
66  1528588037
67  );
68  }
69  }
70 }
static getValueByPath(array $array, $path, $delimiter='/')
static isValidPath(array $array, $path, $delimiter='/')
validateFormElementPropertyValueByHmacData(array $currentElement, $value, string $sessionToken, ValidationDto $dto)