<?php
namespace App\EventSubscriber;
use App\Entity\Ucs;
use App\Entity\Uts;
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;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
final class CustomApiUtsListener
{
private $serializer;
private $em;
public function __construct(SerializerInterface $serializer, EntityManagerInterface $em)
{
$this->serializer = $serializer;
$this->em = $em;
}
#[AsEventListener(event: ApiEvents::GET_UTS_BY_CODE)]
public function onGetUtsByCode(ApiEvent $event)
{
$request = $event->getRequest();
$uts_availables = $event->getData()[2];
if($request->query->has('ucs')) {
$ucs = $this->em->getRepository(Ucs::class)->find($request->query->get('ucs'));
// find surface for each UTS
foreach ($uts_availables as $u) {
$u->surface = $this->getSurfacePercentage($u, $ucs);
}
// order by surface
usort($uts_availables, function($a, $b) {return $a->surface < $b->surface;});
// get biggest surface
$uts = $uts_availables[0];
// build response
$response = new JsonResponse([
'uts' => $this->serializer->normalize($uts, 'json', ['groups' => 'api'])
]);
// send response
$event->setResponse($response);
}
}
private function getSurfacePercentage(Uts $uts, Ucs $ucs)
{
$sql = "SELECT pourcent FROM bzh_cor_ucs_uts WHERE no_ucs = '".$ucs->getId()."' AND no_uts = '".$uts->getId()."';";
$stmt = $this->em->getConnection()->prepare($sql);
$query = $stmt->executeQuery();
$result = $query->fetch();
return $result['pourcent'] ?? null;
}
#[AsEventListener(event: ApiEvents::GET_UTS_BY_DEFAULT)]
public function onGetUtsByDefault(ApiEvent $event)
{
$data = $event->getData();
$ucs = $data[0];
$childrenUts = $data[3];
// here we request a default utt from current ucs & position in the branch
// we do that by calling SQL getuttmaj()
try {
// build json
$json = json_encode([
'ucs' => $ucs->getId(),
'uts' => array_map(function($u) { return $u['id']; }, $childrenUts)
]);
// call sql fn
$sql = "select bzh.getuttmaj('$json')";
$stmt = $this->em->getConnection()->prepare($sql);
$query = $stmt->executeQuery();
$res = $query->fetch();
// get utt id
$utt = $res['getuttmaj'];
$id = json_decode($utt)->utt;
// find uts in db
$uts = $this->em->getRepository(Uts::class)->find($id);
}
catch(\Exception $e) {
throw new BadRequestHttpException("Error while retrieving default Uts... (".$e->getMessage()." at line ".$e->getLine().")");
}
// build response
$response = new JsonResponse([
'uts' => $this->serializer->normalize($uts, 'json', ['groups' => 'api'])
]);
// send response
$event->setResponse($response);
}
}