* do not close modal if form is dirty * deprecated TimesheetConfiguration * inject timezone in form types * cleanup usage of UserDateTimeFactory * allow to configure increment steps for minutes * use 15 minutes step for datetimepicker in project edit form * use rounding rules for increments in minute select for begin and end * allow duration in multi user and admin timesheet forms * make dropdown values configurable
73 lines
2.1 KiB
PHP
73 lines
2.1 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\Timesheet as TimesheetEntity;
|
|
use App\Repository\TimesheetRepository;
|
|
use Symfony\Component\Validator\Constraint;
|
|
use Symfony\Component\Validator\ConstraintValidator;
|
|
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
|
|
|
|
final class TimesheetOverlappingValidator extends ConstraintValidator
|
|
{
|
|
/**
|
|
* @var SystemConfiguration
|
|
*/
|
|
private $configuration;
|
|
/**
|
|
* @var TimesheetRepository
|
|
*/
|
|
private $repository;
|
|
|
|
public function __construct(SystemConfiguration $configuration, TimesheetRepository $repository)
|
|
{
|
|
$this->configuration = $configuration;
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
/**
|
|
* @param TimesheetEntity $timesheet
|
|
* @param Constraint $constraint
|
|
*/
|
|
public function validate($timesheet, Constraint $constraint)
|
|
{
|
|
if (!($constraint instanceof TimesheetOverlapping)) {
|
|
throw new UnexpectedTypeException($constraint, TimesheetOverlapping::class);
|
|
}
|
|
|
|
if (!\is_object($timesheet) || !($timesheet instanceof TimesheetEntity)) {
|
|
throw new UnexpectedTypeException($timesheet, TimesheetEntity::class);
|
|
}
|
|
|
|
$begin = $timesheet->getBegin();
|
|
$end = $timesheet->getEnd();
|
|
|
|
// this case is handled in TimesheetValidator and should not raise a second validation
|
|
if ($begin !== null && $end !== null && $begin > $end) {
|
|
return;
|
|
}
|
|
|
|
if ($this->configuration->isTimesheetAllowOverlappingRecords()) {
|
|
return;
|
|
}
|
|
|
|
if (!$this->repository->hasRecordForTime($timesheet)) {
|
|
return;
|
|
}
|
|
|
|
$this->context->buildViolation('You already have an entry for this time.')
|
|
->atPath('begin')
|
|
->setTranslationDomain('validators')
|
|
->setCode(TimesheetOverlapping::RECORD_OVERLAPPING)
|
|
->addViolation();
|
|
}
|
|
}
|