mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 14:24:24 +00:00
51 lines
1.6 KiB
PHP
51 lines
1.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\Pagination\PaginatorFactory;
|
|
use Chill\MainBundle\Serializer\Model\Collection;
|
|
use Chill\PersonBundle\Entity\SocialWork\SocialAction;
|
|
use Chill\PersonBundle\Repository\SocialWork\GoalRepository;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class SocialWorkGoalApiController extends ApiController
|
|
{
|
|
private GoalRepository $goalRepository;
|
|
|
|
private PaginatorFactory $paginator;
|
|
|
|
public function __construct(GoalRepository $goalRepository, PaginatorFactory $paginator)
|
|
{
|
|
$this->goalRepository = $goalRepository;
|
|
$this->paginator = $paginator;
|
|
}
|
|
|
|
public function listBySocialAction(Request $request, SocialAction $action): Response
|
|
{
|
|
$totalItems = $this->goalRepository->countBySocialActionWithDescendants($action);
|
|
$paginator = $this->getPaginatorFactory()->create($totalItems);
|
|
|
|
$entities = $this->goalRepository->findBySocialActionWithDescendants(
|
|
$action,
|
|
['id' => 'ASC'],
|
|
$paginator->getItemsPerPage(),
|
|
$paginator->getCurrentPageFirstItemNumber()
|
|
);
|
|
|
|
$model = new Collection($entities, $paginator);
|
|
|
|
return $this->json($model, Response::HTTP_OK, [], ['groups' => ['read']]);
|
|
}
|
|
}
|