BinaryFileResponse.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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. use Symfony\Component\HttpFoundation\File\File;
  12. use Symfony\Component\HttpFoundation\File\Exception\FileException;
  13. /**
  14. * BinaryFileResponse represents an HTTP response delivering a file.
  15. *
  16. * @author Niklas Fiekas <niklas.fiekas@tu-clausthal.de>
  17. * @author stealth35 <stealth35-php@live.fr>
  18. * @author Igor Wiedler <igor@wiedler.ch>
  19. * @author Jordan Alliot <jordan.alliot@gmail.com>
  20. * @author Sergey Linnik <linniksa@gmail.com>
  21. */
  22. class BinaryFileResponse extends Response
  23. {
  24. protected static $trustXSendfileTypeHeader = false;
  25. /**
  26. * @var File
  27. */
  28. protected $file;
  29. protected $offset;
  30. protected $maxlen;
  31. protected $deleteFileAfterSend = false;
  32. /**
  33. * @param \SplFileInfo|string $file The file to stream
  34. * @param int $status The response status code
  35. * @param array $headers An array of response headers
  36. * @param bool $public Files are public by default
  37. * @param null|string $contentDisposition The type of Content-Disposition to set automatically with the filename
  38. * @param bool $autoEtag Whether the ETag header should be automatically set
  39. * @param bool $autoLastModified Whether the Last-Modified header should be automatically set
  40. */
  41. public function __construct($file, int $status = 200, array $headers = array(), bool $public = true, string $contentDisposition = null, bool $autoEtag = false, bool $autoLastModified = true)
  42. {
  43. parent::__construct(null, $status, $headers);
  44. $this->setFile($file, $contentDisposition, $autoEtag, $autoLastModified);
  45. if ($public) {
  46. $this->setPublic();
  47. }
  48. }
  49. /**
  50. * @param \SplFileInfo|string $file The file to stream
  51. * @param int $status The response status code
  52. * @param array $headers An array of response headers
  53. * @param bool $public Files are public by default
  54. * @param null|string $contentDisposition The type of Content-Disposition to set automatically with the filename
  55. * @param bool $autoEtag Whether the ETag header should be automatically set
  56. * @param bool $autoLastModified Whether the Last-Modified header should be automatically set
  57. *
  58. * @return static
  59. */
  60. public static function create($file = null, $status = 200, $headers = array(), $public = true, $contentDisposition = null, $autoEtag = false, $autoLastModified = true)
  61. {
  62. return new static($file, $status, $headers, $public, $contentDisposition, $autoEtag, $autoLastModified);
  63. }
  64. /**
  65. * Sets the file to stream.
  66. *
  67. * @param \SplFileInfo|string $file The file to stream
  68. * @param string $contentDisposition
  69. * @param bool $autoEtag
  70. * @param bool $autoLastModified
  71. *
  72. * @return $this
  73. *
  74. * @throws FileException
  75. */
  76. public function setFile($file, $contentDisposition = null, $autoEtag = false, $autoLastModified = true)
  77. {
  78. if (!$file instanceof File) {
  79. if ($file instanceof \SplFileInfo) {
  80. $file = new File($file->getPathname());
  81. } else {
  82. $file = new File((string) $file);
  83. }
  84. }
  85. if (!$file->isReadable()) {
  86. throw new FileException('File must be readable.');
  87. }
  88. $this->file = $file;
  89. if ($autoEtag) {
  90. $this->setAutoEtag();
  91. }
  92. if ($autoLastModified) {
  93. $this->setAutoLastModified();
  94. }
  95. if ($contentDisposition) {
  96. $this->setContentDisposition($contentDisposition);
  97. }
  98. return $this;
  99. }
  100. /**
  101. * Gets the file.
  102. *
  103. * @return File The file to stream
  104. */
  105. public function getFile()
  106. {
  107. return $this->file;
  108. }
  109. /**
  110. * Automatically sets the Last-Modified header according the file modification date.
  111. */
  112. public function setAutoLastModified()
  113. {
  114. $this->setLastModified(\DateTime::createFromFormat('U', $this->file->getMTime()));
  115. return $this;
  116. }
  117. /**
  118. * Automatically sets the ETag header according to the checksum of the file.
  119. */
  120. public function setAutoEtag()
  121. {
  122. $this->setEtag(base64_encode(hash_file('sha256', $this->file->getPathname(), true)));
  123. return $this;
  124. }
  125. /**
  126. * Sets the Content-Disposition header with the given filename.
  127. *
  128. * @param string $disposition ResponseHeaderBag::DISPOSITION_INLINE or ResponseHeaderBag::DISPOSITION_ATTACHMENT
  129. * @param string $filename Optionally use this UTF-8 encoded filename instead of the real name of the file
  130. * @param string $filenameFallback A fallback filename, containing only ASCII characters. Defaults to an automatically encoded filename
  131. *
  132. * @return $this
  133. */
  134. public function setContentDisposition($disposition, $filename = '', $filenameFallback = '')
  135. {
  136. if ('' === $filename) {
  137. $filename = $this->file->getFilename();
  138. }
  139. if ('' === $filenameFallback && (!preg_match('/^[\x20-\x7e]*$/', $filename) || false !== strpos($filename, '%'))) {
  140. $encoding = mb_detect_encoding($filename, null, true) ?: '8bit';
  141. for ($i = 0, $filenameLength = mb_strlen($filename, $encoding); $i < $filenameLength; ++$i) {
  142. $char = mb_substr($filename, $i, 1, $encoding);
  143. if ('%' === $char || ord($char) < 32 || ord($char) > 126) {
  144. $filenameFallback .= '_';
  145. } else {
  146. $filenameFallback .= $char;
  147. }
  148. }
  149. }
  150. $dispositionHeader = $this->headers->makeDisposition($disposition, $filename, $filenameFallback);
  151. $this->headers->set('Content-Disposition', $dispositionHeader);
  152. return $this;
  153. }
  154. /**
  155. * {@inheritdoc}
  156. */
  157. public function prepare(Request $request)
  158. {
  159. if (!$this->headers->has('Content-Type')) {
  160. $this->headers->set('Content-Type', $this->file->getMimeType() ?: 'application/octet-stream');
  161. }
  162. if ('HTTP/1.0' !== $request->server->get('SERVER_PROTOCOL')) {
  163. $this->setProtocolVersion('1.1');
  164. }
  165. $this->ensureIEOverSSLCompatibility($request);
  166. $this->offset = 0;
  167. $this->maxlen = -1;
  168. if (false === $fileSize = $this->file->getSize()) {
  169. return $this;
  170. }
  171. $this->headers->set('Content-Length', $fileSize);
  172. if (!$this->headers->has('Accept-Ranges')) {
  173. // Only accept ranges on safe HTTP methods
  174. $this->headers->set('Accept-Ranges', $request->isMethodSafe(false) ? 'bytes' : 'none');
  175. }
  176. if (self::$trustXSendfileTypeHeader && $request->headers->has('X-Sendfile-Type')) {
  177. // Use X-Sendfile, do not send any content.
  178. $type = $request->headers->get('X-Sendfile-Type');
  179. $path = $this->file->getRealPath();
  180. // Fall back to scheme://path for stream wrapped locations.
  181. if (false === $path) {
  182. $path = $this->file->getPathname();
  183. }
  184. if ('x-accel-redirect' === strtolower($type)) {
  185. // Do X-Accel-Mapping substitutions.
  186. // @link http://wiki.nginx.org/X-accel#X-Accel-Redirect
  187. $parts = HeaderUtils::split($request->headers->get('X-Accel-Mapping', ''), ',=');
  188. $mappings = HeaderUtils::combine($parts);
  189. foreach ($mappings as $pathPrefix => $location) {
  190. if (substr($path, 0, strlen($pathPrefix)) === $pathPrefix) {
  191. $path = $location.substr($path, strlen($pathPrefix));
  192. break;
  193. }
  194. }
  195. }
  196. $this->headers->set($type, $path);
  197. $this->maxlen = 0;
  198. } elseif ($request->headers->has('Range')) {
  199. // Process the range headers.
  200. if (!$request->headers->has('If-Range') || $this->hasValidIfRangeHeader($request->headers->get('If-Range'))) {
  201. $range = $request->headers->get('Range');
  202. list($start, $end) = explode('-', substr($range, 6), 2) + array(0);
  203. $end = ('' === $end) ? $fileSize - 1 : (int) $end;
  204. if ('' === $start) {
  205. $start = $fileSize - $end;
  206. $end = $fileSize - 1;
  207. } else {
  208. $start = (int) $start;
  209. }
  210. if ($start <= $end) {
  211. if ($start < 0 || $end > $fileSize - 1) {
  212. $this->setStatusCode(416);
  213. $this->headers->set('Content-Range', sprintf('bytes */%s', $fileSize));
  214. } elseif (0 !== $start || $end !== $fileSize - 1) {
  215. $this->maxlen = $end < $fileSize ? $end - $start + 1 : -1;
  216. $this->offset = $start;
  217. $this->setStatusCode(206);
  218. $this->headers->set('Content-Range', sprintf('bytes %s-%s/%s', $start, $end, $fileSize));
  219. $this->headers->set('Content-Length', $end - $start + 1);
  220. }
  221. }
  222. }
  223. }
  224. return $this;
  225. }
  226. private function hasValidIfRangeHeader($header)
  227. {
  228. if ($this->getEtag() === $header) {
  229. return true;
  230. }
  231. if (null === $lastModified = $this->getLastModified()) {
  232. return false;
  233. }
  234. return $lastModified->format('D, d M Y H:i:s').' GMT' === $header;
  235. }
  236. /**
  237. * Sends the file.
  238. *
  239. * {@inheritdoc}
  240. */
  241. public function sendContent()
  242. {
  243. if (!$this->isSuccessful()) {
  244. return parent::sendContent();
  245. }
  246. if (0 === $this->maxlen) {
  247. return $this;
  248. }
  249. $out = fopen('php://output', 'wb');
  250. $file = fopen($this->file->getPathname(), 'rb');
  251. stream_copy_to_stream($file, $out, $this->maxlen, $this->offset);
  252. fclose($out);
  253. fclose($file);
  254. if ($this->deleteFileAfterSend) {
  255. unlink($this->file->getPathname());
  256. }
  257. return $this;
  258. }
  259. /**
  260. * {@inheritdoc}
  261. *
  262. * @throws \LogicException when the content is not null
  263. */
  264. public function setContent($content)
  265. {
  266. if (null !== $content) {
  267. throw new \LogicException('The content cannot be set on a BinaryFileResponse instance.');
  268. }
  269. }
  270. /**
  271. * {@inheritdoc}
  272. *
  273. * @return false
  274. */
  275. public function getContent()
  276. {
  277. return false;
  278. }
  279. /**
  280. * Trust X-Sendfile-Type header.
  281. */
  282. public static function trustXSendfileTypeHeader()
  283. {
  284. self::$trustXSendfileTypeHeader = true;
  285. }
  286. /**
  287. * If this is set to true, the file will be unlinked after the request is send
  288. * Note: If the X-Sendfile header is used, the deleteFileAfterSend setting will not be used.
  289. *
  290. * @param bool $shouldDelete
  291. *
  292. * @return $this
  293. */
  294. public function deleteFileAfterSend($shouldDelete = true)
  295. {
  296. $this->deleteFileAfterSend = $shouldDelete;
  297. return $this;
  298. }
  299. }