vendor/shopware/core/Checkout/Shipping/SalesChannel/CachedShippingMethodRoute.php line 70
<?php declare(strict_types=1);namespace Shopware\Core\Checkout\Shipping\SalesChannel;use Shopware\Core\Checkout\Shipping\Event\ShippingMethodRouteCacheKeyEvent;use Shopware\Core\Checkout\Shipping\Event\ShippingMethodRouteCacheTagsEvent;use Shopware\Core\Framework\Adapter\Cache\AbstractCacheTracer;use Shopware\Core\Framework\Adapter\Cache\CacheValueCompressor;use Shopware\Core\Framework\DataAbstractionLayer\Cache\EntityCacheKeyGenerator;use Shopware\Core\Framework\DataAbstractionLayer\Field\Flag\RuleAreas;use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;use Shopware\Core\Framework\Log\Package;use Shopware\Core\Framework\Util\Json;use Shopware\Core\System\SalesChannel\SalesChannelContext;use Shopware\Core\System\SalesChannel\StoreApiResponse;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\Routing\Annotation\Route;use Symfony\Contracts\Cache\CacheInterface;use Symfony\Contracts\Cache\ItemInterface;use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;#[Route(defaults: ['_routeScope' => ['store-api']])]#[Package('checkout')]class CachedShippingMethodRoute extends AbstractShippingMethodRoute{final public const ALL_TAG = 'shipping-method-route';/*** @internal** @param AbstractCacheTracer<ShippingMethodRouteResponse> $tracer* @param array<string> $states*/public function __construct(private readonly AbstractShippingMethodRoute $decorated,private readonly CacheInterface $cache,private readonly EntityCacheKeyGenerator $generator,private readonly AbstractCacheTracer $tracer,private readonly EventDispatcherInterface $dispatcher,private readonly array $states) {}public function getDecorated(): AbstractShippingMethodRoute{return $this->decorated;}#[Route(path: '/store-api/shipping-method', name: 'store-api.shipping.method', methods: ['GET', 'POST'], defaults: ['_entity' => 'shipping_method'])]public function load(Request $request, SalesChannelContext $context, Criteria $criteria): ShippingMethodRouteResponse{if ($context->hasState(...$this->states)) {return $this->getDecorated()->load($request, $context, $criteria);}$key = $this->generateKey($request, $context, $criteria);if ($key === null) {return $this->getDecorated()->load($request, $context, $criteria);}$value = $this->cache->get($key, function (ItemInterface $item) use ($request, $context, $criteria) {$name = self::buildName($context->getSalesChannelId());$response = $this->tracer->trace($name, fn () => $this->getDecorated()->load($request, $context, $criteria));$item->tag($this->generateTags($request, $response, $context, $criteria));return CacheValueCompressor::compress($response);});return CacheValueCompressor::uncompress($value);}public static function buildName(string $salesChannelId): string{return 'shipping-method-route-' . $salesChannelId;}private function generateKey(Request $request, SalesChannelContext $context, Criteria $criteria): ?string{$parts = [$this->generator->getCriteriaHash($criteria),$this->generator->getSalesChannelContextHash($context, [RuleAreas::SHIPPING_AREA]),$request->query->getBoolean('onlyAvailable', false),];$event = new ShippingMethodRouteCacheKeyEvent($parts, $request, $context, $criteria);$this->dispatcher->dispatch($event);if (!$event->shouldCache()) {return null;}return self::buildName($context->getSalesChannelId()) . '-' . md5(Json::encode($event->getParts()));}/*** @return array<string>*/private function generateTags(Request $request, StoreApiResponse $response, SalesChannelContext $context, Criteria $criteria): array{$tags = array_merge($this->tracer->get(self::buildName($context->getSalesChannelId())),[self::buildName($context->getSalesChannelId()), self::ALL_TAG]);$event = new ShippingMethodRouteCacheTagsEvent($tags, $request, $response, $context, $criteria);$this->dispatcher->dispatch($event);return array_unique(array_filter($event->getTags()));}}