* merge master - allow to upload twig invoice templates via UI * support adding existing teams with same name * permissions cannot be set right after role was created - fixes #3777 * allow to deactivate unique customer number validation - fixes #3762 * invalid message when trying to edit locked or exported timesheets in calendar - fixes #3766 * updated icons and manifest - fixes #3761
51 lines
1.8 KiB
PHP
51 lines
1.8 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\Configuration\SystemConfiguration;
|
|
use App\Entity\Customer as CustomerEntity;
|
|
use App\Repository\CustomerRepository;
|
|
use Symfony\Component\Validator\Constraint;
|
|
use Symfony\Component\Validator\ConstraintValidator;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
|
|
final class CustomerValidator extends ConstraintValidator
|
|
{
|
|
public function __construct(private SystemConfiguration $systemConfiguration, private CustomerRepository $customerRepository)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param CustomerEntity|mixed $value
|
|
* @param Constraint $constraint
|
|
*/
|
|
public function validate(mixed $value, Constraint $constraint): void
|
|
{
|
|
if (!($constraint instanceof Customer)) {
|
|
throw new UnexpectedTypeException($constraint, Customer::class);
|
|
}
|
|
|
|
if (!($value instanceof CustomerEntity)) {
|
|
throw new UnexpectedTypeException($value, CustomerEntity::class);
|
|
}
|
|
|
|
if ((bool) $this->systemConfiguration->find('customer.rules.allow_duplicate_number') === false && (($number = $value->getNumber()) !== null)) {
|
|
$tmp = $this->customerRepository->findOneBy(['number' => $number]);
|
|
if ($tmp !== null && $tmp->getId() !== $value->getId()) {
|
|
$this->context->buildViolation(Customer::getErrorName(Customer::CUSTOMER_NUMBER_EXISTING))
|
|
->atPath('number')
|
|
->setTranslationDomain('validators')
|
|
->setCode(Customer::CUSTOMER_NUMBER_EXISTING)
|
|
->addViolation();
|
|
}
|
|
}
|
|
}
|
|
}
|