src/Controller/Api/ImagesController.php line 28

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Api;
  3. use App\Service\Client\ClientRepository;
  4. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\HttpFoundation\BinaryFileResponse;
  7. use Symfony\Component\HttpFoundation\Response;
  8. use Symfony\Component\Routing\Annotation\Route;
  9. /**
  10.  * @Route("/image",options={"i18n"=false})
  11.  */
  12. class ImagesController extends AbstractController {
  13.     /**
  14.      * Get favicon of carrier or client/company
  15.      *
  16.      * @Route("/getimage", name="getimage")
  17.      * @param string $projectDir Symfony project folder path injected. See https://symfony.com/blog/new-in-symfony-4-1-getting-container-parameters-as-a-service
  18.      *
  19.      * @ParamConverter("id", converter="querystring")
  20.      * @ParamConverter("name", converter="querystring")
  21.      * @ParamConverter("type", converter="querystring")
  22.      */
  23.     public function getImage(string $projectDirint $id, ?string $namestring $typeClientRepository $clientRepo) : Response {
  24.         // 1. Carrier favicon (eg [..]/Symfony/src/Client/Ouibus/favicon_ouibus.png)
  25.         $clientFolder $clientRepo->find($id)->getReflectionFolder();
  26.         $carrierImgPath "$clientFolder/favicon_$name.png";
  27.         if(file_exists($carrierImgPath))
  28.             return new BinaryFileResponse($carrierImgPath);
  29.         $slugname str_replace(" ""-"strtolower($name));
  30.         $carrierImgPath "$clientFolder/favicon_$slugname.png";
  31.         if(file_exists($carrierImgPath))
  32.             return new BinaryFileResponse($carrierImgPath);
  33.         // 1b. Subfolder
  34.         $carrierImgPath "$clientFolder/favicon/$name.png";
  35.         if(file_exists($carrierImgPath))
  36.             return new BinaryFileResponse($carrierImgPath);
  37.         // 2. Client/Company favicon (eg [..]/Symfony/src/Client/Ouibus/favicon_default.png)
  38.         $clientImgPath "$clientFolder/favicon_default.png";
  39.         if (file_exists($clientImgPath))
  40.             return new BinaryFileResponse($clientImgPath);
  41.         // 3. Type favicon (eg [..]/Symfony/public/images/favicon/bus.png)
  42.         $imgDefaultType "$projectDir/public/images/favicon/$type.png";
  43.         return new BinaryFileResponse($imgDefaultType);
  44.     }
  45. }