<?php
namespace App\EventSubscriber;
use App\EventSubscriber\Events\ApiEvent;
use Doctrine\ORM\EntityManagerInterface;
use App\EventSubscriber\Events\ApiEvents;
use Symfony\Component\Serializer\Serializer;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Serializer\SerializerInterface;
use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
/*
Please COPY this file. DO NOT modify it !
(for example copy it and name it ./CustomApiListener.php)
*/
final class ApiListener
{
private $serializer;
private $em;
public function __construct(SerializerInterface $serializer, EntityManagerInterface $em)
{
$this->serializer = $serializer;
$this->em = $em;
}
#[AsEventListener(event: ApiEvents::GET_UCS)]
public function onGetUcs(ApiEvent $event)
{
//$customResponse = new JsonResponse([
// 'custom' => true,
// 'ucs' => $this->serializer->normalize($this->em->getRepository(Ucs::class)->find(1))
//]);
//$event->setResponse($customResponse);
}
#[AsEventListener(event: ApiEvents::GET_UCS_AT_COORDS)]
public function onGetUcsAtCoords(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::GET_TREE)]
public function onGetTree(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::GET_QUESTION)]
public function onGetQuestion(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::GET_UTS)]
public function onGetUts(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::GET_UTS_BY_CODE)]
public function onGetUtsByCode(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::GET_UTS_BY_DEFAULT)]
public function onGetUtsByDefault(ApiEvent $event)
{
}
#[AsEventListener(event: ApiEvents::SET_UTS)]
public function onSetUts(ApiEvent $event)
{
}
}