src/EventSubscriber/CustomApiUtsListener.php line 29

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\Entity\Ucs;
  4. use App\Entity\Uts;
  5. use App\EventSubscriber\Events\ApiEvent;
  6. use Doctrine\ORM\EntityManagerInterface;
  7. use App\EventSubscriber\Events\ApiEvents;
  8. use Symfony\Component\Serializer\Serializer;
  9. use Symfony\Component\HttpFoundation\JsonResponse;
  10. use Symfony\Component\Serializer\SerializerInterface;
  11. use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
  12. use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
  13. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  14. final class CustomApiUtsListener
  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_UTS_BY_CODE)]
  24.     public function onGetUtsByCode(ApiEvent $event)
  25.     {
  26.         $request $event->getRequest();
  27.         $uts_availables $event->getData()[2];
  28.         if($request->query->has('ucs')) {
  29.           $ucs $this->em->getRepository(Ucs::class)->find($request->query->get('ucs'));
  30.           // find surface for each UTS
  31.           foreach ($uts_availables as $u) {
  32.               $u->surface $this->getSurfacePercentage($u$ucs);
  33.           }
  34.           // order by surface
  35.           usort($uts_availables, function($a$b) {return $a->surface $b->surface;});
  36.           // get biggest surface
  37.           $uts $uts_availables[0];
  38.           // build response
  39.           $response = new JsonResponse([
  40.             'uts' => $this->serializer->normalize($uts'json', ['groups' => 'api'])
  41.           ]);
  42.           // send response
  43.           $event->setResponse($response);
  44.         }
  45.     }
  46.     private function getSurfacePercentage(Uts $utsUcs $ucs)
  47.     {
  48.         $sql "SELECT pourcent FROM bzh_cor_ucs_uts WHERE no_ucs = '".$ucs->getId()."' AND no_uts = '".$uts->getId()."';";
  49.         $stmt $this->em->getConnection()->prepare($sql);
  50.         $query $stmt->executeQuery();
  51.         $result $query->fetch();
  52.         return $result['pourcent'] ?? null;
  53.     }
  54.         #[AsEventListener(eventApiEvents::GET_UTS_BY_DEFAULT)]
  55.     public function onGetUtsByDefault(ApiEvent $event)
  56.     {
  57.         $data $event->getData();
  58.         $ucs $data[0];
  59.         $childrenUts $data[3];
  60.         // here we request a default utt from current ucs & position in the branch
  61.         // we do that by calling SQL getuttmaj()
  62.         try {
  63.           // build json
  64.           $json json_encode([
  65.             'ucs' => $ucs->getId(),
  66.             'uts' => array_map(function($u) { return $u['id']; }, $childrenUts)
  67.           ]);
  68.           // call sql fn
  69.           $sql "select bzh.getuttmaj('$json')";
  70.           $stmt $this->em->getConnection()->prepare($sql);
  71.           $query $stmt->executeQuery();
  72.           $res $query->fetch();
  73.           // get utt id
  74.           $utt $res['getuttmaj'];
  75.           $id json_decode($utt)->utt;
  76.           // find uts in db
  77.           $uts $this->em->getRepository(Uts::class)->find($id);
  78.         }
  79.         catch(\Exception $e) {
  80.           throw new BadRequestHttpException("Error while retrieving default Uts... (".$e->getMessage()." at line ".$e->getLine().")");
  81.         }
  82.         // build response
  83.         $response = new JsonResponse([
  84.             'uts' => $this->serializer->normalize($uts'json', ['groups' => 'api'])
  85.         ]);
  86.         // send response
  87.         $event->setResponse($response);
  88.     }
  89. }