ResponseCacheStrategy.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. namespace Symfony\Component\HttpKernel\HttpCache;
  11. use Symfony\Component\HttpFoundation\Response;
  12. /**
  13. * ResponseCacheStrategy knows how to compute the Response cache HTTP header
  14. * based on the different response cache headers.
  15. *
  16. * This implementation changes the master response TTL to the smallest TTL received
  17. * or force validation if one of the surrogates has validation cache strategy.
  18. *
  19. * @author Fabien Potencier <fabien@symfony.com>
  20. */
  21. class ResponseCacheStrategy implements ResponseCacheStrategyInterface
  22. {
  23. /**
  24. * Cache-Control headers that are sent to the final response if they appear in ANY of the responses.
  25. */
  26. private const OVERRIDE_DIRECTIVES = ['private', 'no-cache', 'no-store', 'no-transform', 'must-revalidate', 'proxy-revalidate'];
  27. /**
  28. * Cache-Control headers that are sent to the final response if they appear in ALL of the responses.
  29. */
  30. private const INHERIT_DIRECTIVES = ['public', 'immutable'];
  31. private $embeddedResponses = 0;
  32. private $isNotCacheableResponseEmbedded = false;
  33. private $age = 0;
  34. private $flagDirectives = [
  35. 'no-cache' => null,
  36. 'no-store' => null,
  37. 'no-transform' => null,
  38. 'must-revalidate' => null,
  39. 'proxy-revalidate' => null,
  40. 'public' => null,
  41. 'private' => null,
  42. 'immutable' => null,
  43. ];
  44. private $ageDirectives = [
  45. 'max-age' => null,
  46. 's-maxage' => null,
  47. 'expires' => null,
  48. ];
  49. /**
  50. * {@inheritdoc}
  51. */
  52. public function add(Response $response)
  53. {
  54. ++$this->embeddedResponses;
  55. foreach (self::OVERRIDE_DIRECTIVES as $directive) {
  56. if ($response->headers->hasCacheControlDirective($directive)) {
  57. $this->flagDirectives[$directive] = true;
  58. }
  59. }
  60. foreach (self::INHERIT_DIRECTIVES as $directive) {
  61. if (false !== $this->flagDirectives[$directive]) {
  62. $this->flagDirectives[$directive] = $response->headers->hasCacheControlDirective($directive);
  63. }
  64. }
  65. $age = $response->getAge();
  66. $this->age = max($this->age, $age);
  67. if ($this->willMakeFinalResponseUncacheable($response)) {
  68. $this->isNotCacheableResponseEmbedded = true;
  69. return;
  70. }
  71. $this->storeRelativeAgeDirective('max-age', $response->headers->getCacheControlDirective('max-age'), $age);
  72. $this->storeRelativeAgeDirective('s-maxage', $response->headers->getCacheControlDirective('s-maxage') ?: $response->headers->getCacheControlDirective('max-age'), $age);
  73. $expires = $response->getExpires();
  74. $expires = null !== $expires ? (int) $expires->format('U') - (int) $response->getDate()->format('U') : null;
  75. $this->storeRelativeAgeDirective('expires', $expires >= 0 ? $expires : null, 0);
  76. }
  77. /**
  78. * {@inheritdoc}
  79. */
  80. public function update(Response $response)
  81. {
  82. // if we have no embedded Response, do nothing
  83. if (0 === $this->embeddedResponses) {
  84. return;
  85. }
  86. // Remove validation related headers of the master response,
  87. // because some of the response content comes from at least
  88. // one embedded response (which likely has a different caching strategy).
  89. $response->setEtag(null);
  90. $response->setLastModified(null);
  91. $this->add($response);
  92. $response->headers->set('Age', $this->age);
  93. if ($this->isNotCacheableResponseEmbedded) {
  94. if ($this->flagDirectives['no-store']) {
  95. $response->headers->set('Cache-Control', 'no-cache, no-store, must-revalidate');
  96. } else {
  97. $response->headers->set('Cache-Control', 'no-cache, must-revalidate');
  98. }
  99. return;
  100. }
  101. $flags = array_filter($this->flagDirectives);
  102. if (isset($flags['must-revalidate'])) {
  103. $flags['no-cache'] = true;
  104. }
  105. $response->headers->set('Cache-Control', implode(', ', array_keys($flags)));
  106. $maxAge = null;
  107. if (is_numeric($this->ageDirectives['max-age'])) {
  108. $maxAge = $this->ageDirectives['max-age'] + $this->age;
  109. $response->headers->addCacheControlDirective('max-age', $maxAge);
  110. }
  111. if (is_numeric($this->ageDirectives['s-maxage'])) {
  112. $sMaxage = $this->ageDirectives['s-maxage'] + $this->age;
  113. if ($maxAge !== $sMaxage) {
  114. $response->headers->addCacheControlDirective('s-maxage', $sMaxage);
  115. }
  116. }
  117. if (is_numeric($this->ageDirectives['expires'])) {
  118. $date = clone $response->getDate();
  119. $date->modify('+'.($this->ageDirectives['expires'] + $this->age).' seconds');
  120. $response->setExpires($date);
  121. }
  122. }
  123. /**
  124. * RFC2616, Section 13.4.
  125. *
  126. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4
  127. */
  128. private function willMakeFinalResponseUncacheable(Response $response): bool
  129. {
  130. // RFC2616: A response received with a status code of 200, 203, 300, 301 or 410
  131. // MAY be stored by a cache […] unless a cache-control directive prohibits caching.
  132. if ($response->headers->hasCacheControlDirective('no-cache')
  133. || $response->headers->getCacheControlDirective('no-store')
  134. ) {
  135. return true;
  136. }
  137. // Last-Modified and Etag headers cannot be merged, they render the response uncacheable
  138. // by default (except if the response also has max-age etc.).
  139. if (\in_array($response->getStatusCode(), [200, 203, 300, 301, 410])
  140. && null === $response->getLastModified()
  141. && null === $response->getEtag()
  142. ) {
  143. return false;
  144. }
  145. // RFC2616: A response received with any other status code (e.g. status codes 302 and 307)
  146. // MUST NOT be returned in a reply to a subsequent request unless there are
  147. // cache-control directives or another header(s) that explicitly allow it.
  148. $cacheControl = ['max-age', 's-maxage', 'must-revalidate', 'proxy-revalidate', 'public', 'private'];
  149. foreach ($cacheControl as $key) {
  150. if ($response->headers->hasCacheControlDirective($key)) {
  151. return false;
  152. }
  153. }
  154. if ($response->headers->has('Expires')) {
  155. return false;
  156. }
  157. return true;
  158. }
  159. /**
  160. * Store lowest max-age/s-maxage/expires for the final response.
  161. *
  162. * The response might have been stored in cache a while ago. To keep things comparable,
  163. * we have to subtract the age so that the value is normalized for an age of 0.
  164. *
  165. * If the value is lower than the currently stored value, we update the value, to keep a rolling
  166. * minimal value of each instruction. If the value is NULL, the directive will not be set on the final response.
  167. */
  168. private function storeRelativeAgeDirective(string $directive, ?int $value, int $age)
  169. {
  170. if (null === $value) {
  171. $this->ageDirectives[$directive] = false;
  172. }
  173. if (false !== $this->ageDirectives[$directive]) {
  174. $value -= $age;
  175. $this->ageDirectives[$directive] = null !== $this->ageDirectives[$directive] ? min($this->ageDirectives[$directive], $value) : $value;
  176. }
  177. }
  178. }