repository = $entityManager->getRepository(Goal::class); } public function countBySocialActionWithDescendants(SocialAction $action): int { $qb = $this->buildQueryBySocialActionWithDescendants($action); $qb->select('COUNT(g)'); return $qb ->getQuery() ->getSingleScalarResult(); } public function find($id, ?int $lockMode = null, ?int $lockVersion = null): ?Goal { return $this->repository->find($id, $lockMode, $lockVersion); } /** * @return array */ public function findAll(): array { return $this->repository->findAll(); } /** * @param mixed|null $limit * @param mixed|null $offset * * @return array */ public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null): array { return $this->repository->findBy($criteria, $orderBy, $limit, $offset); } /** * @param mixed|null $orderBy * @param mixed|null $limit * @param mixed|null $offset * * @return Goal[] */ public function findBySocialActionWithDescendants(SocialAction $action, $orderBy = null, $limit = null, $offset = null): array { $qb = $this->buildQueryBySocialActionWithDescendants($action); $qb->select('g'); foreach ($orderBy as $sort => $order) { $qb->addOrderBy('g.' . $sort, $order); } return $qb ->setMaxResults($limit) ->setFirstResult($offset) ->getQuery() ->getResult(); } public function findOneBy(array $criteria, ?array $orderBy = null): ?Goal { return $this->repository->findOneBy($criteria, $orderBy); } /** * @return class-string */ public function getClassName(): string { return Goal::class; } private function buildQueryBySocialActionWithDescendants(SocialAction $action): QueryBuilder { $actions = $action->getDescendantsWithThis(); $qb = $this->repository->createQueryBuilder('g'); $orx = $qb->expr()->orX(); $i = 0; foreach ($actions as $action) { $orx->add(":action_{$i} MEMBER OF g.socialActions"); $qb->setParameter("action_{$i}", $action); } $qb->where($orx); return $qb; } }