src/Controller/Api/DocController.php line 38

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Api;
  3. use App\Service\AuthorizationService;
  4. use FOS\RestBundle\Controller\AbstractFOSRestController;
  5. use Psr\Container\ContainerInterface;
  6. use Symfony\Component\Filesystem\Filesystem;
  7. use Nelmio\ApiDocBundle\Render\Html\AssetsMode;
  8. use Symfony\Component\HttpFoundation\RedirectResponse;
  9. use Symfony\Component\HttpFoundation\RequestStack;
  10. use Symfony\Component\HttpFoundation\Response;
  11. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  12. use Symfony\Component\Routing\Annotation\Route;
  13. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  14. use Twig\Environment;
  15. /**
  16.  * Class DocController
  17.  * @package App\Controller
  18.  */
  19. class DocController extends AbstractFOSRestController
  20. {
  21.     private string $env 'dev';
  22.     private ContainerInterface $serviceLocator;
  23.     private Environment $twig;
  24.     /**
  25.      * GenerateApiDocCommand constructor.
  26.      *
  27.      * @param ContainerInterface $swaggerServiceLocator
  28.      * @param \Twig\Environment $twig
  29.      */
  30.     public function __construct(
  31.         string $env 'dev',
  32.         ContainerInterface $swaggerServiceLocator,
  33.         Environment $twig
  34.     ) {
  35.         $this->serviceLocator $swaggerServiceLocator;
  36.         $this->twig           $twig;
  37.     }
  38.     /**
  39.      * @Route("/api/doc/login", name="app_doc_login")
  40.      * @param AuthenticationUtils $authenticationUtils
  41.      *
  42.      * @return Response
  43.      */
  44.     public function login(AuthenticationUtils $authenticationUtils): Response
  45.     {
  46.         // get the login error if there is one
  47.         $error $authenticationUtils->getLastAuthenticationError();
  48.         // last username entered by the user
  49.         $lastUsername $authenticationUtils->getLastUsername();
  50.         return $this->render('security/login.html.twig', [
  51.             'last_username'        => $lastUsername,
  52.             'error'                => $error,
  53.             'csrf_token_intention' => 'authenticate',
  54.             'username_parameter'   => 'email',
  55.             'password_parameter'   => 'password',
  56.         ]);
  57.     }
  58.     /**
  59.      * @Route("/api/doc/logout", name="app_doc_logout", methods={"GET"})
  60.      * @throws \Exception
  61.      */
  62.     public function logout(): RedirectResponse
  63.     {
  64.         return new RedirectResponse('/api/doc/login');
  65.     }
  66.     /**
  67.      * @Route(path="/api/doc/", methods={"GET"})
  68.      *
  69.      *
  70.      * @return Response
  71.      * @throws \Twig\Error\LoaderError
  72.      * @throws \Twig\Error\RuntimeError
  73.      * @throws \Twig\Error\SyntaxError
  74.      */
  75.     public function getDoc(RequestStack $requestAuthorizationService $authorizationService): Response
  76.     {
  77.         $spec $this->serviceLocator->get("default")->generate();
  78.         return new Response(
  79.             $this->twig->render('@NelmioApiDoc/SwaggerUi/index.html.twig', [
  80.                 'swagger_data'      => ['spec' => $spec],
  81.                 'assets_mode'       => AssetsMode::BUNDLE,
  82.                 'swagger_ui_config' => [],
  83.             ]),
  84.             Response::HTTP_OK,
  85.             ['Content-Type' => 'text/html']
  86.         );
  87.     }
  88. }