api point for dashboard items

This commit is contained in:
2023-11-08 12:17:34 +01:00
parent 312a43c093
commit b172ebdf76
3 changed files with 84 additions and 19 deletions

View File

@@ -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);
}
}