BinaryFileResponse.php 12 KB

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