vendor/symfony/http-kernel/HttpCache/HttpCache.php line 188

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. /*
  11.  * This code is partially based on the Rack-Cache library by Ryan Tomayko,
  12.  * which is released under the MIT license.
  13.  * (based on commit 02d2b48d75bcb63cf1c0c7149c077ad256542801)
  14.  */
  15. namespace Symfony\Component\HttpKernel\HttpCache;
  16. use Symfony\Component\HttpFoundation\Request;
  17. use Symfony\Component\HttpFoundation\Response;
  18. use Symfony\Component\HttpKernel\HttpKernelInterface;
  19. use Symfony\Component\HttpKernel\TerminableInterface;
  20. /**
  21.  * Cache provides HTTP caching.
  22.  *
  23.  * @author Fabien Potencier <fabien@symfony.com>
  24.  */
  25. class HttpCache implements HttpKernelInterfaceTerminableInterface
  26. {
  27.     public const BODY_EVAL_BOUNDARY_LENGTH 24;
  28.     private HttpKernelInterface $kernel;
  29.     private StoreInterface $store;
  30.     private Request $request;
  31.     private ?SurrogateInterface $surrogate;
  32.     private ?ResponseCacheStrategyInterface $surrogateCacheStrategy null;
  33.     private array $options = [];
  34.     private array $traces = [];
  35.     /**
  36.      * Constructor.
  37.      *
  38.      * The available options are:
  39.      *
  40.      *   * debug                  If true, exceptions are thrown when things go wrong. Otherwise, the cache
  41.      *                            will try to carry on and deliver a meaningful response.
  42.      *
  43.      *   * trace_level            May be one of 'none', 'short' and 'full'. For 'short', a concise trace of the
  44.      *                            main request will be added as an HTTP header. 'full' will add traces for all
  45.      *                            requests (including ESI subrequests). (default: 'full' if in debug; 'none' otherwise)
  46.      *
  47.      *   * trace_header           Header name to use for traces. (default: X-Symfony-Cache)
  48.      *
  49.      *   * default_ttl            The number of seconds that a cache entry should be considered
  50.      *                            fresh when no explicit freshness information is provided in
  51.      *                            a response. Explicit Cache-Control or Expires headers
  52.      *                            override this value. (default: 0)
  53.      *
  54.      *   * private_headers        Set of request headers that trigger "private" cache-control behavior
  55.      *                            on responses that don't explicitly state whether the response is
  56.      *                            public or private via a Cache-Control directive. (default: Authorization and Cookie)
  57.      *
  58.      *   * allow_reload           Specifies whether the client can force a cache reload by including a
  59.      *                            Cache-Control "no-cache" directive in the request. Set it to ``true``
  60.      *                            for compliance with RFC 2616. (default: false)
  61.      *
  62.      *   * allow_revalidate       Specifies whether the client can force a cache revalidate by including
  63.      *                            a Cache-Control "max-age=0" directive in the request. Set it to ``true``
  64.      *                            for compliance with RFC 2616. (default: false)
  65.      *
  66.      *   * stale_while_revalidate Specifies the default number of seconds (the granularity is the second as the
  67.      *                            Response TTL precision is a second) during which the cache can immediately return
  68.      *                            a stale response while it revalidates it in the background (default: 2).
  69.      *                            This setting is overridden by the stale-while-revalidate HTTP Cache-Control
  70.      *                            extension (see RFC 5861).
  71.      *
  72.      *   * stale_if_error         Specifies the default number of seconds (the granularity is the second) during which
  73.      *                            the cache can serve a stale response when an error is encountered (default: 60).
  74.      *                            This setting is overridden by the stale-if-error HTTP Cache-Control extension
  75.      *                            (see RFC 5861).
  76.      *
  77.      *   * terminate_on_cache_hit Specifies if the kernel.terminate event should be dispatched even when the cache
  78.      *                            was hit (default: true).
  79.      *                            Unless your application needs to process events on cache hits, it is recommended
  80.      *                            to set this to false to avoid having to bootstrap the Symfony framework on a cache hit.
  81.      */
  82.     public function __construct(HttpKernelInterface $kernelStoreInterface $storeSurrogateInterface $surrogate null, array $options = [])
  83.     {
  84.         $this->store $store;
  85.         $this->kernel $kernel;
  86.         $this->surrogate $surrogate;
  87.         // needed in case there is a fatal error because the backend is too slow to respond
  88.         register_shutdown_function($this->store->cleanup(...));
  89.         $this->options array_merge([
  90.             'debug' => false,
  91.             'default_ttl' => 0,
  92.             'private_headers' => ['Authorization''Cookie'],
  93.             'allow_reload' => false,
  94.             'allow_revalidate' => false,
  95.             'stale_while_revalidate' => 2,
  96.             'stale_if_error' => 60,
  97.             'trace_level' => 'none',
  98.             'trace_header' => 'X-Symfony-Cache',
  99.             'terminate_on_cache_hit' => true,
  100.         ], $options);
  101.         if (!isset($options['trace_level'])) {
  102.             $this->options['trace_level'] = $this->options['debug'] ? 'full' 'none';
  103.         }
  104.     }
  105.     /**
  106.      * Gets the current store.
  107.      */
  108.     public function getStore(): StoreInterface
  109.     {
  110.         return $this->store;
  111.     }
  112.     /**
  113.      * Returns an array of events that took place during processing of the last request.
  114.      */
  115.     public function getTraces(): array
  116.     {
  117.         return $this->traces;
  118.     }
  119.     private function addTraces(Response $response)
  120.     {
  121.         $traceString null;
  122.         if ('full' === $this->options['trace_level']) {
  123.             $traceString $this->getLog();
  124.         }
  125.         if ('short' === $this->options['trace_level'] && $masterId array_key_first($this->traces)) {
  126.             $traceString implode('/'$this->traces[$masterId]);
  127.         }
  128.         if (null !== $traceString) {
  129.             $response->headers->add([$this->options['trace_header'] => $traceString]);
  130.         }
  131.     }
  132.     /**
  133.      * Returns a log message for the events of the last request processing.
  134.      */
  135.     public function getLog(): string
  136.     {
  137.         $log = [];
  138.         foreach ($this->traces as $request => $traces) {
  139.             $log[] = sprintf('%s: %s'$requestimplode(', '$traces));
  140.         }
  141.         return implode('; '$log);
  142.     }
  143.     /**
  144.      * Gets the Request instance associated with the main request.
  145.      */
  146.     public function getRequest(): Request
  147.     {
  148.         return $this->request;
  149.     }
  150.     /**
  151.      * Gets the Kernel instance.
  152.      */
  153.     public function getKernel(): HttpKernelInterface
  154.     {
  155.         return $this->kernel;
  156.     }
  157.     /**
  158.      * Gets the Surrogate instance.
  159.      *
  160.      * @throws \LogicException
  161.      */
  162.     public function getSurrogate(): SurrogateInterface
  163.     {
  164.         return $this->surrogate;
  165.     }
  166.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  167.     {
  168.         // FIXME: catch exceptions and implement a 500 error page here? -> in Varnish, there is a built-in error page mechanism
  169.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  170.             $this->traces = [];
  171.             // Keep a clone of the original request for surrogates so they can access it.
  172.             // We must clone here to get a separate instance because the application will modify the request during
  173.             // the application flow (we know it always does because we do ourselves by setting REMOTE_ADDR to 127.0.0.1
  174.             // and adding the X-Forwarded-For header, see HttpCache::forward()).
  175.             $this->request = clone $request;
  176.             if (null !== $this->surrogate) {
  177.                 $this->surrogateCacheStrategy $this->surrogate->createCacheStrategy();
  178.             }
  179.         }
  180.         $this->traces[$this->getTraceKey($request)] = [];
  181.         if (!$request->isMethodSafe()) {
  182.             $response $this->invalidate($request$catch);
  183.         } elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {
  184.             $response $this->pass($request$catch);
  185.         } elseif ($this->options['allow_reload'] && $request->isNoCache()) {
  186.             /*
  187.                 If allow_reload is configured and the client requests "Cache-Control: no-cache",
  188.                 reload the cache by fetching a fresh response and caching it (if possible).
  189.             */
  190.             $this->record($request'reload');
  191.             $response $this->fetch($request$catch);
  192.         } else {
  193.             $response $this->lookup($request$catch);
  194.         }
  195.         $this->restoreResponseBody($request$response);
  196.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  197.             $this->addTraces($response);
  198.         }
  199.         if (null !== $this->surrogate) {
  200.             if (HttpKernelInterface::MAIN_REQUEST === $type) {
  201.                 $this->surrogateCacheStrategy->update($response);
  202.             } else {
  203.                 $this->surrogateCacheStrategy->add($response);
  204.             }
  205.         }
  206.         $response->prepare($request);
  207.         $response->isNotModified($request);
  208.         return $response;
  209.     }
  210.     public function terminate(Request $requestResponse $response)
  211.     {
  212.         // Do not call any listeners in case of a cache hit.
  213.         // This ensures identical behavior as if you had a separate
  214.         // reverse caching proxy such as Varnish and the like.
  215.         if ($this->options['terminate_on_cache_hit']) {
  216.             trigger_deprecation('symfony/http-kernel''6.2''Setting "terminate_on_cache_hit" to "true" is deprecated and will be changed to "false" in Symfony 7.0.');
  217.         } elseif (\in_array('fresh'$this->traces[$this->getTraceKey($request)] ?? [], true)) {
  218.             return;
  219.         }
  220.         if ($this->getKernel() instanceof TerminableInterface) {
  221.             $this->getKernel()->terminate($request$response);
  222.         }
  223.     }
  224.     /**
  225.      * Forwards the Request to the backend without storing the Response in the cache.
  226.      *
  227.      * @param bool $catch Whether to process exceptions
  228.      */
  229.     protected function pass(Request $requestbool $catch false): Response
  230.     {
  231.         $this->record($request'pass');
  232.         return $this->forward($request$catch);
  233.     }
  234.     /**
  235.      * Invalidates non-safe methods (like POST, PUT, and DELETE).
  236.      *
  237.      * @param bool $catch Whether to process exceptions
  238.      *
  239.      * @throws \Exception
  240.      *
  241.      * @see RFC2616 13.10
  242.      */
  243.     protected function invalidate(Request $requestbool $catch false): Response
  244.     {
  245.         $response $this->pass($request$catch);
  246.         // invalidate only when the response is successful
  247.         if ($response->isSuccessful() || $response->isRedirect()) {
  248.             try {
  249.                 $this->store->invalidate($request);
  250.                 // As per the RFC, invalidate Location and Content-Location URLs if present
  251.                 foreach (['Location''Content-Location'] as $header) {
  252.                     if ($uri $response->headers->get($header)) {
  253.                         $subRequest Request::create($uri'get', [], [], [], $request->server->all());
  254.                         $this->store->invalidate($subRequest);
  255.                     }
  256.                 }
  257.                 $this->record($request'invalidate');
  258.             } catch (\Exception $e) {
  259.                 $this->record($request'invalidate-failed');
  260.                 if ($this->options['debug']) {
  261.                     throw $e;
  262.                 }
  263.             }
  264.         }
  265.         return $response;
  266.     }
  267.     /**
  268.      * Lookups a Response from the cache for the given Request.
  269.      *
  270.      * When a matching cache entry is found and is fresh, it uses it as the
  271.      * response without forwarding any request to the backend. When a matching
  272.      * cache entry is found but is stale, it attempts to "validate" the entry with
  273.      * the backend using conditional GET. When no matching cache entry is found,
  274.      * it triggers "miss" processing.
  275.      *
  276.      * @param bool $catch Whether to process exceptions
  277.      *
  278.      * @throws \Exception
  279.      */
  280.     protected function lookup(Request $requestbool $catch false): Response
  281.     {
  282.         try {
  283.             $entry $this->store->lookup($request);
  284.         } catch (\Exception $e) {
  285.             $this->record($request'lookup-failed');
  286.             if ($this->options['debug']) {
  287.                 throw $e;
  288.             }
  289.             return $this->pass($request$catch);
  290.         }
  291.         if (null === $entry) {
  292.             $this->record($request'miss');
  293.             return $this->fetch($request$catch);
  294.         }
  295.         if (!$this->isFreshEnough($request$entry)) {
  296.             $this->record($request'stale');
  297.             return $this->validate($request$entry$catch);
  298.         }
  299.         if ($entry->headers->hasCacheControlDirective('no-cache')) {
  300.             return $this->validate($request$entry$catch);
  301.         }
  302.         $this->record($request'fresh');
  303.         $entry->headers->set('Age'$entry->getAge());
  304.         return $entry;
  305.     }
  306.     /**
  307.      * Validates that a cache entry is fresh.
  308.      *
  309.      * The original request is used as a template for a conditional
  310.      * GET request with the backend.
  311.      *
  312.      * @param bool $catch Whether to process exceptions
  313.      */
  314.     protected function validate(Request $requestResponse $entrybool $catch false): Response
  315.     {
  316.         $subRequest = clone $request;
  317.         // send no head requests because we want content
  318.         if ('HEAD' === $request->getMethod()) {
  319.             $subRequest->setMethod('GET');
  320.         }
  321.         // add our cached last-modified validator
  322.         if ($entry->headers->has('Last-Modified')) {
  323.             $subRequest->headers->set('If-Modified-Since'$entry->headers->get('Last-Modified'));
  324.         }
  325.         // Add our cached etag validator to the environment.
  326.         // We keep the etags from the client to handle the case when the client
  327.         // has a different private valid entry which is not cached here.
  328.         $cachedEtags $entry->getEtag() ? [$entry->getEtag()] : [];
  329.         $requestEtags $request->getETags();
  330.         if ($etags array_unique(array_merge($cachedEtags$requestEtags))) {
  331.             $subRequest->headers->set('If-None-Match'implode(', '$etags));
  332.         }
  333.         $response $this->forward($subRequest$catch$entry);
  334.         if (304 == $response->getStatusCode()) {
  335.             $this->record($request'valid');
  336.             // return the response and not the cache entry if the response is valid but not cached
  337.             $etag $response->getEtag();
  338.             if ($etag && \in_array($etag$requestEtags) && !\in_array($etag$cachedEtags)) {
  339.                 return $response;
  340.             }
  341.             $entry = clone $entry;
  342.             $entry->headers->remove('Date');
  343.             foreach (['Date''Expires''Cache-Control''ETag''Last-Modified'] as $name) {
  344.                 if ($response->headers->has($name)) {
  345.                     $entry->headers->set($name$response->headers->get($name));
  346.                 }
  347.             }
  348.             $response $entry;
  349.         } else {
  350.             $this->record($request'invalid');
  351.         }
  352.         if ($response->isCacheable()) {
  353.             $this->store($request$response);
  354.         }
  355.         return $response;
  356.     }
  357.     /**
  358.      * Unconditionally fetches a fresh response from the backend and
  359.      * stores it in the cache if is cacheable.
  360.      *
  361.      * @param bool $catch Whether to process exceptions
  362.      */
  363.     protected function fetch(Request $requestbool $catch false): Response
  364.     {
  365.         $subRequest = clone $request;
  366.         // send no head requests because we want content
  367.         if ('HEAD' === $request->getMethod()) {
  368.             $subRequest->setMethod('GET');
  369.         }
  370.         // avoid that the backend sends no content
  371.         $subRequest->headers->remove('If-Modified-Since');
  372.         $subRequest->headers->remove('If-None-Match');
  373.         $response $this->forward($subRequest$catch);
  374.         if ($response->isCacheable()) {
  375.             $this->store($request$response);
  376.         }
  377.         return $response;
  378.     }
  379.     /**
  380.      * Forwards the Request to the backend and returns the Response.
  381.      *
  382.      * All backend requests (cache passes, fetches, cache validations)
  383.      * run through this method.
  384.      *
  385.      * @param bool          $catch Whether to catch exceptions or not
  386.      * @param Response|null $entry A Response instance (the stale entry if present, null otherwise)
  387.      *
  388.      * @return Response
  389.      */
  390.     protected function forward(Request $requestbool $catch falseResponse $entry null)
  391.     {
  392.         $this->surrogate?->addSurrogateCapability($request);
  393.         // always a "master" request (as the real master request can be in cache)
  394.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MAIN_REQUEST$catch);
  395.         /*
  396.          * Support stale-if-error given on Responses or as a config option.
  397.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  398.          * Cache-Control directives) that
  399.          *
  400.          *      A cache MUST NOT generate a stale response if it is prohibited by an
  401.          *      explicit in-protocol directive (e.g., by a "no-store" or "no-cache"
  402.          *      cache directive, a "must-revalidate" cache-response-directive, or an
  403.          *      applicable "s-maxage" or "proxy-revalidate" cache-response-directive;
  404.          *      see Section 5.2.2).
  405.          *
  406.          * https://tools.ietf.org/html/rfc7234#section-4.2.4
  407.          *
  408.          * We deviate from this in one detail, namely that we *do* serve entries in the
  409.          * stale-if-error case even if they have a `s-maxage` Cache-Control directive.
  410.          */
  411.         if (null !== $entry
  412.             && \in_array($response->getStatusCode(), [500502503504])
  413.             && !$entry->headers->hasCacheControlDirective('no-cache')
  414.             && !$entry->mustRevalidate()
  415.         ) {
  416.             if (null === $age $entry->headers->getCacheControlDirective('stale-if-error')) {
  417.                 $age $this->options['stale_if_error'];
  418.             }
  419.             /*
  420.              * stale-if-error gives the (extra) time that the Response may be used *after* it has become stale.
  421.              * So we compare the time the $entry has been sitting in the cache already with the
  422.              * time it was fresh plus the allowed grace period.
  423.              */
  424.             if ($entry->getAge() <= $entry->getMaxAge() + $age) {
  425.                 $this->record($request'stale-if-error');
  426.                 return $entry;
  427.             }
  428.         }
  429.         /*
  430.             RFC 7231 Sect. 7.1.1.2 says that a server that does not have a reasonably accurate
  431.             clock MUST NOT send a "Date" header, although it MUST send one in most other cases
  432.             except for 1xx or 5xx responses where it MAY do so.
  433.             Anyway, a client that received a message without a "Date" header MUST add it.
  434.         */
  435.         if (!$response->headers->has('Date')) {
  436.             $response->setDate(\DateTimeImmutable::createFromFormat('U'time()));
  437.         }
  438.         $this->processResponseBody($request$response);
  439.         if ($this->isPrivateRequest($request) && !$response->headers->hasCacheControlDirective('public')) {
  440.             $response->setPrivate();
  441.         } elseif ($this->options['default_ttl'] > && null === $response->getTtl() && !$response->headers->getCacheControlDirective('must-revalidate')) {
  442.             $response->setTtl($this->options['default_ttl']);
  443.         }
  444.         return $response;
  445.     }
  446.     /**
  447.      * Checks whether the cache entry is "fresh enough" to satisfy the Request.
  448.      */
  449.     protected function isFreshEnough(Request $requestResponse $entry): bool
  450.     {
  451.         if (!$entry->isFresh()) {
  452.             return $this->lock($request$entry);
  453.         }
  454.         if ($this->options['allow_revalidate'] && null !== $maxAge $request->headers->getCacheControlDirective('max-age')) {
  455.             return $maxAge && $maxAge >= $entry->getAge();
  456.         }
  457.         return true;
  458.     }
  459.     /**
  460.      * Locks a Request during the call to the backend.
  461.      *
  462.      * @return bool true if the cache entry can be returned even if it is staled, false otherwise
  463.      */
  464.     protected function lock(Request $requestResponse $entry): bool
  465.     {
  466.         // try to acquire a lock to call the backend
  467.         $lock $this->store->lock($request);
  468.         if (true === $lock) {
  469.             // we have the lock, call the backend
  470.             return false;
  471.         }
  472.         // there is already another process calling the backend
  473.         // May we serve a stale response?
  474.         if ($this->mayServeStaleWhileRevalidate($entry)) {
  475.             $this->record($request'stale-while-revalidate');
  476.             return true;
  477.         }
  478.         // wait for the lock to be released
  479.         if ($this->waitForLock($request)) {
  480.             // replace the current entry with the fresh one
  481.             $new $this->lookup($request);
  482.             $entry->headers $new->headers;
  483.             $entry->setContent($new->getContent());
  484.             $entry->setStatusCode($new->getStatusCode());
  485.             $entry->setProtocolVersion($new->getProtocolVersion());
  486.             foreach ($new->headers->getCookies() as $cookie) {
  487.                 $entry->headers->setCookie($cookie);
  488.             }
  489.         } else {
  490.             // backend is slow as hell, send a 503 response (to avoid the dog pile effect)
  491.             $entry->setStatusCode(503);
  492.             $entry->setContent('503 Service Unavailable');
  493.             $entry->headers->set('Retry-After'10);
  494.         }
  495.         return true;
  496.     }
  497.     /**
  498.      * Writes the Response to the cache.
  499.      *
  500.      * @throws \Exception
  501.      */
  502.     protected function store(Request $requestResponse $response)
  503.     {
  504.         try {
  505.             $this->store->write($request$response);
  506.             $this->record($request'store');
  507.             $response->headers->set('Age'$response->getAge());
  508.         } catch (\Exception $e) {
  509.             $this->record($request'store-failed');
  510.             if ($this->options['debug']) {
  511.                 throw $e;
  512.             }
  513.         }
  514.         // now that the response is cached, release the lock
  515.         $this->store->unlock($request);
  516.     }
  517.     /**
  518.      * Restores the Response body.
  519.      */
  520.     private function restoreResponseBody(Request $requestResponse $response)
  521.     {
  522.         if ($response->headers->has('X-Body-Eval')) {
  523.             \assert(self::BODY_EVAL_BOUNDARY_LENGTH === 24);
  524.             ob_start();
  525.             $content $response->getContent();
  526.             $boundary substr($content024);
  527.             $j strpos($content$boundary24);
  528.             echo substr($content24$j 24);
  529.             $i $j 24;
  530.             while (false !== $j strpos($content$boundary$i)) {
  531.                 [$uri$alt$ignoreErrors$part] = explode("\n"substr($content$i$j $i), 4);
  532.                 $i $j 24;
  533.                 echo $this->surrogate->handle($this$uri$alt$ignoreErrors);
  534.                 echo $part;
  535.             }
  536.             $response->setContent(ob_get_clean());
  537.             $response->headers->remove('X-Body-Eval');
  538.             if (!$response->headers->has('Transfer-Encoding')) {
  539.                 $response->headers->set('Content-Length'\strlen($response->getContent()));
  540.             }
  541.         } elseif ($response->headers->has('X-Body-File')) {
  542.             // Response does not include possibly dynamic content (ESI, SSI), so we need
  543.             // not handle the content for HEAD requests
  544.             if (!$request->isMethod('HEAD')) {
  545.                 $response->setContent(file_get_contents($response->headers->get('X-Body-File')));
  546.             }
  547.         } else {
  548.             return;
  549.         }
  550.         $response->headers->remove('X-Body-File');
  551.     }
  552.     protected function processResponseBody(Request $requestResponse $response)
  553.     {
  554.         if ($this->surrogate?->needsParsing($response)) {
  555.             $this->surrogate->process($request$response);
  556.         }
  557.     }
  558.     /**
  559.      * Checks if the Request includes authorization or other sensitive information
  560.      * that should cause the Response to be considered private by default.
  561.      */
  562.     private function isPrivateRequest(Request $request): bool
  563.     {
  564.         foreach ($this->options['private_headers'] as $key) {
  565.             $key strtolower(str_replace('HTTP_'''$key));
  566.             if ('cookie' === $key) {
  567.                 if (\count($request->cookies->all())) {
  568.                     return true;
  569.                 }
  570.             } elseif ($request->headers->has($key)) {
  571.                 return true;
  572.             }
  573.         }
  574.         return false;
  575.     }
  576.     /**
  577.      * Records that an event took place.
  578.      */
  579.     private function record(Request $requeststring $event)
  580.     {
  581.         $this->traces[$this->getTraceKey($request)][] = $event;
  582.     }
  583.     /**
  584.      * Calculates the key we use in the "trace" array for a given request.
  585.      */
  586.     private function getTraceKey(Request $request): string
  587.     {
  588.         $path $request->getPathInfo();
  589.         if ($qs $request->getQueryString()) {
  590.             $path .= '?'.$qs;
  591.         }
  592.         return $request->getMethod().' '.$path;
  593.     }
  594.     /**
  595.      * Checks whether the given (cached) response may be served as "stale" when a revalidation
  596.      * is currently in progress.
  597.      */
  598.     private function mayServeStaleWhileRevalidate(Response $entry): bool
  599.     {
  600.         $timeout $entry->headers->getCacheControlDirective('stale-while-revalidate');
  601.         $timeout ??= $this->options['stale_while_revalidate'];
  602.         $age $entry->getAge();
  603.         $maxAge $entry->getMaxAge() ?? 0;
  604.         $ttl $maxAge $age;
  605.         return abs($ttl) < $timeout;
  606.     }
  607.     /**
  608.      * Waits for the store to release a locked entry.
  609.      */
  610.     private function waitForLock(Request $request): bool
  611.     {
  612.         $wait 0;
  613.         while ($this->store->isLocked($request) && $wait 100) {
  614.             usleep(50000);
  615.             ++$wait;
  616.         }
  617.         return $wait 100;
  618.     }
  619. }