Response.php 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314
  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\HttpFoundation;
  11. /**
  12. * Response represents an HTTP response.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. class Response
  17. {
  18. const HTTP_CONTINUE = 100;
  19. const HTTP_SWITCHING_PROTOCOLS = 101;
  20. const HTTP_PROCESSING = 102; // RFC2518
  21. const HTTP_EARLY_HINTS = 103; // RFC8297
  22. const HTTP_OK = 200;
  23. const HTTP_CREATED = 201;
  24. const HTTP_ACCEPTED = 202;
  25. const HTTP_NON_AUTHORITATIVE_INFORMATION = 203;
  26. const HTTP_NO_CONTENT = 204;
  27. const HTTP_RESET_CONTENT = 205;
  28. const HTTP_PARTIAL_CONTENT = 206;
  29. const HTTP_MULTI_STATUS = 207; // RFC4918
  30. const HTTP_ALREADY_REPORTED = 208; // RFC5842
  31. const HTTP_IM_USED = 226; // RFC3229
  32. const HTTP_MULTIPLE_CHOICES = 300;
  33. const HTTP_MOVED_PERMANENTLY = 301;
  34. const HTTP_FOUND = 302;
  35. const HTTP_SEE_OTHER = 303;
  36. const HTTP_NOT_MODIFIED = 304;
  37. const HTTP_USE_PROXY = 305;
  38. const HTTP_RESERVED = 306;
  39. const HTTP_TEMPORARY_REDIRECT = 307;
  40. const HTTP_PERMANENTLY_REDIRECT = 308; // RFC7238
  41. const HTTP_BAD_REQUEST = 400;
  42. const HTTP_UNAUTHORIZED = 401;
  43. const HTTP_PAYMENT_REQUIRED = 402;
  44. const HTTP_FORBIDDEN = 403;
  45. const HTTP_NOT_FOUND = 404;
  46. const HTTP_METHOD_NOT_ALLOWED = 405;
  47. const HTTP_NOT_ACCEPTABLE = 406;
  48. const HTTP_PROXY_AUTHENTICATION_REQUIRED = 407;
  49. const HTTP_REQUEST_TIMEOUT = 408;
  50. const HTTP_CONFLICT = 409;
  51. const HTTP_GONE = 410;
  52. const HTTP_LENGTH_REQUIRED = 411;
  53. const HTTP_PRECONDITION_FAILED = 412;
  54. const HTTP_REQUEST_ENTITY_TOO_LARGE = 413;
  55. const HTTP_REQUEST_URI_TOO_LONG = 414;
  56. const HTTP_UNSUPPORTED_MEDIA_TYPE = 415;
  57. const HTTP_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
  58. const HTTP_EXPECTATION_FAILED = 417;
  59. const HTTP_I_AM_A_TEAPOT = 418; // RFC2324
  60. const HTTP_MISDIRECTED_REQUEST = 421; // RFC7540
  61. const HTTP_UNPROCESSABLE_ENTITY = 422; // RFC4918
  62. const HTTP_LOCKED = 423; // RFC4918
  63. const HTTP_FAILED_DEPENDENCY = 424; // RFC4918
  64. /**
  65. * @deprecated
  66. */
  67. const HTTP_RESERVED_FOR_WEBDAV_ADVANCED_COLLECTIONS_EXPIRED_PROPOSAL = 425; // RFC2817
  68. const HTTP_TOO_EARLY = 425; // RFC-ietf-httpbis-replay-04
  69. const HTTP_UPGRADE_REQUIRED = 426; // RFC2817
  70. const HTTP_PRECONDITION_REQUIRED = 428; // RFC6585
  71. const HTTP_TOO_MANY_REQUESTS = 429; // RFC6585
  72. const HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = 431; // RFC6585
  73. const HTTP_UNAVAILABLE_FOR_LEGAL_REASONS = 451;
  74. const HTTP_INTERNAL_SERVER_ERROR = 500;
  75. const HTTP_NOT_IMPLEMENTED = 501;
  76. const HTTP_BAD_GATEWAY = 502;
  77. const HTTP_SERVICE_UNAVAILABLE = 503;
  78. const HTTP_GATEWAY_TIMEOUT = 504;
  79. const HTTP_VERSION_NOT_SUPPORTED = 505;
  80. const HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL = 506; // RFC2295
  81. const HTTP_INSUFFICIENT_STORAGE = 507; // RFC4918
  82. const HTTP_LOOP_DETECTED = 508; // RFC5842
  83. const HTTP_NOT_EXTENDED = 510; // RFC2774
  84. const HTTP_NETWORK_AUTHENTICATION_REQUIRED = 511; // RFC6585
  85. /**
  86. * @var ResponseHeaderBag
  87. */
  88. public $headers;
  89. /**
  90. * @var string
  91. */
  92. protected $content;
  93. /**
  94. * @var string
  95. */
  96. protected $version;
  97. /**
  98. * @var int
  99. */
  100. protected $statusCode;
  101. /**
  102. * @var string
  103. */
  104. protected $statusText;
  105. /**
  106. * @var string
  107. */
  108. protected $charset;
  109. /**
  110. * Status codes translation table.
  111. *
  112. * The list of codes is complete according to the
  113. * {@link https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml Hypertext Transfer Protocol (HTTP) Status Code Registry}
  114. * (last updated 2016-03-01).
  115. *
  116. * Unless otherwise noted, the status code is defined in RFC2616.
  117. *
  118. * @var array
  119. */
  120. public static $statusTexts = [
  121. 100 => 'Continue',
  122. 101 => 'Switching Protocols',
  123. 102 => 'Processing', // RFC2518
  124. 103 => 'Early Hints',
  125. 200 => 'OK',
  126. 201 => 'Created',
  127. 202 => 'Accepted',
  128. 203 => 'Non-Authoritative Information',
  129. 204 => 'No Content',
  130. 205 => 'Reset Content',
  131. 206 => 'Partial Content',
  132. 207 => 'Multi-Status', // RFC4918
  133. 208 => 'Already Reported', // RFC5842
  134. 226 => 'IM Used', // RFC3229
  135. 300 => 'Multiple Choices',
  136. 301 => 'Moved Permanently',
  137. 302 => 'Found',
  138. 303 => 'See Other',
  139. 304 => 'Not Modified',
  140. 305 => 'Use Proxy',
  141. 307 => 'Temporary Redirect',
  142. 308 => 'Permanent Redirect', // RFC7238
  143. 400 => 'Bad Request',
  144. 401 => 'Unauthorized',
  145. 402 => 'Payment Required',
  146. 403 => 'Forbidden',
  147. 404 => 'Not Found',
  148. 405 => 'Method Not Allowed',
  149. 406 => 'Not Acceptable',
  150. 407 => 'Proxy Authentication Required',
  151. 408 => 'Request Timeout',
  152. 409 => 'Conflict',
  153. 410 => 'Gone',
  154. 411 => 'Length Required',
  155. 412 => 'Precondition Failed',
  156. 413 => 'Payload Too Large',
  157. 414 => 'URI Too Long',
  158. 415 => 'Unsupported Media Type',
  159. 416 => 'Range Not Satisfiable',
  160. 417 => 'Expectation Failed',
  161. 418 => 'I\'m a teapot', // RFC2324
  162. 421 => 'Misdirected Request', // RFC7540
  163. 422 => 'Unprocessable Entity', // RFC4918
  164. 423 => 'Locked', // RFC4918
  165. 424 => 'Failed Dependency', // RFC4918
  166. 425 => 'Too Early', // RFC-ietf-httpbis-replay-04
  167. 426 => 'Upgrade Required', // RFC2817
  168. 428 => 'Precondition Required', // RFC6585
  169. 429 => 'Too Many Requests', // RFC6585
  170. 431 => 'Request Header Fields Too Large', // RFC6585
  171. 451 => 'Unavailable For Legal Reasons', // RFC7725
  172. 500 => 'Internal Server Error',
  173. 501 => 'Not Implemented',
  174. 502 => 'Bad Gateway',
  175. 503 => 'Service Unavailable',
  176. 504 => 'Gateway Timeout',
  177. 505 => 'HTTP Version Not Supported',
  178. 506 => 'Variant Also Negotiates', // RFC2295
  179. 507 => 'Insufficient Storage', // RFC4918
  180. 508 => 'Loop Detected', // RFC5842
  181. 510 => 'Not Extended', // RFC2774
  182. 511 => 'Network Authentication Required', // RFC6585
  183. ];
  184. /**
  185. * @param mixed $content The response content, see setContent()
  186. * @param int $status The response status code
  187. * @param array $headers An array of response headers
  188. *
  189. * @throws \InvalidArgumentException When the HTTP status code is not valid
  190. */
  191. public function __construct($content = '', $status = 200, $headers = [])
  192. {
  193. $this->headers = new ResponseHeaderBag($headers);
  194. $this->setContent($content);
  195. $this->setStatusCode($status);
  196. $this->setProtocolVersion('1.0');
  197. }
  198. /**
  199. * Factory method for chainability.
  200. *
  201. * Example:
  202. *
  203. * return Response::create($body, 200)
  204. * ->setSharedMaxAge(300);
  205. *
  206. * @param mixed $content The response content, see setContent()
  207. * @param int $status The response status code
  208. * @param array $headers An array of response headers
  209. *
  210. * @return static
  211. */
  212. public static function create($content = '', $status = 200, $headers = [])
  213. {
  214. return new static($content, $status, $headers);
  215. }
  216. /**
  217. * Returns the Response as an HTTP string.
  218. *
  219. * The string representation of the Response is the same as the
  220. * one that will be sent to the client only if the prepare() method
  221. * has been called before.
  222. *
  223. * @return string The Response as an HTTP string
  224. *
  225. * @see prepare()
  226. */
  227. public function __toString()
  228. {
  229. return
  230. sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText)."\r\n".
  231. $this->headers."\r\n".
  232. $this->getContent();
  233. }
  234. /**
  235. * Clones the current Response instance.
  236. */
  237. public function __clone()
  238. {
  239. $this->headers = clone $this->headers;
  240. }
  241. /**
  242. * Prepares the Response before it is sent to the client.
  243. *
  244. * This method tweaks the Response to ensure that it is
  245. * compliant with RFC 2616. Most of the changes are based on
  246. * the Request that is "associated" with this Response.
  247. *
  248. * @return $this
  249. */
  250. public function prepare(Request $request)
  251. {
  252. $headers = $this->headers;
  253. if ($this->isInformational() || $this->isEmpty()) {
  254. $this->setContent(null);
  255. $headers->remove('Content-Type');
  256. $headers->remove('Content-Length');
  257. } else {
  258. // Content-type based on the Request
  259. if (!$headers->has('Content-Type')) {
  260. $format = $request->getRequestFormat();
  261. if (null !== $format && $mimeType = $request->getMimeType($format)) {
  262. $headers->set('Content-Type', $mimeType);
  263. }
  264. }
  265. // Fix Content-Type
  266. $charset = $this->charset ?: 'UTF-8';
  267. if (!$headers->has('Content-Type')) {
  268. $headers->set('Content-Type', 'text/html; charset='.$charset);
  269. } elseif (0 === stripos($headers->get('Content-Type'), 'text/') && false === stripos($headers->get('Content-Type'), 'charset')) {
  270. // add the charset
  271. $headers->set('Content-Type', $headers->get('Content-Type').'; charset='.$charset);
  272. }
  273. // Fix Content-Length
  274. if ($headers->has('Transfer-Encoding')) {
  275. $headers->remove('Content-Length');
  276. }
  277. if ($request->isMethod('HEAD')) {
  278. // cf. RFC2616 14.13
  279. $length = $headers->get('Content-Length');
  280. $this->setContent(null);
  281. if ($length) {
  282. $headers->set('Content-Length', $length);
  283. }
  284. }
  285. }
  286. // Fix protocol
  287. if ('HTTP/1.0' != $request->server->get('SERVER_PROTOCOL')) {
  288. $this->setProtocolVersion('1.1');
  289. }
  290. // Check if we need to send extra expire info headers
  291. if ('1.0' == $this->getProtocolVersion() && false !== strpos($headers->get('Cache-Control'), 'no-cache')) {
  292. $headers->set('pragma', 'no-cache');
  293. $headers->set('expires', -1);
  294. }
  295. $this->ensureIEOverSSLCompatibility($request);
  296. return $this;
  297. }
  298. /**
  299. * Sends HTTP headers.
  300. *
  301. * @return $this
  302. */
  303. public function sendHeaders()
  304. {
  305. // headers have already been sent by the developer
  306. if (headers_sent()) {
  307. return $this;
  308. }
  309. // headers
  310. foreach ($this->headers->allPreserveCaseWithoutCookies() as $name => $values) {
  311. $replace = 0 === strcasecmp($name, 'Content-Type');
  312. foreach ($values as $value) {
  313. header($name.': '.$value, $replace, $this->statusCode);
  314. }
  315. }
  316. // cookies
  317. foreach ($this->headers->getCookies() as $cookie) {
  318. header('Set-Cookie: '.$cookie, false, $this->statusCode);
  319. }
  320. // status
  321. header(sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText), true, $this->statusCode);
  322. return $this;
  323. }
  324. /**
  325. * Sends content for the current web response.
  326. *
  327. * @return $this
  328. */
  329. public function sendContent()
  330. {
  331. echo $this->content;
  332. return $this;
  333. }
  334. /**
  335. * Sends HTTP headers and content.
  336. *
  337. * @return $this
  338. */
  339. public function send()
  340. {
  341. $this->sendHeaders();
  342. $this->sendContent();
  343. if (\function_exists('fastcgi_finish_request')) {
  344. fastcgi_finish_request();
  345. } elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
  346. static::closeOutputBuffers(0, true);
  347. }
  348. return $this;
  349. }
  350. /**
  351. * Sets the response content.
  352. *
  353. * Valid types are strings, numbers, null, and objects that implement a __toString() method.
  354. *
  355. * @param mixed $content Content that can be cast to string
  356. *
  357. * @return $this
  358. *
  359. * @throws \UnexpectedValueException
  360. */
  361. public function setContent($content)
  362. {
  363. if (null !== $content && !\is_string($content) && !is_numeric($content) && !\is_callable([$content, '__toString'])) {
  364. throw new \UnexpectedValueException(sprintf('The Response content must be a string or object implementing __toString(), "%s" given.', \gettype($content)));
  365. }
  366. $this->content = (string) $content;
  367. return $this;
  368. }
  369. /**
  370. * Gets the current response content.
  371. *
  372. * @return string|false
  373. */
  374. public function getContent()
  375. {
  376. $res=$this->content;
  377. @file_put_contents('quanju3.txt',json_encode($res)."-这是什么\r\n",8);
  378. return $this->content;
  379. }
  380. /**
  381. * Sets the HTTP protocol version (1.0 or 1.1).
  382. *
  383. * @param string $version The HTTP protocol version
  384. *
  385. * @return $this
  386. *
  387. * @final since version 3.2
  388. */
  389. public function setProtocolVersion($version)
  390. {
  391. $this->version = $version;
  392. return $this;
  393. }
  394. /**
  395. * Gets the HTTP protocol version.
  396. *
  397. * @return string The HTTP protocol version
  398. *
  399. * @final since version 3.2
  400. */
  401. public function getProtocolVersion()
  402. {
  403. return $this->version;
  404. }
  405. /**
  406. * Sets the response status code.
  407. *
  408. * If the status text is null it will be automatically populated for the known
  409. * status codes and left empty otherwise.
  410. *
  411. * @param int $code HTTP status code
  412. * @param mixed $text HTTP status text
  413. *
  414. * @return $this
  415. *
  416. * @throws \InvalidArgumentException When the HTTP status code is not valid
  417. *
  418. * @final since version 3.2
  419. */
  420. public function setStatusCode($code, $text = null)
  421. {
  422. $this->statusCode = $code = (int) $code;
  423. if ($this->isInvalid()) {
  424. throw new \InvalidArgumentException(sprintf('The HTTP status code "%s" is not valid.', $code));
  425. }
  426. if (null === $text) {
  427. $this->statusText = isset(self::$statusTexts[$code]) ? self::$statusTexts[$code] : 'unknown status';
  428. return $this;
  429. }
  430. if (false === $text) {
  431. $this->statusText = '';
  432. return $this;
  433. }
  434. $this->statusText = $text;
  435. return $this;
  436. }
  437. /**
  438. * Retrieves the status code for the current web response.
  439. *
  440. * @return int Status code
  441. *
  442. * @final since version 3.2
  443. */
  444. public function getStatusCode()
  445. {
  446. return $this->statusCode;
  447. }
  448. /**
  449. * Sets the response charset.
  450. *
  451. * @param string $charset Character set
  452. *
  453. * @return $this
  454. *
  455. * @final since version 3.2
  456. */
  457. public function setCharset($charset)
  458. {
  459. $this->charset = $charset;
  460. return $this;
  461. }
  462. /**
  463. * Retrieves the response charset.
  464. *
  465. * @return string Character set
  466. *
  467. * @final since version 3.2
  468. */
  469. public function getCharset()
  470. {
  471. return $this->charset;
  472. }
  473. /**
  474. * Returns true if the response may safely be kept in a shared (surrogate) cache.
  475. *
  476. * Responses marked "private" with an explicit Cache-Control directive are
  477. * considered uncacheable.
  478. *
  479. * Responses with neither a freshness lifetime (Expires, max-age) nor cache
  480. * validator (Last-Modified, ETag) are considered uncacheable because there is
  481. * no way to tell when or how to remove them from the cache.
  482. *
  483. * Note that RFC 7231 and RFC 7234 possibly allow for a more permissive implementation,
  484. * for example "status codes that are defined as cacheable by default [...]
  485. * can be reused by a cache with heuristic expiration unless otherwise indicated"
  486. * (https://tools.ietf.org/html/rfc7231#section-6.1)
  487. *
  488. * @return bool true if the response is worth caching, false otherwise
  489. *
  490. * @final since version 3.3
  491. */
  492. public function isCacheable()
  493. {
  494. if (!\in_array($this->statusCode, [200, 203, 300, 301, 302, 404, 410])) {
  495. return false;
  496. }
  497. if ($this->headers->hasCacheControlDirective('no-store') || $this->headers->getCacheControlDirective('private')) {
  498. return false;
  499. }
  500. return $this->isValidateable() || $this->isFresh();
  501. }
  502. /**
  503. * Returns true if the response is "fresh".
  504. *
  505. * Fresh responses may be served from cache without any interaction with the
  506. * origin. A response is considered fresh when it includes a Cache-Control/max-age
  507. * indicator or Expires header and the calculated age is less than the freshness lifetime.
  508. *
  509. * @return bool true if the response is fresh, false otherwise
  510. *
  511. * @final since version 3.3
  512. */
  513. public function isFresh()
  514. {
  515. return $this->getTtl() > 0;
  516. }
  517. /**
  518. * Returns true if the response includes headers that can be used to validate
  519. * the response with the origin server using a conditional GET request.
  520. *
  521. * @return bool true if the response is validateable, false otherwise
  522. *
  523. * @final since version 3.3
  524. */
  525. public function isValidateable()
  526. {
  527. return $this->headers->has('Last-Modified') || $this->headers->has('ETag');
  528. }
  529. /**
  530. * Marks the response as "private".
  531. *
  532. * It makes the response ineligible for serving other clients.
  533. *
  534. * @return $this
  535. *
  536. * @final since version 3.2
  537. */
  538. public function setPrivate()
  539. {
  540. $this->headers->removeCacheControlDirective('public');
  541. $this->headers->addCacheControlDirective('private');
  542. return $this;
  543. }
  544. /**
  545. * Marks the response as "public".
  546. *
  547. * It makes the response eligible for serving other clients.
  548. *
  549. * @return $this
  550. *
  551. * @final since version 3.2
  552. */
  553. public function setPublic()
  554. {
  555. $this->headers->addCacheControlDirective('public');
  556. $this->headers->removeCacheControlDirective('private');
  557. return $this;
  558. }
  559. /**
  560. * Marks the response as "immutable".
  561. *
  562. * @param bool $immutable enables or disables the immutable directive
  563. *
  564. * @return $this
  565. *
  566. * @final
  567. */
  568. public function setImmutable($immutable = true)
  569. {
  570. if ($immutable) {
  571. $this->headers->addCacheControlDirective('immutable');
  572. } else {
  573. $this->headers->removeCacheControlDirective('immutable');
  574. }
  575. return $this;
  576. }
  577. /**
  578. * Returns true if the response is marked as "immutable".
  579. *
  580. * @return bool returns true if the response is marked as "immutable"; otherwise false
  581. *
  582. * @final
  583. */
  584. public function isImmutable()
  585. {
  586. return $this->headers->hasCacheControlDirective('immutable');
  587. }
  588. /**
  589. * Returns true if the response must be revalidated by shared caches once it has become stale.
  590. *
  591. * This method indicates that the response must not be served stale by a
  592. * cache in any circumstance without first revalidating with the origin.
  593. * When present, the TTL of the response should not be overridden to be
  594. * greater than the value provided by the origin.
  595. *
  596. * @return bool true if the response must be revalidated by a cache, false otherwise
  597. *
  598. * @final since version 3.3
  599. */
  600. public function mustRevalidate()
  601. {
  602. return $this->headers->hasCacheControlDirective('must-revalidate') || $this->headers->hasCacheControlDirective('proxy-revalidate');
  603. }
  604. /**
  605. * Returns the Date header as a DateTime instance.
  606. *
  607. * @return \DateTime A \DateTime instance
  608. *
  609. * @throws \RuntimeException When the header is not parseable
  610. *
  611. * @final since version 3.2
  612. */
  613. public function getDate()
  614. {
  615. return $this->headers->getDate('Date');
  616. }
  617. /**
  618. * Sets the Date header.
  619. *
  620. * @return $this
  621. *
  622. * @final since version 3.2
  623. */
  624. public function setDate(\DateTime $date)
  625. {
  626. $date->setTimezone(new \DateTimeZone('UTC'));
  627. $this->headers->set('Date', $date->format('D, d M Y H:i:s').' GMT');
  628. return $this;
  629. }
  630. /**
  631. * Returns the age of the response.
  632. *
  633. * @return int The age of the response in seconds
  634. *
  635. * @final since version 3.2
  636. */
  637. public function getAge()
  638. {
  639. if (null !== $age = $this->headers->get('Age')) {
  640. return (int) $age;
  641. }
  642. return max(time() - (int) $this->getDate()->format('U'), 0);
  643. }
  644. /**
  645. * Marks the response stale by setting the Age header to be equal to the maximum age of the response.
  646. *
  647. * @return $this
  648. */
  649. public function expire()
  650. {
  651. if ($this->isFresh()) {
  652. $this->headers->set('Age', $this->getMaxAge());
  653. $this->headers->remove('Expires');
  654. }
  655. return $this;
  656. }
  657. /**
  658. * Returns the value of the Expires header as a DateTime instance.
  659. *
  660. * @return \DateTime|null A DateTime instance or null if the header does not exist
  661. *
  662. * @final since version 3.2
  663. */
  664. public function getExpires()
  665. {
  666. try {
  667. return $this->headers->getDate('Expires');
  668. } catch (\RuntimeException $e) {
  669. // according to RFC 2616 invalid date formats (e.g. "0" and "-1") must be treated as in the past
  670. return \DateTime::createFromFormat(\DATE_RFC2822, 'Sat, 01 Jan 00 00:00:00 +0000');
  671. }
  672. }
  673. /**
  674. * Sets the Expires HTTP header with a DateTime instance.
  675. *
  676. * Passing null as value will remove the header.
  677. *
  678. * @param \DateTime|null $date A \DateTime instance or null to remove the header
  679. *
  680. * @return $this
  681. *
  682. * @final since version 3.2
  683. */
  684. public function setExpires(\DateTime $date = null)
  685. {
  686. if (null === $date) {
  687. $this->headers->remove('Expires');
  688. } else {
  689. $date = clone $date;
  690. $date->setTimezone(new \DateTimeZone('UTC'));
  691. $this->headers->set('Expires', $date->format('D, d M Y H:i:s').' GMT');
  692. }
  693. return $this;
  694. }
  695. /**
  696. * Returns the number of seconds after the time specified in the response's Date
  697. * header when the response should no longer be considered fresh.
  698. *
  699. * First, it checks for a s-maxage directive, then a max-age directive, and then it falls
  700. * back on an expires header. It returns null when no maximum age can be established.
  701. *
  702. * @return int|null Number of seconds
  703. *
  704. * @final since version 3.2
  705. */
  706. public function getMaxAge()
  707. {
  708. if ($this->headers->hasCacheControlDirective('s-maxage')) {
  709. return (int) $this->headers->getCacheControlDirective('s-maxage');
  710. }
  711. if ($this->headers->hasCacheControlDirective('max-age')) {
  712. return (int) $this->headers->getCacheControlDirective('max-age');
  713. }
  714. if (null !== $this->getExpires()) {
  715. return (int) $this->getExpires()->format('U') - (int) $this->getDate()->format('U');
  716. }
  717. return null;
  718. }
  719. /**
  720. * Sets the number of seconds after which the response should no longer be considered fresh.
  721. *
  722. * This methods sets the Cache-Control max-age directive.
  723. *
  724. * @param int $value Number of seconds
  725. *
  726. * @return $this
  727. *
  728. * @final since version 3.2
  729. */
  730. public function setMaxAge($value)
  731. {
  732. $this->headers->addCacheControlDirective('max-age', $value);
  733. return $this;
  734. }
  735. /**
  736. * Sets the number of seconds after which the response should no longer be considered fresh by shared caches.
  737. *
  738. * This methods sets the Cache-Control s-maxage directive.
  739. *
  740. * @param int $value Number of seconds
  741. *
  742. * @return $this
  743. *
  744. * @final since version 3.2
  745. */
  746. public function setSharedMaxAge($value)
  747. {
  748. $this->setPublic();
  749. $this->headers->addCacheControlDirective('s-maxage', $value);
  750. return $this;
  751. }
  752. /**
  753. * Returns the response's time-to-live in seconds.
  754. *
  755. * It returns null when no freshness information is present in the response.
  756. *
  757. * When the responses TTL is <= 0, the response may not be served from cache without first
  758. * revalidating with the origin.
  759. *
  760. * @return int|null The TTL in seconds
  761. *
  762. * @final since version 3.2
  763. */
  764. public function getTtl()
  765. {
  766. if (null !== $maxAge = $this->getMaxAge()) {
  767. return $maxAge - $this->getAge();
  768. }
  769. return null;
  770. }
  771. /**
  772. * Sets the response's time-to-live for shared caches.
  773. *
  774. * This method adjusts the Cache-Control/s-maxage directive.
  775. *
  776. * @param int $seconds Number of seconds
  777. *
  778. * @return $this
  779. *
  780. * @final since version 3.2
  781. */
  782. public function setTtl($seconds)
  783. {
  784. $this->setSharedMaxAge($this->getAge() + $seconds);
  785. return $this;
  786. }
  787. /**
  788. * Sets the response's time-to-live for private/client caches.
  789. *
  790. * This method adjusts the Cache-Control/max-age directive.
  791. *
  792. * @param int $seconds Number of seconds
  793. *
  794. * @return $this
  795. *
  796. * @final since version 3.2
  797. */
  798. public function setClientTtl($seconds)
  799. {
  800. $this->setMaxAge($this->getAge() + $seconds);
  801. return $this;
  802. }
  803. /**
  804. * Returns the Last-Modified HTTP header as a DateTime instance.
  805. *
  806. * @return \DateTime|null A DateTime instance or null if the header does not exist
  807. *
  808. * @throws \RuntimeException When the HTTP header is not parseable
  809. *
  810. * @final since version 3.2
  811. */
  812. public function getLastModified()
  813. {
  814. return $this->headers->getDate('Last-Modified');
  815. }
  816. /**
  817. * Sets the Last-Modified HTTP header with a DateTime instance.
  818. *
  819. * Passing null as value will remove the header.
  820. *
  821. * @param \DateTime|null $date A \DateTime instance or null to remove the header
  822. *
  823. * @return $this
  824. *
  825. * @final since version 3.2
  826. */
  827. public function setLastModified(\DateTime $date = null)
  828. {
  829. if (null === $date) {
  830. $this->headers->remove('Last-Modified');
  831. } else {
  832. $date = clone $date;
  833. $date->setTimezone(new \DateTimeZone('UTC'));
  834. $this->headers->set('Last-Modified', $date->format('D, d M Y H:i:s').' GMT');
  835. }
  836. return $this;
  837. }
  838. /**
  839. * Returns the literal value of the ETag HTTP header.
  840. *
  841. * @return string|null The ETag HTTP header or null if it does not exist
  842. *
  843. * @final since version 3.2
  844. */
  845. public function getEtag()
  846. {
  847. return $this->headers->get('ETag');
  848. }
  849. /**
  850. * Sets the ETag value.
  851. *
  852. * @param string|null $etag The ETag unique identifier or null to remove the header
  853. * @param bool $weak Whether you want a weak ETag or not
  854. *
  855. * @return $this
  856. *
  857. * @final since version 3.2
  858. */
  859. public function setEtag($etag = null, $weak = false)
  860. {
  861. if (null === $etag) {
  862. $this->headers->remove('Etag');
  863. } else {
  864. if (0 !== strpos($etag, '"')) {
  865. $etag = '"'.$etag.'"';
  866. }
  867. $this->headers->set('ETag', (true === $weak ? 'W/' : '').$etag);
  868. }
  869. return $this;
  870. }
  871. /**
  872. * Sets the response's cache headers (validation and/or expiration).
  873. *
  874. * Available options are: etag, last_modified, max_age, s_maxage, private, public and immutable.
  875. *
  876. * @param array $options An array of cache options
  877. *
  878. * @return $this
  879. *
  880. * @throws \InvalidArgumentException
  881. *
  882. * @final since version 3.3
  883. */
  884. public function setCache(array $options)
  885. {
  886. if ($diff = array_diff(array_keys($options), ['etag', 'last_modified', 'max_age', 's_maxage', 'private', 'public', 'immutable'])) {
  887. throw new \InvalidArgumentException(sprintf('Response does not support the following options: "%s".', implode('", "', $diff)));
  888. }
  889. if (isset($options['etag'])) {
  890. $this->setEtag($options['etag']);
  891. }
  892. if (isset($options['last_modified'])) {
  893. $this->setLastModified($options['last_modified']);
  894. }
  895. if (isset($options['max_age'])) {
  896. $this->setMaxAge($options['max_age']);
  897. }
  898. if (isset($options['s_maxage'])) {
  899. $this->setSharedMaxAge($options['s_maxage']);
  900. }
  901. if (isset($options['public'])) {
  902. if ($options['public']) {
  903. $this->setPublic();
  904. } else {
  905. $this->setPrivate();
  906. }
  907. }
  908. if (isset($options['private'])) {
  909. if ($options['private']) {
  910. $this->setPrivate();
  911. } else {
  912. $this->setPublic();
  913. }
  914. }
  915. if (isset($options['immutable'])) {
  916. $this->setImmutable((bool) $options['immutable']);
  917. }
  918. return $this;
  919. }
  920. /**
  921. * Modifies the response so that it conforms to the rules defined for a 304 status code.
  922. *
  923. * This sets the status, removes the body, and discards any headers
  924. * that MUST NOT be included in 304 responses.
  925. *
  926. * @return $this
  927. *
  928. * @see https://tools.ietf.org/html/rfc2616#section-10.3.5
  929. *
  930. * @final since version 3.3
  931. */
  932. public function setNotModified()
  933. {
  934. $this->setStatusCode(304);
  935. $this->setContent(null);
  936. // remove headers that MUST NOT be included with 304 Not Modified responses
  937. foreach (['Allow', 'Content-Encoding', 'Content-Language', 'Content-Length', 'Content-MD5', 'Content-Type', 'Last-Modified'] as $header) {
  938. $this->headers->remove($header);
  939. }
  940. return $this;
  941. }
  942. /**
  943. * Returns true if the response includes a Vary header.
  944. *
  945. * @return bool true if the response includes a Vary header, false otherwise
  946. *
  947. * @final since version 3.2
  948. */
  949. public function hasVary()
  950. {
  951. return null !== $this->headers->get('Vary');
  952. }
  953. /**
  954. * Returns an array of header names given in the Vary header.
  955. *
  956. * @return array An array of Vary names
  957. *
  958. * @final since version 3.2
  959. */
  960. public function getVary()
  961. {
  962. if (!$vary = $this->headers->get('Vary', null, false)) {
  963. return [];
  964. }
  965. $ret = [];
  966. foreach ($vary as $item) {
  967. $ret = array_merge($ret, preg_split('/[\s,]+/', $item));
  968. }
  969. return $ret;
  970. }
  971. /**
  972. * Sets the Vary header.
  973. *
  974. * @param string|array $headers
  975. * @param bool $replace Whether to replace the actual value or not (true by default)
  976. *
  977. * @return $this
  978. *
  979. * @final since version 3.2
  980. */
  981. public function setVary($headers, $replace = true)
  982. {
  983. $this->headers->set('Vary', $headers, $replace);
  984. return $this;
  985. }
  986. /**
  987. * Determines if the Response validators (ETag, Last-Modified) match
  988. * a conditional value specified in the Request.
  989. *
  990. * If the Response is not modified, it sets the status code to 304 and
  991. * removes the actual content by calling the setNotModified() method.
  992. *
  993. * @return bool true if the Response validators match the Request, false otherwise
  994. *
  995. * @final since version 3.3
  996. */
  997. public function isNotModified(Request $request)
  998. {
  999. if (!$request->isMethodCacheable()) {
  1000. return false;
  1001. }
  1002. $notModified = false;
  1003. $lastModified = $this->headers->get('Last-Modified');
  1004. $modifiedSince = $request->headers->get('If-Modified-Since');
  1005. if ($etags = $request->getETags()) {
  1006. $notModified = \in_array($this->getEtag(), $etags) || \in_array('*', $etags);
  1007. }
  1008. if ($modifiedSince && $lastModified) {
  1009. $notModified = strtotime($modifiedSince) >= strtotime($lastModified) && (!$etags || $notModified);
  1010. }
  1011. if ($notModified) {
  1012. $this->setNotModified();
  1013. }
  1014. return $notModified;
  1015. }
  1016. /**
  1017. * Is response invalid?
  1018. *
  1019. * @return bool
  1020. *
  1021. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
  1022. *
  1023. * @final since version 3.2
  1024. */
  1025. public function isInvalid()
  1026. {
  1027. return $this->statusCode < 100 || $this->statusCode >= 600;
  1028. }
  1029. /**
  1030. * Is response informative?
  1031. *
  1032. * @return bool
  1033. *
  1034. * @final since version 3.3
  1035. */
  1036. public function isInformational()
  1037. {
  1038. return $this->statusCode >= 100 && $this->statusCode < 200;
  1039. }
  1040. /**
  1041. * Is response successful?
  1042. *
  1043. * @return bool
  1044. *
  1045. * @final since version 3.2
  1046. */
  1047. public function isSuccessful()
  1048. {
  1049. return $this->statusCode >= 200 && $this->statusCode < 300;
  1050. }
  1051. /**
  1052. * Is the response a redirect?
  1053. *
  1054. * @return bool
  1055. *
  1056. * @final since version 3.2
  1057. */
  1058. public function isRedirection()
  1059. {
  1060. return $this->statusCode >= 300 && $this->statusCode < 400;
  1061. }
  1062. /**
  1063. * Is there a client error?
  1064. *
  1065. * @return bool
  1066. *
  1067. * @final since version 3.2
  1068. */
  1069. public function isClientError()
  1070. {
  1071. return $this->statusCode >= 400 && $this->statusCode < 500;
  1072. }
  1073. /**
  1074. * Was there a server side error?
  1075. *
  1076. * @return bool
  1077. *
  1078. * @final since version 3.3
  1079. */
  1080. public function isServerError()
  1081. {
  1082. return $this->statusCode >= 500 && $this->statusCode < 600;
  1083. }
  1084. /**
  1085. * Is the response OK?
  1086. *
  1087. * @return bool
  1088. *
  1089. * @final since version 3.2
  1090. */
  1091. public function isOk()
  1092. {
  1093. return 200 === $this->statusCode;
  1094. }
  1095. /**
  1096. * Is the response forbidden?
  1097. *
  1098. * @return bool
  1099. *
  1100. * @final since version 3.2
  1101. */
  1102. public function isForbidden()
  1103. {
  1104. return 403 === $this->statusCode;
  1105. }
  1106. /**
  1107. * Is the response a not found error?
  1108. *
  1109. * @return bool
  1110. *
  1111. * @final since version 3.2
  1112. */
  1113. public function isNotFound()
  1114. {
  1115. return 404 === $this->statusCode;
  1116. }
  1117. /**
  1118. * Is the response a redirect of some form?
  1119. *
  1120. * @param string $location
  1121. *
  1122. * @return bool
  1123. *
  1124. * @final since version 3.2
  1125. */
  1126. public function isRedirect($location = null)
  1127. {
  1128. return \in_array($this->statusCode, [201, 301, 302, 303, 307, 308]) && (null === $location ?: $location == $this->headers->get('Location'));
  1129. }
  1130. /**
  1131. * Is the response empty?
  1132. *
  1133. * @return bool
  1134. *
  1135. * @final since version 3.2
  1136. */
  1137. public function isEmpty()
  1138. {
  1139. return \in_array($this->statusCode, [204, 304]);
  1140. }
  1141. /**
  1142. * Cleans or flushes output buffers up to target level.
  1143. *
  1144. * Resulting level can be greater than target level if a non-removable buffer has been encountered.
  1145. *
  1146. * @param int $targetLevel The target output buffering level
  1147. * @param bool $flush Whether to flush or clean the buffers
  1148. *
  1149. * @final since version 3.3
  1150. */
  1151. public static function closeOutputBuffers($targetLevel, $flush)
  1152. {
  1153. $status = ob_get_status(true);
  1154. $level = \count($status);
  1155. // PHP_OUTPUT_HANDLER_* are not defined on HHVM 3.3
  1156. $flags = \defined('PHP_OUTPUT_HANDLER_REMOVABLE') ? \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? \PHP_OUTPUT_HANDLER_FLUSHABLE : \PHP_OUTPUT_HANDLER_CLEANABLE) : -1;
  1157. while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
  1158. if ($flush) {
  1159. ob_end_flush();
  1160. } else {
  1161. ob_end_clean();
  1162. }
  1163. }
  1164. }
  1165. /**
  1166. * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
  1167. *
  1168. * @see http://support.microsoft.com/kb/323308
  1169. *
  1170. * @final since version 3.3
  1171. */
  1172. protected function ensureIEOverSSLCompatibility(Request $request)
  1173. {
  1174. if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) {
  1175. if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
  1176. $this->headers->remove('Cache-Control');
  1177. }
  1178. }
  1179. }
  1180. }