Robin Krahnen
1f5b491d5a
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
160 lines
5.4 KiB
PHP
160 lines
5.4 KiB
PHP
<?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\InvalidValidationOptionsException;
|
|
use Neos\Flow\Validation\Exception\NoSuchValidatorException;
|
|
use Neos\Flow\Validation\Validator\AbstractValidator;
|
|
use Neos\Flow\Validation\ValidatorResolver;
|
|
use Neos\Utility\TypeHandling;
|
|
|
|
/**
|
|
* Validator resolving other Validators defined in Validation.yaml
|
|
*/
|
|
class SettingsValidator extends AbstractValidator
|
|
{
|
|
/**
|
|
* @Flow\Inject
|
|
* @var ValidatorResolver
|
|
*/
|
|
protected $validatorResolver;
|
|
|
|
/**
|
|
* @Flow\InjectConfiguration(type="Validation")
|
|
* @var array
|
|
*/
|
|
protected array $validations;
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected $supportedOptions = [
|
|
'name' => ['', 'Name of the setting array to use', 'string'],
|
|
'validationGroups' => [['Default'], 'Same as "Validation Groups" of Flow Framework', 'array'],
|
|
];
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @throws InvalidValidationOptionsException
|
|
* @throws InvalidValidationConfigurationException
|
|
* @throws NoSuchValidatorException
|
|
*/
|
|
protected function isValid($value): void
|
|
{
|
|
$validations = $this->validations;
|
|
|
|
// TODO: feature idea - we could extend the library to automatically be part of the base conjunction validator
|
|
$name = $this->options['name'] !== '' ? $this->options['name'] : TypeHandling::getTypeForValue($value);
|
|
if (!isset($validations[$name])) {
|
|
throw new InvalidValidationOptionsException(
|
|
'The name "' . $name . '" has not been defined in Validation.yaml!',
|
|
1397821438
|
|
);
|
|
}
|
|
|
|
// @deprecated - converts old "self" to new structure
|
|
if (isset($validations[$name]['self'])) {
|
|
foreach ($validations[$name]['self'] as $validator => $options) {
|
|
if (isset($validations[$name][$validator])) {
|
|
throw new \RuntimeException('The validator "' . $validator . '" is already defined on parent level.', 1725000364);
|
|
}
|
|
$validations[$name][$validator] = $options;
|
|
}
|
|
|
|
unset($validations[$name]['self']);
|
|
}
|
|
|
|
// @deprecated - converts old "properties" to new structure
|
|
if (isset($validations[$name]['properties'])) {
|
|
if (isset($validations[$name]['DigiComp.SettingValidator:Properties'])) {
|
|
throw new \RuntimeException('The validator "DigiComp.SettingValidator:Properties" is already defined on parent level.', 1725000396);
|
|
}
|
|
$validations[$name]['DigiComp.SettingValidator:Properties'] = [
|
|
'validatorsForProperties' => $validations[$name]['properties'],
|
|
];
|
|
|
|
unset($validations[$name]['properties']);
|
|
}
|
|
|
|
$validatorConfigs = [];
|
|
|
|
foreach ($validations[$name] as $validator => $options) {
|
|
if ($options === null) {
|
|
continue;
|
|
}
|
|
|
|
$validatorConfigs[] = [
|
|
'validator' => $validator,
|
|
'options' => $options,
|
|
];
|
|
}
|
|
|
|
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()->merge($validator->validate($value));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
{
|
|
if (\in_array($validatorConfig['validator'], ['DigiComp.SettingValidator:Settings', 'DigiComp.SettingValidator:Conditional', 'DigiComp.SettingValidator:Properties', 'Neos.Flow:Collection'])) {
|
|
$validatorConfig['options']['validationGroups'] = $this->options['validationGroups'];
|
|
} elseif (isset($validatorConfig['options']['validationGroups'])) {
|
|
unset($validatorConfig['options']['validationGroups']);
|
|
}
|
|
}
|
|
}
|