StreamedResponse.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. * StreamedResponse represents a streamed HTTP response.
  13. *
  14. * A StreamedResponse uses a callback for its content.
  15. *
  16. * The callback should use the standard PHP functions like echo
  17. * to stream the response back to the client. The flush() function
  18. * can also be used if needed.
  19. *
  20. * @see flush()
  21. *
  22. * @author Fabien Potencier <fabien@symfony.com>
  23. */
  24. class StreamedResponse extends Response
  25. {
  26. protected $callback;
  27. protected $streamed;
  28. private $headersSent;
  29. /**
  30. * @param callable|null $callback A valid PHP callback or null to set it later
  31. * @param int $status The response status code
  32. * @param array $headers An array of response headers
  33. */
  34. public function __construct(callable $callback = null, int $status = 200, array $headers = [])
  35. {
  36. parent::__construct(null, $status, $headers);
  37. if (null !== $callback) {
  38. $this->setCallback($callback);
  39. }
  40. $this->streamed = false;
  41. $this->headersSent = false;
  42. }
  43. /**
  44. * Factory method for chainability.
  45. *
  46. * @param callable|null $callback A valid PHP callback or null to set it later
  47. * @param int $status The response status code
  48. * @param array $headers An array of response headers
  49. *
  50. * @return static
  51. */
  52. public static function create($callback = null, $status = 200, $headers = [])
  53. {
  54. return new static($callback, $status, $headers);
  55. }
  56. /**
  57. * Sets the PHP callback associated with this Response.
  58. *
  59. * @return $this
  60. */
  61. public function setCallback(callable $callback)
  62. {
  63. $this->callback = $callback;
  64. return $this;
  65. }
  66. /**
  67. * {@inheritdoc}
  68. *
  69. * This method only sends the headers once.
  70. *
  71. * @return $this
  72. */
  73. public function sendHeaders()
  74. {
  75. if ($this->headersSent) {
  76. return $this;
  77. }
  78. $this->headersSent = true;
  79. return parent::sendHeaders();
  80. }
  81. /**
  82. * {@inheritdoc}
  83. *
  84. * This method only sends the content once.
  85. *
  86. * @return $this
  87. */
  88. public function sendContent()
  89. {
  90. if ($this->streamed) {
  91. return $this;
  92. }
  93. $this->streamed = true;
  94. if (null === $this->callback) {
  95. throw new \LogicException('The Response callback must not be null.');
  96. }
  97. ($this->callback)();
  98. return $this;
  99. }
  100. /**
  101. * {@inheritdoc}
  102. *
  103. * @throws \LogicException when the content is not null
  104. *
  105. * @return $this
  106. */
  107. public function setContent($content)
  108. {
  109. if (null !== $content) {
  110. throw new \LogicException('The content cannot be set on a StreamedResponse instance.');
  111. }
  112. $this->streamed = true;
  113. return $this;
  114. }
  115. /**
  116. * {@inheritdoc}
  117. */
  118. public function getContent()
  119. {
  120. return false;
  121. }
  122. }