src/EventSubscriber/ApiListener.php line 70

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\EventSubscriber\Events\ApiEvent;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. use App\EventSubscriber\Events\ApiEvents;
  6. use Symfony\Component\Serializer\Serializer;
  7. use Symfony\Component\HttpFoundation\JsonResponse;
  8. use Symfony\Component\Serializer\SerializerInterface;
  9. use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
  10. /*
  11.  Please COPY this file. DO NOT modify it !
  12.  (for example copy it and name it ./CustomApiListener.php)
  13.  */
  14. final class ApiListener
  15. {
  16.     private $serializer;
  17.     private $em;
  18.     public function __construct(SerializerInterface $serializerEntityManagerInterface $em)
  19.     {
  20.         $this->serializer $serializer;
  21.         $this->em $em;
  22.     }
  23.     #[AsEventListener(eventApiEvents::GET_UCS)]
  24.     public function onGetUcs(ApiEvent $event)
  25.     {
  26.         //$customResponse = new JsonResponse([
  27.         //  'custom' => true,
  28.         //  'ucs' => $this->serializer->normalize($this->em->getRepository(Ucs::class)->find(1))
  29.         //]);
  30.         //$event->setResponse($customResponse);
  31.     }
  32.     #[AsEventListener(eventApiEvents::GET_UCS_AT_COORDS)]
  33.     public function onGetUcsAtCoords(ApiEvent $event)
  34.     {
  35.     }
  36.     #[AsEventListener(eventApiEvents::GET_TREE)]
  37.     public function onGetTree(ApiEvent $event)
  38.     {
  39.     }
  40.     #[AsEventListener(eventApiEvents::GET_QUESTION)]
  41.     public function onGetQuestion(ApiEvent $event)
  42.     {
  43.     }
  44.     #[AsEventListener(eventApiEvents::GET_UTS)]
  45.     public function onGetUts(ApiEvent $event)
  46.     {
  47.     }
  48.     #[AsEventListener(eventApiEvents::GET_UTS_BY_CODE)]
  49.     public function onGetUtsByCode(ApiEvent $event)
  50.     {
  51.     }
  52.     #[AsEventListener(eventApiEvents::GET_UTS_BY_DEFAULT)]
  53.     public function onGetUtsByDefault(ApiEvent $event)
  54.     {
  55.     }
  56.     #[AsEventListener(eventApiEvents::SET_UTS)]
  57.     public function onSetUts(ApiEvent $event)
  58.     {
  59.     }
  60. }