2024-08-30 14:46:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace DigiComp\SettingValidator\Validation\Validator;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the DigiComp.SettingValidator package.
|
|
|
|
*
|
|
|
|
* (c) digital competence
|
|
|
|
*
|
|
|
|
* This package is Open Source Software. For the full copyright and license
|
|
|
|
* information, please view the LICENSE file which was distributed with this
|
|
|
|
* source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Neos\Flow\Annotations as Flow;
|
|
|
|
use Neos\Flow\Validation\Exception\InvalidValidationConfigurationException;
|
|
|
|
use Neos\Flow\Validation\Exception\NoSuchValidatorException;
|
|
|
|
use Neos\Flow\Validation\Validator\AbstractValidator;
|
|
|
|
use Neos\Flow\Validation\ValidatorResolver;
|
|
|
|
use Neos\Utility\ObjectAccess;
|
|
|
|
|
|
|
|
class PropertiesValidator extends AbstractValidator
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @Flow\Inject
|
|
|
|
* @var ValidatorResolver
|
|
|
|
*/
|
|
|
|
protected $validatorResolver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected $supportedOptions = [
|
|
|
|
'validatorsForProperties' => [[], 'List of validators for properties. ', 'array', true],
|
|
|
|
'validationGroups' => [['Default'], 'Same as "Validation Groups" of Flow Framework', 'array'],
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
* @throws InvalidValidationConfigurationException
|
|
|
|
* @throws NoSuchValidatorException
|
|
|
|
*/
|
|
|
|
protected function isValid($value): void
|
|
|
|
{
|
|
|
|
$validatorConfigs = [];
|
|
|
|
|
|
|
|
foreach ($this->options['validatorsForProperties'] as $property => $validators) {
|
|
|
|
foreach ($validators as $validator => $options) {
|
|
|
|
if ($options === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$validatorConfigs[] = [
|
|
|
|
'validator' => $validator,
|
|
|
|
'options' => $options,
|
|
|
|
'property' => $property,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($validatorConfigs as $validatorConfig) {
|
|
|
|
if (!$this->doesValidationGroupsMatch($validatorConfig)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->handleValidationGroups($validatorConfig);
|
|
|
|
|
|
|
|
$validator = $this->validatorResolver->createValidator(
|
|
|
|
$validatorConfig['validator'],
|
|
|
|
$validatorConfig['options']
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($validator === null) {
|
|
|
|
throw new InvalidValidationConfigurationException(
|
|
|
|
\sprintf(
|
|
|
|
'Validator "%s" could not be resolved. Check your Validation.yaml',
|
|
|
|
$validatorConfig['validator']
|
|
|
|
),
|
|
|
|
1402326139
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->getResult()->forProperty($validatorConfig['property'])->merge(
|
|
|
|
$validator->validate(ObjectAccess::getPropertyPath($value, $validatorConfig['property']))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether at least one configured group does match, if any is configured.
|
|
|
|
*
|
|
|
|
* @param array $validatorConfig
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function doesValidationGroupsMatch(array $validatorConfig): bool
|
|
|
|
{
|
|
|
|
return !isset($validatorConfig['options']['validationGroups'])
|
|
|
|
|| \array_intersect(
|
|
|
|
$validatorConfig['options']['validationGroups'],
|
|
|
|
$this->options['validationGroups']
|
|
|
|
) !== [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add validation groups for recursion if necessary.
|
|
|
|
*
|
|
|
|
* @param array $validatorConfig
|
|
|
|
*/
|
|
|
|
protected function handleValidationGroups(array &$validatorConfig): void
|
|
|
|
{
|
2024-09-04 15:57:55 +02:00
|
|
|
if (\in_array($validatorConfig['validator'], ['DigiComp.SettingValidator:Settings', 'DigiComp.SettingValidator:Conditional', 'DigiComp.SettingValidator:Properties', 'Neos.Flow:Collection'])) {
|
2024-08-30 14:46:49 +02:00
|
|
|
$validatorConfig['options']['validationGroups'] = $this->options['validationGroups'];
|
|
|
|
} elseif (isset($validatorConfig['options']['validationGroups'])) {
|
|
|
|
unset($validatorConfig['options']['validationGroups']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|