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