vendor/nelmio/api-doc-bundle/Controller/SwaggerUiController.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the NelmioApiDocBundle package.
  4.  *
  5.  * (c) Nelmio
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Nelmio\ApiDocBundle\Controller;
  11. use Nelmio\ApiDocBundle\ApiDocGenerator;
  12. use Psr\Container\ContainerInterface;
  13. use Symfony\Component\DependencyInjection\ServiceLocator;
  14. use Symfony\Component\HttpFoundation\Request;
  15. use Symfony\Component\HttpFoundation\Response;
  16. use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
  17. use Twig\Environment;
  18. final class SwaggerUiController
  19. {
  20.     private $generatorLocator;
  21.     private $twig;
  22.     /**
  23.      * @param ContainerInterface $generatorLocator
  24.      */
  25.     public function __construct($generatorLocator$twig)
  26.     {
  27.         if (!$twig instanceof \Twig_Environment && !$twig instanceof Environment) {
  28.             throw new \InvalidArgumentException(sprintf('Providing an instance of "%s" as twig is not supported.'get_class($twig)));
  29.         }
  30.         if (!$generatorLocator instanceof ContainerInterface) {
  31.             if (!$generatorLocator instanceof ApiDocGenerator) {
  32.                 throw new \InvalidArgumentException(sprintf('Providing an instance of "%s" to "%s" is not supported.'get_class($generatorLocator), __METHOD__));
  33.             }
  34.             @trigger_error(sprintf('Providing an instance of "%s" to "%s()" is deprecated since version 3.1. Provide it an instance of "%s" instead.'ApiDocGenerator::class, __METHOD__ContainerInterface::class), E_USER_DEPRECATED);
  35.             $generatorLocator = new ServiceLocator(['default' => function () use ($generatorLocator): ApiDocGenerator {
  36.                 return $generatorLocator;
  37.             }]);
  38.         }
  39.         $this->generatorLocator $generatorLocator;
  40.         $this->twig $twig;
  41.     }
  42.     public function __invoke(Request $request$area 'default')
  43.     {
  44.         if (!$this->generatorLocator->has($area)) {
  45.             $advice '';
  46.             if (false !== strpos($area'.json')) {
  47.                 $advice ' Since the area provided contains `.json`, the issue is likely caused by route priorities. Try switching the Swagger UI / the json documentation routes order.';
  48.             }
  49.             throw new BadRequestHttpException(sprintf('Area "%s" is not supported as it isn\'t defined in config.%s'$area$advice));
  50.         }
  51.         $spec $this->generatorLocator->get($area)->generate()->toArray();
  52.         if ('' !== $request->getBaseUrl()) {
  53.             $spec['basePath'] = $request->getBaseUrl();
  54.         }
  55.         $response = new Response(
  56.             $this->twig->render('@NelmioApiDoc/SwaggerUi/index.html.twig', ['swagger_data' => ['spec' => $spec]]),
  57.             Response::HTTP_OK,
  58.             ['Content-Type' => 'text/html']
  59.         );
  60.         return $response->setCharset('UTF-8');
  61.     }
  62. }