src/Infrastructure/EventSubscriber/AppCorsSubscriber.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Infrastructure\EventSubscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\HttpKernel\Event\RequestEvent;
  7. use Symfony\Component\HttpKernel\Event\ResponseEvent;
  8. use Symfony\Component\HttpKernel\KernelEvents;
  9. class AppCorsSubscriber implements EventSubscriberInterface
  10. {
  11.     public function onKernelRequest(RequestEvent $event): void
  12.     {
  13.         if (!$event->isMainRequest()) {
  14.             return;
  15.         }
  16.         if (Request::METHOD_PUT || Request::METHOD_PATCH || Request::METHOD_DELETE) {
  17.             $request $event->getRequest();
  18.             
  19.             if ($request->server->has('BROWSER-ID')) {
  20.                 $request->headers->set('BROWSER-ID'$request->server->get('BROWSER-ID'));
  21.             }
  22.         }
  23.         if (Request::METHOD_OPTIONS === $event->getRequest()->getRealMethod()) {
  24.             $event->setResponse(new Response());
  25.         }
  26.     }
  27.     public function onKernelResponse(ResponseEvent $event)
  28.     {
  29.         $response $event->getResponse();
  30.         $response->headers->set('Access-Control-Allow-Origin''*');
  31.         $response->headers->set('Access-Control-Allow-Headers''*');
  32.         $response->headers->set('Access-Control-Allow-Methods''*');
  33.         $event->setResponse($response);
  34.     }
  35.     public static function getSubscribedEvents(): array
  36.     {
  37.         return [
  38.             KernelEvents::REQUEST => ['onKernelRequest'9999],
  39.             KernelEvents::RESPONSE => ['onKernelResponse'1],
  40.         ];
  41.     }
  42. }