mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
138 lines
3.4 KiB
PHP
138 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Repository\SocialWork;
|
|
|
|
use Chill\PersonBundle\Entity\SocialWork\Result;
|
|
use Chill\PersonBundle\Entity\SocialWork\SocialAction;
|
|
use Chill\PersonBundle\Entity\SocialWork\Goal;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Doctrine\ORM\EntityRepository;
|
|
use Doctrine\ORM\QueryBuilder;
|
|
use Doctrine\Persistence\ObjectRepository;
|
|
|
|
final class ResultRepository implements ObjectRepository
|
|
{
|
|
private EntityRepository $repository;
|
|
|
|
public function __construct(EntityManagerInterface $entityManager)
|
|
{
|
|
$this->repository = $entityManager->getRepository(Result::class);
|
|
}
|
|
|
|
public function find($id)
|
|
{
|
|
return $this->repository->find($id);
|
|
}
|
|
|
|
public function findAll()
|
|
{
|
|
return $this->repository->findAll();
|
|
}
|
|
|
|
public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null)
|
|
{
|
|
return $this->repository->findBy($criteria, $orderBy, $limit, $offset);
|
|
}
|
|
|
|
public function findOneBy(array $criteria)
|
|
{
|
|
return $this->findOneBy($criteria);
|
|
}
|
|
|
|
public function getClassName()
|
|
{
|
|
return Result::class;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return Result[]
|
|
*/
|
|
public function findBySocialActionWithDescendants(SocialAction $action, $orderBy = null, $limit = null, $offset = null): array
|
|
{
|
|
$qb = $this->buildQueryBySocialActionWithDescendants($action);
|
|
$qb->select('r');
|
|
|
|
foreach ($orderBy as $sort => $order) {
|
|
$qb->addOrderBy('r.'.$sort, $order);
|
|
}
|
|
|
|
return $qb
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset)
|
|
->getQuery()
|
|
->getResult()
|
|
;
|
|
}
|
|
|
|
public function countBySocialActionWithDescendants(SocialAction $action): int
|
|
{
|
|
$qb = $this->buildQueryBySocialActionWithDescendants($action);
|
|
$qb->select('COUNT(r)');
|
|
|
|
return $qb
|
|
->getQuery()
|
|
->getSingleScalarResult()
|
|
;
|
|
}
|
|
|
|
protected function buildQueryBySocialActionWithDescendants(SocialAction $action): QueryBuilder
|
|
{
|
|
$actions = $action->getDescendantsWithThis();
|
|
|
|
$qb = $this->repository->createQueryBuilder('r');
|
|
|
|
$orx = $qb->expr()->orX();
|
|
$i = 0;
|
|
foreach ($actions as $action) {
|
|
$orx->add(":action_{$i} MEMBER OF r.socialActions");
|
|
$qb->setParameter("action_{$i}", $action);
|
|
}
|
|
$qb->where($orx);
|
|
|
|
return $qb;
|
|
}
|
|
protected function buildQueryByGoal(Goal $goal): QueryBuilder
|
|
{
|
|
$qb = $this->repository->createQueryBuilder('r');
|
|
|
|
$qb->where(":goal MEMBER OF r.goals")
|
|
->setParameter('goal', $goal)
|
|
;
|
|
|
|
return $qb;
|
|
}
|
|
|
|
/**
|
|
* @return Result[]
|
|
*/
|
|
public function findByGoal(Goal $goal, $orderBy = null, $limit = null, $offset = null): array
|
|
{
|
|
$qb = $this->buildQueryByGoal($goal);
|
|
|
|
foreach ($orderBy as $sort => $order) {
|
|
$qb->addOrderBy('r.'.$sort, $order);
|
|
}
|
|
|
|
return $qb
|
|
->select('r')
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset)
|
|
->getQuery()
|
|
->getResult()
|
|
;
|
|
}
|
|
|
|
public function countByGoal(Goal $goal): int
|
|
{
|
|
$qb = $this->buildQueryByGoal($goal);
|
|
$qb->select('COUNT(r)');
|
|
|
|
return $qb
|
|
->getQuery()
|
|
->getSingleScalarResult()
|
|
;
|
|
}
|
|
}
|
|
|