<?php
namespace App\Controller\Api;
use App\Service\AuthorizationService;
use FOS\RestBundle\Controller\AbstractFOSRestController;
use Psr\Container\ContainerInterface;
use Symfony\Component\Filesystem\Filesystem;
use Nelmio\ApiDocBundle\Render\Html\AssetsMode;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Twig\Environment;
/**
* Class DocController
* @package App\Controller
*/
class DocController extends AbstractFOSRestController
{
private string $env = 'dev';
private ContainerInterface $serviceLocator;
private Environment $twig;
/**
* GenerateApiDocCommand constructor.
*
* @param ContainerInterface $swaggerServiceLocator
* @param \Twig\Environment $twig
*/
public function __construct(
string $env = 'dev',
ContainerInterface $swaggerServiceLocator,
Environment $twig
) {
$this->serviceLocator = $swaggerServiceLocator;
$this->twig = $twig;
}
/**
* @Route("/api/doc/login", name="app_doc_login")
* @param AuthenticationUtils $authenticationUtils
*
* @return Response
*/
public function login(AuthenticationUtils $authenticationUtils): Response
{
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('security/login.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
'csrf_token_intention' => 'authenticate',
'username_parameter' => 'email',
'password_parameter' => 'password',
]);
}
/**
* @Route("/api/doc/logout", name="app_doc_logout", methods={"GET"})
* @throws \Exception
*/
public function logout(): RedirectResponse
{
return new RedirectResponse('/api/doc/login');
}
/**
* @Route(path="/api/doc/", methods={"GET"})
*
*
* @return Response
* @throws \Twig\Error\LoaderError
* @throws \Twig\Error\RuntimeError
* @throws \Twig\Error\SyntaxError
*/
public function getDoc(RequestStack $request, AuthorizationService $authorizationService): Response
{
$spec = $this->serviceLocator->get("default")->generate();
return new Response(
$this->twig->render('@NelmioApiDoc/SwaggerUi/index.html.twig', [
'swagger_data' => ['spec' => $spec],
'assets_mode' => AssetsMode::BUNDLE,
'swagger_ui_config' => [],
]),
Response::HTTP_OK,
['Content-Type' => 'text/html']
);
}
}