134 lines
4.1 KiB
PHP
134 lines
4.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\Repository\Loader;
|
|
|
|
use App\Entity\Activity;
|
|
use App\Entity\Customer;
|
|
use App\Entity\Project;
|
|
use App\Entity\Timesheet;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class TimesheetIdLoader implements LoaderInterface
|
|
{
|
|
private $entityManager;
|
|
private $fullyHydrated;
|
|
|
|
public function __construct(EntityManagerInterface $entityManager, bool $fullyHydrated = false)
|
|
{
|
|
$this->entityManager = $entityManager;
|
|
$this->fullyHydrated = $fullyHydrated;
|
|
}
|
|
|
|
/**
|
|
* @param int[] $ids
|
|
*/
|
|
public function loadResults(array $ids): void
|
|
{
|
|
if (empty($ids)) {
|
|
return;
|
|
}
|
|
|
|
$em = $this->entityManager;
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$timesheets = $qb->select('PARTIAL t.{id}', 'project')
|
|
->from(Timesheet::class, 't')
|
|
->leftJoin('t.project', 'project')
|
|
->andWhere($qb->expr()->in('t.id', $ids))
|
|
->getQuery()
|
|
->execute();
|
|
|
|
$projectIds = array_map(function (Timesheet $timesheet) {
|
|
return $timesheet->getProject()->getId();
|
|
}, $timesheets);
|
|
|
|
if ($this->fullyHydrated) {
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL p.{id}', 'meta')
|
|
->from(Project::class, 'p')
|
|
->leftJoin('p.meta', 'meta')
|
|
->andWhere($qb->expr()->in('p.id', $projectIds))
|
|
->getQuery()
|
|
->execute();
|
|
}
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$projects = $qb->select('PARTIAL p.{id}', 'customer')
|
|
->from(Project::class, 'p')
|
|
->leftJoin('p.customer', 'customer')
|
|
->andWhere($qb->expr()->in('p.id', $projectIds))
|
|
->getQuery()
|
|
->execute();
|
|
|
|
if ($this->fullyHydrated) {
|
|
$customerIds = array_map(function (Project $project) {
|
|
return $project->getCustomer()->getId();
|
|
}, $projects);
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL c.{id}', 'meta')
|
|
->from(Customer::class, 'c')
|
|
->leftJoin('c.meta', 'meta')
|
|
->andWhere($qb->expr()->in('c.id', $customerIds))
|
|
->getQuery()
|
|
->execute();
|
|
}
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL t.{id}', 'activity')
|
|
->from(Timesheet::class, 't')
|
|
->leftJoin('t.activity', 'activity')
|
|
->andWhere($qb->expr()->in('t.id', $ids))
|
|
->getQuery()
|
|
->execute();
|
|
|
|
if ($this->fullyHydrated) {
|
|
$activityIds = array_map(function (Timesheet $timesheet) {
|
|
return $timesheet->getActivity()->getId();
|
|
}, $timesheets);
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL a.{id}', 'meta')
|
|
->from(Activity::class, 'a')
|
|
->leftJoin('a.meta', 'meta')
|
|
->andWhere($qb->expr()->in('a.id', $activityIds))
|
|
->getQuery()
|
|
->execute();
|
|
}
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL t.{id}', 'user')
|
|
->from(Timesheet::class, 't')
|
|
->leftJoin('t.user', 'user')
|
|
->andWhere($qb->expr()->in('t.id', $ids))
|
|
->getQuery()
|
|
->execute();
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL t.{id}', 'tags')
|
|
->from(Timesheet::class, 't')
|
|
->leftJoin('t.tags', 'tags')
|
|
->andWhere($qb->expr()->in('t.id', $ids))
|
|
->getQuery()
|
|
->execute();
|
|
|
|
$qb = $em->createQueryBuilder();
|
|
$qb->select('PARTIAL t.{id}', 'meta')
|
|
->from(Timesheet::class, 't')
|
|
->leftJoin('t.meta', 'meta')
|
|
->andWhere($qb->expr()->in('t.id', $ids))
|
|
->getQuery()
|
|
->execute();
|
|
}
|
|
}
|