<?php
declare(strict_types=1);
/*
* CoreShop
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - CoreShop Commercial License (CCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) CoreShop GmbH (https://www.coreshop.org)
* @license https://www.coreshop.org/license GPLv3 and CCL
*
*/
namespace CoreShop\Bundle\StoreBundle\Context\Debug;
use Symfony\Component\HttpFoundation\Cookie;
use Symfony\Component\HttpKernel\Event\ResponseEvent;
use Symfony\Component\HttpKernel\HttpKernelInterface;
final class DebugStorePersister
{
public function __construct(
private DebugStoreProviderInterface $debugStoreProvider,
) {
}
public function onKernelResponse(ResponseEvent $filterResponseEvent): void
{
if (HttpKernelInterface::SUB_REQUEST === $filterResponseEvent->getRequestType()) {
return;
}
$debugStoreCode = $this->debugStoreProvider->getStoreId($filterResponseEvent->getRequest());
if (null === $debugStoreCode) {
return;
}
$response = $filterResponseEvent->getResponse();
$response->headers->setCookie(new Cookie('_store_id', $debugStoreCode));
}
}