<?php
namespace App\Infrastructure\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\HttpKernel\Event\ResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
class AppCorsSubscriber implements EventSubscriberInterface
{
public function onKernelRequest(RequestEvent $event): void
{
if (!$event->isMainRequest()) {
return;
}
if (Request::METHOD_PUT || Request::METHOD_PATCH || Request::METHOD_DELETE) {
$request = $event->getRequest();
if ($request->server->has('BROWSER-ID')) {
$request->headers->set('BROWSER-ID', $request->server->get('BROWSER-ID'));
}
}
if (Request::METHOD_OPTIONS === $event->getRequest()->getRealMethod()) {
$event->setResponse(new Response());
}
}
public function onKernelResponse(ResponseEvent $event)
{
$response = $event->getResponse();
$response->headers->set('Access-Control-Allow-Origin', '*');
$response->headers->set('Access-Control-Allow-Headers', '*');
$response->headers->set('Access-Control-Allow-Methods', '*');
$event->setResponse($response);
}
public static function getSubscribedEvents(): array
{
return [
KernelEvents::REQUEST => ['onKernelRequest', 9999],
KernelEvents::RESPONSE => ['onKernelResponse', 1],
];
}
}