Files
cms-extbase/Classes/Validation/Validator/AbstractCompositeValidator.php
T

146 lines
4.3 KiB
PHP

<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Extbase\Validation\Validator;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Extbase\Validation\Exception\InvalidValidationOptionsException;
use TYPO3\CMS\Extbase\Validation\Exception\NoSuchValidatorException;
/**
* An abstract composite validator consisting of other validators
*/
abstract class AbstractCompositeValidator implements ObjectValidatorInterface, \Countable
{
/**
* This contains the supported options, their default values and descriptions.
*
* @var array
*/
protected $supportedOptions = [];
protected array $options = [];
/**
* @var \SplObjectStorage<ValidatorInterface>
*/
protected \SplObjectStorage $validators;
protected ?ServerRequestInterface $request = null;
protected \SplObjectStorage $validatedInstancesContainer;
public function setOptions(array $options): void
{
$this->initializeDefaultOptions($options);
}
/**
* Adds a new validator to the composition.
*/
public function addValidator(ValidatorInterface $validator): void
{
$this->validators->offsetSet($validator);
}
public function getRequest(): ?ServerRequestInterface
{
return $this->request;
}
public function setRequest(?ServerRequestInterface $request): void
{
$this->request = $request;
}
/**
* Removes the specified validator.
*
* @throws NoSuchValidatorException
*/
public function removeValidator(ValidatorInterface $validator): void
{
if (!$this->validators->offsetExists($validator)) {
throw new NoSuchValidatorException('Cannot remove validator because its not in the conjunction.', 1207020177);
}
$this->validators->offsetUnset($validator);
}
/**
* Returns the number of validators contained in this composition.
*/
public function count(): int
{
return count($this->validators);
}
/**
* Returns the child validators of this Composite Validator
*
* @return \SplObjectStorage<ValidatorInterface>
*/
public function getValidators(): \SplObjectStorage
{
return $this->validators;
}
/**
* Returns the options for this validator
*/
public function getOptions(): array
{
return $this->options;
}
/**
* Allows to set a container to keep track of validated instances.
*/
public function setValidatedInstancesContainer(\SplObjectStorage $validatedInstancesContainer): void
{
$this->validatedInstancesContainer = $validatedInstancesContainer;
}
/**
* Initialize default options.
* @throws InvalidValidationOptionsException
*/
protected function initializeDefaultOptions(array $options): void
{
// check for options given but not supported
if (($unsupportedOptions = array_diff_key($options, $this->supportedOptions)) !== []) {
throw new InvalidValidationOptionsException('Unsupported validation option(s) found: ' . implode(', ', array_keys($unsupportedOptions)), 1339079804);
}
// check for required options being set
array_walk(
$this->supportedOptions,
static function (array $supportedOptionData, string $supportedOptionName, array $options): void {
if (isset($supportedOptionData[3]) && !array_key_exists($supportedOptionName, $options)) {
throw new InvalidValidationOptionsException('Required validation option not set: ' . $supportedOptionName, 1339163922);
}
},
$options
);
// merge with default values
$this->options = array_merge(
array_map(
static fn(array $value): mixed => $value[0],
$this->supportedOptions
),
$options
);
$this->validators = new \SplObjectStorage();
}
}