49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Validator\Constraints;
|
|
|
|
use App\Entity\Timesheet as TimesheetEntity;
|
|
use App\Validator\Constraints\Timesheet as TimesheetConstraint;
|
|
use Symfony\Component\Validator\Constraint;
|
|
use Symfony\Component\Validator\ConstraintValidator;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
|
|
final class TimesheetValidator extends ConstraintValidator
|
|
{
|
|
/**
|
|
* @param Constraint[] $constraints
|
|
*/
|
|
public function __construct(private iterable $constraints)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param TimesheetEntity $timesheet
|
|
* @param Constraint $constraint
|
|
*/
|
|
public function validate(mixed $timesheet, Constraint $constraint): void
|
|
{
|
|
if (!($constraint instanceof TimesheetConstraint)) {
|
|
throw new UnexpectedTypeException($constraint, Timesheet::class);
|
|
}
|
|
|
|
if (!\is_object($timesheet) || !($timesheet instanceof TimesheetEntity)) {
|
|
throw new UnexpectedTypeException($timesheet, TimesheetEntity::class);
|
|
}
|
|
|
|
foreach ($this->constraints as $innerConstraint) {
|
|
$this->context
|
|
->getValidator()
|
|
->inContext($this->context)
|
|
->validate($timesheet, $innerConstraint, [Constraint::DEFAULT_GROUP]);
|
|
}
|
|
}
|
|
}
|