|
| 1 | +<?php |
| 2 | + |
| 3 | +/* For licensing terms, see /license.txt */ |
| 4 | + |
| 5 | +declare(strict_types=1); |
| 6 | + |
| 7 | +namespace Chamilo\CoreBundle\Controller; |
| 8 | + |
| 9 | +use Chamilo\CoreBundle\Entity\CatalogueCourseRelAccessUrlRelUsergroup; |
| 10 | +use Chamilo\CoreBundle\Entity\CatalogueSessionRelAccessUrlRelUsergroup; |
| 11 | +use Chamilo\CoreBundle\Entity\Course; |
| 12 | +use Chamilo\CoreBundle\Entity\Session; |
| 13 | +use Chamilo\CoreBundle\Entity\UsergroupRelUser; |
| 14 | +use Chamilo\CoreBundle\Repository\Node\CourseRepository; |
| 15 | +use Chamilo\CoreBundle\Repository\SessionRepository; |
| 16 | +use Chamilo\CoreBundle\ServiceHelper\AccessUrlHelper; |
| 17 | +use Chamilo\CoreBundle\ServiceHelper\UserHelper; |
| 18 | +use Doctrine\ORM\EntityManagerInterface; |
| 19 | +use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
| 20 | +use Symfony\Component\HttpFoundation\JsonResponse; |
| 21 | +use Symfony\Component\Routing\Annotation\Route; |
| 22 | + |
| 23 | +#[Route('/catalogue')] |
| 24 | +class CatalogueController extends AbstractController |
| 25 | +{ |
| 26 | + public function __construct( |
| 27 | + private readonly EntityManagerInterface $em, |
| 28 | + private readonly UserHelper $userHelper, |
| 29 | + private readonly AccessUrlHelper $accessUrlHelper, |
| 30 | + private readonly CourseRepository $courseRepository, |
| 31 | + private readonly SessionRepository $sessionRepository |
| 32 | + ) {} |
| 33 | + |
| 34 | + #[Route('/courses-list', name: 'chamilo_core_catalogue_courses_list', methods: ['GET'])] |
| 35 | + public function listCourses(): JsonResponse |
| 36 | + { |
| 37 | + $user = $this->userHelper->getCurrent(); |
| 38 | + $accessUrl = $this->accessUrlHelper->getCurrent(); |
| 39 | + |
| 40 | + $relRepo = $this->em->getRepository(CatalogueCourseRelAccessUrlRelUsergroup::class); |
| 41 | + $userGroupRepo = $this->em->getRepository(UsergroupRelUser::class); |
| 42 | + |
| 43 | + $relations = $relRepo->findBy(['accessUrl' => $accessUrl]); |
| 44 | + |
| 45 | + if (empty($relations)) { |
| 46 | + $courses = $this->courseRepository->findAll(); |
| 47 | + } else { |
| 48 | + $userGroups = $userGroupRepo->findBy(['user' => $user]); |
| 49 | + $userGroupIds = array_map(fn($ug) => $ug->getUsergroup()->getId(), $userGroups); |
| 50 | + |
| 51 | + $visibleCourses = []; |
| 52 | + |
| 53 | + foreach ($relations as $rel) { |
| 54 | + $course = $rel->getCourse(); |
| 55 | + $usergroup = $rel->getUsergroup(); |
| 56 | + |
| 57 | + if ($usergroup === null || in_array($usergroup->getId(), $userGroupIds)) { |
| 58 | + $visibleCourses[$course->getId()] = $course; |
| 59 | + } |
| 60 | + } |
| 61 | + |
| 62 | + $courses = array_values($visibleCourses); |
| 63 | + } |
| 64 | + |
| 65 | + $data = array_map(function (Course $course) { |
| 66 | + return [ |
| 67 | + 'id' => $course->getId(), |
| 68 | + 'code' => $course->getCode(), |
| 69 | + 'title' => $course->getTitle(), |
| 70 | + 'description' => $course->getDescription(), |
| 71 | + 'visibility' => $course->getVisibility(), |
| 72 | + ]; |
| 73 | + }, $courses); |
| 74 | + |
| 75 | + return $this->json($data); |
| 76 | + } |
| 77 | + |
| 78 | + #[Route('/sessions-list', name: 'chamilo_core_catalogue_sessions_list', methods: ['GET'])] |
| 79 | + public function listSessions(): JsonResponse |
| 80 | + { |
| 81 | + $user = $this->userHelper->getCurrent(); |
| 82 | + $accessUrl = $this->accessUrlHelper->getCurrent(); |
| 83 | + |
| 84 | + $relRepo = $this->em->getRepository(CatalogueSessionRelAccessUrlRelUsergroup::class); |
| 85 | + $userGroupRepo = $this->em->getRepository(UsergroupRelUser::class); |
| 86 | + |
| 87 | + $relations = $relRepo->findBy(['accessUrl' => $accessUrl]); |
| 88 | + |
| 89 | + if (empty($relations)) { |
| 90 | + $sessions = $this->sessionRepository->findAll(); |
| 91 | + } else { |
| 92 | + $userGroups = $userGroupRepo->findBy(['user' => $user]); |
| 93 | + $userGroupIds = array_map(fn($ug) => $ug->getUsergroup()->getId(), $userGroups); |
| 94 | + |
| 95 | + $visibleSessions = []; |
| 96 | + |
| 97 | + foreach ($relations as $rel) { |
| 98 | + $session = $rel->getSession(); |
| 99 | + $usergroup = $rel->getUsergroup(); |
| 100 | + |
| 101 | + if ($usergroup === null || in_array($usergroup->getId(), $userGroupIds)) { |
| 102 | + $visibleSessions[$session->getId()] = $session; |
| 103 | + } |
| 104 | + } |
| 105 | + |
| 106 | + $sessions = array_values($visibleSessions); |
| 107 | + } |
| 108 | + |
| 109 | + $data = array_map(function (Session $session) { |
| 110 | + return [ |
| 111 | + 'id' => $session->getId(), |
| 112 | + 'title' => $session->getTitle(), |
| 113 | + 'description' => $session->getDescription(), |
| 114 | + 'imageUrl' => $session->getImageUrl(), |
| 115 | + 'visibility' => $session->getVisibility(), |
| 116 | + 'nbrUsers' => $session->getNbrUsers(), |
| 117 | + 'nbrCourses' => $session->getNbrCourses(), |
| 118 | + 'startDate' => $session->getAccessStartDate()?->format('Y-m-d'), |
| 119 | + 'endDate' => $session->getAccessEndDate()?->format('Y-m-d'), |
| 120 | + ]; |
| 121 | + }, $sessions); |
| 122 | + |
| 123 | + return $this->json($data); |
| 124 | + } |
| 125 | +} |
0 commit comments