chill-bundles/src/Bundle/ChillPersonBundle/Controller/SocialIssueApiController.php

110 lines
3.6 KiB
PHP

<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Controller;
use Chill\MainBundle\CRUD\Controller\ApiController;
use Chill\MainBundle\Doctrine\ORM\Hydration\FlatHierarchyEntityHydrator;
use Chill\MainBundle\Pagination\PaginatorInterface;
use Chill\MainBundle\Serializer\Model\Collection;
use Chill\PersonBundle\Entity\SocialWork\SocialIssue;
use DateTimeImmutable;
use Doctrine\ORM\Query;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Serializer\SerializerInterface;
//class SocialIssueApiController extends ApiController
class SocialIssueApiController extends AbstractController
{
private SerializerInterface $serializer;
public function __construct(
SerializerInterface $serializer
) {
$this->serializer = $serializer;
}
// protected function customizeQuery(string $action, Request $request, $query): void
// {
// $query->where(
// $query->expr()->orX(
// $query->expr()->gt('e.desactivationDate', ':now'),
// $query->expr()->isNull('e.desactivationDate')
// )
// );
// $query->setParameter('now', new DateTimeImmutable());
// }
// protected function getQueryResult(string $action, Request $request, string $_format, int $totalItems, PaginatorInterface $paginator, $query)
// {
// // In order to work, this hydrator only works with
// // entities having the field "children" set up.
// return $query
// ->getQuery()
// ->setHint(Query::HINT_INCLUDE_META_COLUMNS, true)
// ->getResult(FlatHierarchyEntityHydrator::LIST);
// }
// protected function onPostIndexBuildQuery(string $action, Request $request, string $_format, int $totalItems, PaginatorInterface $paginator, $query): ?Response
// {
// $query
// ->orderBy('GET_JSON_FIELD_BY_KEY(e.title, :locale)', 'ASC')
// ->setParameter(':locale', $request->getLocale());
// return null;
// }
// protected function orderQuery(string $action, $query, Request $request, PaginatorInterface $paginator, $_format)
// {
// $query->addOrderBy('ordering', 'ASC');
// return $query;
// }
/*
* @Route("/api/1.0/person/social-work/social-issue.json", name="social_work_social_issue")
*/
public function indexAction(Request $request): JsonResponse
{
$this->denyAccessUnlessGranted('ROLE_USER');
$qb = $this->getDoctrine()->getManager()->createQueryBuilder();
$qb->select('si')->from(SocialIssue::class, 'si');
$qb->where(
$qb->expr()->orX(
$qb->expr()->gt('si.desactivationDate', ':now'),
$qb->expr()->isNull('si.desactivationDate')
)
);
$qb->setParameter('now', new DateTimeImmutable());
$qb->addOrderBy('si.ordering', 'ASC');
$qb->getQuery()
->setHint(Query::HINT_INCLUDE_META_COLUMNS, true)
->getResult(FlatHierarchyEntityHydrator::LIST);
$socialIssues = $qb->getQuery()->getResult();
return new JsonResponse(
$this->serializer->serialize(['count' => count($socialIssues), 'results' => $socialIssues], 'json', ['groups' => ['read']]),
JsonResponse::HTTP_OK,
[],
true
);
}
}