<?php
namespace App\Controller\Api;
use App\Service\Client\ClientRepository;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/image",options={"i18n"=false})
*/
class ImagesController extends AbstractController {
/**
* Get favicon of carrier or client/company
*
* @Route("/getimage", name="getimage")
* @param string $projectDir Symfony project folder path injected. See https://symfony.com/blog/new-in-symfony-4-1-getting-container-parameters-as-a-service
*
* @ParamConverter("id", converter="querystring")
* @ParamConverter("name", converter="querystring")
* @ParamConverter("type", converter="querystring")
*/
public function getImage(string $projectDir, int $id, ?string $name, string $type, ClientRepository $clientRepo) : Response {
// 1. Carrier favicon (eg [..]/Symfony/src/Client/Ouibus/favicon_ouibus.png)
$clientFolder = $clientRepo->find($id)->getReflectionFolder();
$carrierImgPath = "$clientFolder/favicon_$name.png";
if(file_exists($carrierImgPath))
return new BinaryFileResponse($carrierImgPath);
$slugname = str_replace(" ", "-", strtolower($name));
$carrierImgPath = "$clientFolder/favicon_$slugname.png";
if(file_exists($carrierImgPath))
return new BinaryFileResponse($carrierImgPath);
// 1b. Subfolder
$carrierImgPath = "$clientFolder/favicon/$name.png";
if(file_exists($carrierImgPath))
return new BinaryFileResponse($carrierImgPath);
// 2. Client/Company favicon (eg [..]/Symfony/src/Client/Ouibus/favicon_default.png)
$clientImgPath = "$clientFolder/favicon_default.png";
if (file_exists($clientImgPath))
return new BinaryFileResponse($clientImgPath);
// 3. Type favicon (eg [..]/Symfony/public/images/favicon/bus.png)
$imgDefaultType = "$projectDir/public/images/favicon/$type.png";
return new BinaryFileResponse($imgDefaultType);
}
}