mirror of
https://github.com/symfony/validator.git
synced 2026-03-24 01:12:13 +01:00
* 6.4: (23 commits)
fix tests using Twig 3.12
skip tests requiring the intl extension if it's not installed
🐛 throw ParseException on invalid date
fix permitted data type of the default choice
[ExpressionLanguage] Improve test coverage
Fix invalid phpdoc in ContainerBuilder
[HttpKernel] [WebProfileBundle] Fix Routing panel for URLs with a colon
[Form] NumberType: Fix parsing of numbers in exponential notation with negative exponent
[Security] consistent singular/plural translation in Dutch
reset the validation context after validating nested constraints
do not duplicate directory separators
fix handling empty data in ValueToDuplicatesTransformer
fix compatibility with redis extension 6.0.3+
synchronize unsupported scheme tests
[String] Fixed Quorum plural, that was inflected to be only "Quora" and never "Quorums"
Fix symfony/kaz-info-teh-notifier package
[Validator] review latvian translations
[Validator] Add Dutch translation for `WordCount` constraint
allow more unicode characters in URL paths
[String][EnglishInflector] Fix words ending in 'le', e.g., articles
...
71 lines
2.5 KiB
PHP
71 lines
2.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Validator\Constraints;
|
|
|
|
use Symfony\Component\Validator\Constraint;
|
|
use Symfony\Component\Validator\ConstraintValidator;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
|
|
/**
|
|
* @author Przemysław Bogusz <przemyslaw.bogusz@tubotax.pl>
|
|
*/
|
|
class AtLeastOneOfValidator extends ConstraintValidator
|
|
{
|
|
public function validate(mixed $value, Constraint $constraint): void
|
|
{
|
|
if (!$constraint instanceof AtLeastOneOf) {
|
|
throw new UnexpectedTypeException($constraint, AtLeastOneOf::class);
|
|
}
|
|
|
|
$validator = $this->context->getValidator();
|
|
|
|
// Build a first violation to have the base message of the constraint translated
|
|
$baseMessageContext = clone $this->context;
|
|
$baseMessageContext->buildViolation($constraint->message)->addViolation();
|
|
$baseViolations = $baseMessageContext->getViolations();
|
|
$messages = [(string) $baseViolations->get(\count($baseViolations) - 1)->getMessage()];
|
|
|
|
foreach ($constraint->constraints as $key => $item) {
|
|
if (!\in_array($this->context->getGroup(), $item->groups, true)) {
|
|
continue;
|
|
}
|
|
|
|
$context = $this->context;
|
|
$executionContext = clone $this->context;
|
|
$executionContext->setNode($value, $this->context->getObject(), $this->context->getMetadata(), $this->context->getPropertyPath());
|
|
$violations = $validator->inContext($executionContext)->validate($value, $item, $this->context->getGroup())->getViolations();
|
|
$this->context = $context;
|
|
|
|
if (\count($this->context->getViolations()) === \count($violations)) {
|
|
return;
|
|
}
|
|
|
|
if ($constraint->includeInternalMessages) {
|
|
$message = ' ['.($key + 1).'] ';
|
|
|
|
if ($item instanceof All || $item instanceof Collection) {
|
|
$message .= $constraint->messageCollection;
|
|
} else {
|
|
$message .= $violations->get(\count($violations) - 1)->getMessage();
|
|
}
|
|
|
|
$messages[] = $message;
|
|
}
|
|
}
|
|
|
|
$this->context->buildViolation(implode('', $messages))
|
|
->setCode(AtLeastOneOf::AT_LEAST_ONE_OF_ERROR)
|
|
->addViolation()
|
|
;
|
|
}
|
|
}
|