mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-27 18:13:48 +00:00
api point for dashboard items
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
namespace Chill\MainBundle\Controller;
|
||||
|
||||
use Chill\MainBundle\CRUD\Controller\ApiController;
|
||||
use Chill\MainBundle\Entity\NewsItem;
|
||||
use Chill\MainBundle\Entity\User;
|
||||
use Chill\MainBundle\Pagination\PaginatorInterface;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||||
use Symfony\Component\Routing\Annotation\Route;
|
||||
|
||||
class DashboardApiController extends ApiController
|
||||
{
|
||||
public function __construct(private readonly EntityManagerInterface $em)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Give an answer to a calendar invite.
|
||||
*
|
||||
* @Route("/api/1.0/main/dashboard-item/{user_id}.json", methods={"get"})
|
||||
*/
|
||||
public function getDataForDashboard(int $userId): JsonResponse
|
||||
{
|
||||
|
||||
//with the userId get the dashboard config for that user?
|
||||
$user = $this->security->getUser();
|
||||
|
||||
if (!$user instanceof User) {
|
||||
throw new AccessDeniedHttpException('You must be an authenticated user');
|
||||
}
|
||||
|
||||
$config = ['types' => ['news']];
|
||||
|
||||
//based on the user dashboard config fetch the items to be displayed
|
||||
|
||||
$data = [];
|
||||
|
||||
foreach ($config['types'] as $type)
|
||||
{
|
||||
switch ($type) {
|
||||
case 'news':
|
||||
$qb = $this->em->createQueryBuilder();
|
||||
$qb->select('n')
|
||||
->from(NewsItem::class)
|
||||
->where(
|
||||
$qb->expr()->lt('n.endDate', ':today')
|
||||
);
|
||||
|
||||
$qb->setParameter('today', new \DateTimeImmutable('now'));
|
||||
|
||||
$newsItems = $qb->getQuery()->getResult();
|
||||
$data[] = $newsItems;
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return new JsonResponse($data, Response::HTTP_ACCEPTED, [], true);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user