class BinaryFileResponse
BinaryFileResponse represents an HTTP response delivering a file.
@author Niklas Fiekas <niklas.fiekas@tu-clausthal.de> @author stealth35 <stealth35-php@live.fr> @author Igor Wiedler <igor@wiedler.ch> @author Jordan Alliot <jordan.alliot@gmail.com> @author Sergey Linnik <linniksa@gmail.com>
Hierarchy
- class \Symfony\Component\HttpFoundation\Response
- class \Symfony\Component\HttpFoundation\BinaryFileResponse extends \Symfony\Component\HttpFoundation\Response
Expanded class hierarchy of BinaryFileResponse
6 files declare their use of BinaryFileResponse
- AssetControllerBase.php in core/
modules/ system/ src/ Controller/ AssetControllerBase.php - ExportForm.php in core/
modules/ locale/ src/ Form/ ExportForm.php - FileDownloadController.php in core/
modules/ system/ src/ FileDownloadController.php - ImageStyleDownloadController.php in core/
modules/ image/ src/ Controller/ ImageStyleDownloadController.php - PageCache.php in core/
modules/ page_cache/ src/ StackMiddleware/ PageCache.php
File
-
vendor/
symfony/ http-foundation/ BinaryFileResponse.php, line 26
Namespace
Symfony\Component\HttpFoundationView source
class BinaryFileResponse extends Response {
protected static bool $trustXSendfileTypeHeader = false;
protected File $file;
protected ?\SplTempFileObject $tempFileObject = null;
protected int $offset = 0;
protected int $maxlen = -1;
protected bool $deleteFileAfterSend = false;
protected int $chunkSize = 16 * 1024;
/**
* @param \SplFileInfo|string $file The file to stream
* @param int $status The response status code (200 "OK" by default)
* @param array $headers An array of response headers
* @param bool $public Files are public by default
* @param string|null $contentDisposition The type of Content-Disposition to set automatically with the filename
* @param bool $autoEtag Whether the ETag header should be automatically set
* @param bool $autoLastModified Whether the Last-Modified header should be automatically set
*/
public function __construct(\SplFileInfo|string $file, int $status = 200, array $headers = [], bool $public = true, ?string $contentDisposition = null, bool $autoEtag = false, bool $autoLastModified = true) {
parent::__construct(null, $status, $headers);
$this->setFile($file, $contentDisposition, $autoEtag, $autoLastModified);
if ($public) {
$this->setPublic();
}
}
/**
* Sets the file to stream.
*
* @return $this
*
* @throws FileException
*/
public function setFile(\SplFileInfo|string $file, ?string $contentDisposition = null, bool $autoEtag = false, bool $autoLastModified = true) : static {
$isTemporaryFile = $file instanceof \SplTempFileObject;
$this->tempFileObject = $isTemporaryFile ? $file : null;
if (!$file instanceof File) {
if ($file instanceof \SplFileInfo) {
$file = new File($file->getPathname(), !$isTemporaryFile);
}
else {
$file = new File($file);
}
}
if (!$file->isReadable() && !$isTemporaryFile) {
throw new FileException('File must be readable.');
}
$this->file = $file;
if ($autoEtag) {
$this->setAutoEtag();
}
if ($autoLastModified && !$isTemporaryFile) {
$this->setAutoLastModified();
}
if ($contentDisposition) {
$this->setContentDisposition($contentDisposition);
}
return $this;
}
/**
* Gets the file.
*/
public function getFile() : File {
return $this->file;
}
/**
* Sets the response stream chunk size.
*
* @return $this
*/
public function setChunkSize(int $chunkSize) : static {
if ($chunkSize < 1) {
throw new \InvalidArgumentException('The chunk size of a BinaryFileResponse cannot be less than 1.');
}
$this->chunkSize = $chunkSize;
return $this;
}
/**
* Automatically sets the Last-Modified header according the file modification date.
*
* @return $this
*/
public function setAutoLastModified() : static {
$this->setLastModified(\DateTimeImmutable::createFromFormat('U', $this->tempFileObject ? time() : $this->file
->getMTime()));
return $this;
}
/**
* Automatically sets the ETag header according to the checksum of the file.
*
* @return $this
*/
public function setAutoEtag() : static {
$this->setEtag(base64_encode(hash_file('xxh128', $this->file
->getPathname(), true)));
return $this;
}
/**
* Sets the Content-Disposition header with the given filename.
*
* @param string $disposition ResponseHeaderBag::DISPOSITION_INLINE or ResponseHeaderBag::DISPOSITION_ATTACHMENT
* @param string $filename Optionally use this UTF-8 encoded filename instead of the real name of the file
* @param string $filenameFallback A fallback filename, containing only ASCII characters. Defaults to an automatically encoded filename
*
* @return $this
*/
public function setContentDisposition(string $disposition, string $filename = '', string $filenameFallback = '') : static {
if ('' === $filename) {
$filename = $this->file
->getFilename();
}
if ('' === $filenameFallback && (!preg_match('/^[\\x20-\\x7e]*$/', $filename) || str_contains($filename, '%'))) {
$encoding = mb_detect_encoding($filename, null, true) ?: '8bit';
for ($i = 0, $filenameLength = mb_strlen($filename, $encoding); $i < $filenameLength; ++$i) {
$char = mb_substr($filename, $i, 1, $encoding);
if ('%' === $char || \ord($char) < 32 || \ord($char) > 126) {
$filenameFallback .= '_';
}
else {
$filenameFallback .= $char;
}
}
}
$dispositionHeader = $this->headers
->makeDisposition($disposition, $filename, $filenameFallback);
$this->headers
->set('Content-Disposition', $dispositionHeader);
return $this;
}
public function prepare(Request $request) : static {
if ($this->isInformational() || $this->isEmpty()) {
parent::prepare($request);
$this->maxlen = 0;
return $this;
}
if (!$this->headers
->has('Content-Type')) {
$this->headers
->set('Content-Type', $this->file
->getMimeType() ?: 'application/octet-stream');
}
parent::prepare($request);
$this->offset = 0;
$this->maxlen = -1;
if ($this->tempFileObject) {
$fileSize = $this->tempFileObject
->fstat()['size'];
}
elseif (false === ($fileSize = $this->file
->getSize())) {
return $this;
}
$this->headers
->remove('Transfer-Encoding');
$this->headers
->set('Content-Length', $fileSize);
if (!$this->headers
->has('Accept-Ranges')) {
// Only accept ranges on safe HTTP methods
$this->headers
->set('Accept-Ranges', $request->isMethodSafe() ? 'bytes' : 'none');
}
if (self::$trustXSendfileTypeHeader && $request->headers
->has('X-Sendfile-Type')) {
// Use X-Sendfile, do not send any content.
$type = $request->headers
->get('X-Sendfile-Type');
$path = $this->file
->getRealPath();
// Fall back to scheme://path for stream wrapped locations.
if (false === $path) {
$path = $this->file
->getPathname();
}
if ('x-accel-redirect' === strtolower($type)) {
// Do X-Accel-Mapping substitutions.
// @link https://github.com/rack/rack/blob/main/lib/rack/sendfile.rb
// @link https://mattbrictson.com/blog/accelerated-rails-downloads
if (!$request->headers
->has('X-Accel-Mapping')) {
throw new \LogicException('The "X-Accel-Mapping" header must be set when "X-Sendfile-Type" is set to "X-Accel-Redirect".');
}
$parts = HeaderUtils::split($request->headers
->get('X-Accel-Mapping'), ',=');
foreach ($parts as $part) {
[
$pathPrefix,
$location,
] = $part;
if (str_starts_with($path, $pathPrefix)) {
$path = $location . substr($path, \strlen($pathPrefix));
// Only set X-Accel-Redirect header if a valid URI can be produced
// as nginx does not serve arbitrary file paths.
$this->headers
->set($type, $path);
$this->maxlen = 0;
break;
}
}
}
else {
$this->headers
->set($type, $path);
$this->maxlen = 0;
}
}
elseif ($request->headers
->has('Range') && $request->isMethod('GET')) {
// Process the range headers.
if (!$request->headers
->has('If-Range') || $this->hasValidIfRangeHeader($request->headers
->get('If-Range'))) {
$range = $request->headers
->get('Range');
if (str_starts_with($range, 'bytes=')) {
[
$start,
$end,
] = explode('-', substr($range, 6), 2) + [
1 => 0,
];
$end = '' === $end ? $fileSize - 1 : (int) $end;
if ('' === $start) {
$start = $fileSize - $end;
$end = $fileSize - 1;
}
else {
$start = (int) $start;
}
if ($start <= $end) {
$end = min($end, $fileSize - 1);
if ($start < 0 || $start > $end) {
$this->setStatusCode(416);
$this->headers
->set('Content-Range', \sprintf('bytes */%s', $fileSize));
}
elseif ($end - $start < $fileSize - 1) {
$this->maxlen = $end < $fileSize ? $end - $start + 1 : -1;
$this->offset = $start;
$this->setStatusCode(206);
$this->headers
->set('Content-Range', \sprintf('bytes %s-%s/%s', $start, $end, $fileSize));
$this->headers
->set('Content-Length', $end - $start + 1);
}
}
}
}
}
if ($request->isMethod('HEAD')) {
$this->maxlen = 0;
}
return $this;
}
private function hasValidIfRangeHeader(?string $header) : bool {
if ($this->getEtag() === $header) {
return true;
}
if (null === ($lastModified = $this->getLastModified())) {
return false;
}
return $lastModified->format('D, d M Y H:i:s') . ' GMT' === $header;
}
public function sendContent() : static {
try {
if (!$this->isSuccessful()) {
return $this;
}
if (0 === $this->maxlen) {
return $this;
}
$out = fopen('php://output', 'w');
if ($this->tempFileObject) {
$file = $this->tempFileObject;
$file->rewind();
}
else {
$file = new \SplFileObject($this->file
->getPathname(), 'r');
}
ignore_user_abort(true);
if (0 !== $this->offset) {
$file->fseek($this->offset);
}
$length = $this->maxlen;
while ($length && !$file->eof()) {
$read = $length > $this->chunkSize || 0 > $length ? $this->chunkSize : $length;
if (false === ($data = $file->fread($read))) {
break;
}
while ('' !== $data) {
$read = fwrite($out, $data);
if (false === $read || connection_aborted()) {
break 2;
}
if (0 < $length) {
$length -= $read;
}
$data = substr($data, $read);
}
}
fclose($out);
} finally {
if (null === $this->tempFileObject && $this->deleteFileAfterSend && is_file($this->file
->getPathname())) {
unlink($this->file
->getPathname());
}
}
return $this;
}
/**
* @throws \LogicException when the content is not null
*/
public function setContent(?string $content) : static {
if (null !== $content) {
throw new \LogicException('The content cannot be set on a BinaryFileResponse instance.');
}
return $this;
}
public function getContent() : string|false {
return false;
}
/**
* Trust X-Sendfile-Type header.
*/
public static function trustXSendfileTypeHeader() : void {
self::$trustXSendfileTypeHeader = true;
}
/**
* If this is set to true, the file will be unlinked after the request is sent
* Note: If the X-Sendfile header is used, the deleteFileAfterSend setting will not be used.
*
* @return $this
*/
public function deleteFileAfterSend(bool $shouldDelete = true) : static {
$this->deleteFileAfterSend = $shouldDelete;
return $this;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
BinaryFileResponse::$chunkSize | protected | property | |||
BinaryFileResponse::$deleteFileAfterSend | protected | property | |||
BinaryFileResponse::$file | protected | property | |||
BinaryFileResponse::$maxlen | protected | property | |||
BinaryFileResponse::$offset | protected | property | |||
BinaryFileResponse::$tempFileObject | protected | property | |||
BinaryFileResponse::$trustXSendfileTypeHeader | protected static | property | |||
BinaryFileResponse::deleteFileAfterSend | public | function | If this is set to true, the file will be unlinked after the request is sent Note: If the X-Sendfile header is used, the deleteFileAfterSend setting will not be used. |
||
BinaryFileResponse::getContent | public | function | Gets the current response content. | Overrides Response::getContent | |
BinaryFileResponse::getFile | public | function | Gets the file. | ||
BinaryFileResponse::hasValidIfRangeHeader | private | function | |||
BinaryFileResponse::prepare | public | function | Prepares the Response before it is sent to the client. | Overrides Response::prepare | |
BinaryFileResponse::sendContent | public | function | Sends content for the current web response. | Overrides Response::sendContent | |
BinaryFileResponse::setAutoEtag | public | function | Automatically sets the ETag header according to the checksum of the file. | ||
BinaryFileResponse::setAutoLastModified | public | function | Automatically sets the Last-Modified header according the file modification date. | ||
BinaryFileResponse::setChunkSize | public | function | Sets the response stream chunk size. | ||
BinaryFileResponse::setContent | public | function | Overrides Response::setContent | ||
BinaryFileResponse::setContentDisposition | public | function | Sets the Content-Disposition header with the given filename. | ||
BinaryFileResponse::setFile | public | function | Sets the file to stream. | ||
BinaryFileResponse::trustXSendfileTypeHeader | public static | function | Trust X-Sendfile-Type header. | ||
BinaryFileResponse::__construct | public | function | Overrides Response::__construct | ||
Response::$charset | protected | property | |||
Response::$content | protected | property | |||
Response::$headers | public | property | |||
Response::$sentHeaders | private | property | Tracks headers already sent in informational responses. | ||
Response::$statusCode | protected | property | |||
Response::$statusText | protected | property | |||
Response::$statusTexts | public static | property | Status codes translation table. | ||
Response::$version | protected | property | |||
Response::closeOutputBuffers | public static | function | Cleans or flushes output buffers up to target level. | ||
Response::ensureIEOverSSLCompatibility | protected | function | Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9. | ||
Response::expire | public | function | Marks the response stale by setting the Age header to be equal to the maximum age of the response. | ||
Response::getAge | public | function | Returns the age of the response in seconds. | ||
Response::getCharset | public | function | Retrieves the response charset. | ||
Response::getDate | public | function | Returns the Date header as a DateTime instance. | ||
Response::getEtag | public | function | Returns the literal value of the ETag HTTP header. | ||
Response::getExpires | public | function | Returns the value of the Expires header as a DateTime instance. | ||
Response::getLastModified | public | function | Returns the Last-Modified HTTP header as a DateTime instance. | ||
Response::getMaxAge | public | function | Returns the number of seconds after the time specified in the response's Date header when the response should no longer be considered fresh. |
||
Response::getProtocolVersion | public | function | Gets the HTTP protocol version. | ||
Response::getStatusCode | public | function | Retrieves the status code for the current web response. | ||
Response::getTtl | public | function | Returns the response's time-to-live in seconds. | ||
Response::getVary | public | function | Returns an array of header names given in the Vary header. | ||
Response::hasVary | public | function | Returns true if the response includes a Vary header. | ||
Response::HTTP_ACCEPTED | public | constant | |||
Response::HTTP_ALREADY_REPORTED | public | constant | |||
Response::HTTP_BAD_GATEWAY | public | constant | |||
Response::HTTP_BAD_REQUEST | public | constant | |||
Response::HTTP_CONFLICT | public | constant | |||
Response::HTTP_CONTINUE | public | constant | |||
Response::HTTP_CREATED | public | constant | |||
Response::HTTP_EARLY_HINTS | public | constant | |||
Response::HTTP_EXPECTATION_FAILED | public | constant | |||
Response::HTTP_FAILED_DEPENDENCY | public | constant | |||
Response::HTTP_FORBIDDEN | public | constant | |||
Response::HTTP_FOUND | public | constant | |||
Response::HTTP_GATEWAY_TIMEOUT | public | constant | |||
Response::HTTP_GONE | public | constant | |||
Response::HTTP_IM_USED | public | constant | |||
Response::HTTP_INSUFFICIENT_STORAGE | public | constant | |||
Response::HTTP_INTERNAL_SERVER_ERROR | public | constant | |||
Response::HTTP_I_AM_A_TEAPOT | public | constant | |||
Response::HTTP_LENGTH_REQUIRED | public | constant | |||
Response::HTTP_LOCKED | public | constant | |||
Response::HTTP_LOOP_DETECTED | public | constant | |||
Response::HTTP_METHOD_NOT_ALLOWED | public | constant | |||
Response::HTTP_MISDIRECTED_REQUEST | public | constant | |||
Response::HTTP_MOVED_PERMANENTLY | public | constant | |||
Response::HTTP_MULTIPLE_CHOICES | public | constant | |||
Response::HTTP_MULTI_STATUS | public | constant | |||
Response::HTTP_NETWORK_AUTHENTICATION_REQUIRED | public | constant | |||
Response::HTTP_NON_AUTHORITATIVE_INFORMATION | public | constant | |||
Response::HTTP_NOT_ACCEPTABLE | public | constant | |||
Response::HTTP_NOT_EXTENDED | public | constant | |||
Response::HTTP_NOT_FOUND | public | constant | |||
Response::HTTP_NOT_IMPLEMENTED | public | constant | |||
Response::HTTP_NOT_MODIFIED | public | constant | |||
Response::HTTP_NO_CONTENT | public | constant | |||
Response::HTTP_OK | public | constant | |||
Response::HTTP_PARTIAL_CONTENT | public | constant | |||
Response::HTTP_PAYMENT_REQUIRED | public | constant | |||
Response::HTTP_PERMANENTLY_REDIRECT | public | constant | |||
Response::HTTP_PRECONDITION_FAILED | public | constant | |||
Response::HTTP_PRECONDITION_REQUIRED | public | constant | |||
Response::HTTP_PROCESSING | public | constant | |||
Response::HTTP_PROXY_AUTHENTICATION_REQUIRED | public | constant | |||
Response::HTTP_REQUESTED_RANGE_NOT_SATISFIABLE | public | constant | |||
Response::HTTP_REQUEST_ENTITY_TOO_LARGE | public | constant | |||
Response::HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE | public | constant | |||
Response::HTTP_REQUEST_TIMEOUT | public | constant | |||
Response::HTTP_REQUEST_URI_TOO_LONG | public | constant | |||
Response::HTTP_RESERVED | public | constant | |||
Response::HTTP_RESET_CONTENT | public | constant | |||
Response::HTTP_RESPONSE_CACHE_CONTROL_DIRECTIVES | private | constant | |||
Response::HTTP_SEE_OTHER | public | constant | |||
Response::HTTP_SERVICE_UNAVAILABLE | public | constant | |||
Response::HTTP_SWITCHING_PROTOCOLS | public | constant | |||
Response::HTTP_TEMPORARY_REDIRECT | public | constant | |||
Response::HTTP_TOO_EARLY | public | constant | |||
Response::HTTP_TOO_MANY_REQUESTS | public | constant | |||
Response::HTTP_UNAUTHORIZED | public | constant | |||
Response::HTTP_UNAVAILABLE_FOR_LEGAL_REASONS | public | constant | |||
Response::HTTP_UNPROCESSABLE_ENTITY | public | constant | |||
Response::HTTP_UNSUPPORTED_MEDIA_TYPE | public | constant | |||
Response::HTTP_UPGRADE_REQUIRED | public | constant | |||
Response::HTTP_USE_PROXY | public | constant | |||
Response::HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL | public | constant | |||
Response::HTTP_VERSION_NOT_SUPPORTED | public | constant | |||
Response::isCacheable | public | function | Returns true if the response may safely be kept in a shared (surrogate) cache. | ||
Response::isClientError | public | function | Is there a client error? | ||
Response::isEmpty | public | function | Is the response empty? | ||
Response::isForbidden | public | function | Is the response forbidden? | ||
Response::isFresh | public | function | Returns true if the response is "fresh". | ||
Response::isImmutable | public | function | Returns true if the response is marked as "immutable". | ||
Response::isInformational | public | function | Is response informative? | ||
Response::isInvalid | public | function | Is response invalid? | ||
Response::isNotFound | public | function | Is the response a not found error? | ||
Response::isNotModified | public | function | Determines if the Response validators (ETag, Last-Modified) match a conditional value specified in the Request. |
||
Response::isOk | public | function | Is the response OK? | ||
Response::isRedirect | public | function | Is the response a redirect of some form? | ||
Response::isRedirection | public | function | Is the response a redirect? | ||
Response::isServerError | public | function | Was there a server side error? | ||
Response::isSuccessful | public | function | Is response successful? | ||
Response::isValidateable | public | function | Returns true if the response includes headers that can be used to validate the response with the origin server using a conditional GET request. |
||
Response::mustRevalidate | public | function | Returns true if the response must be revalidated by shared caches once it has become stale. | ||
Response::send | public | function | Sends HTTP headers and content. | ||
Response::sendHeaders | public | function | Sends HTTP headers. | 1 | |
Response::setCache | public | function | Sets the response's cache headers (validation and/or expiration). | ||
Response::setCharset | public | function | Sets the response charset. | ||
Response::setClientTtl | public | function | Sets the response's time-to-live for private/client caches in seconds. | ||
Response::setContentSafe | public | function | Marks a response as safe according to RFC8674. | ||
Response::setDate | public | function | Sets the Date header. | ||
Response::setEtag | public | function | Sets the ETag value. | ||
Response::setExpires | public | function | Sets the Expires HTTP header with a DateTime instance. | ||
Response::setImmutable | public | function | Marks the response as "immutable". | ||
Response::setLastModified | public | function | Sets the Last-Modified HTTP header with a DateTime instance. | ||
Response::setMaxAge | public | function | Sets the number of seconds after which the response should no longer be considered fresh. | ||
Response::setNotModified | public | function | Modifies the response so that it conforms to the rules defined for a 304 status code. | ||
Response::setPrivate | public | function | Marks the response as "private". | ||
Response::setProtocolVersion | public | function | Sets the HTTP protocol version (1.0 or 1.1). | ||
Response::setPublic | public | function | Marks the response as "public". | ||
Response::setSharedMaxAge | public | function | Sets the number of seconds after which the response should no longer be considered fresh by shared caches. | ||
Response::setStaleIfError | public | function | Sets the number of seconds after which the response should no longer be returned by shared caches when backend is down. | ||
Response::setStaleWhileRevalidate | public | function | Sets the number of seconds after which the response should no longer return stale content by shared caches. | ||
Response::setStatusCode | public | function | Sets the response status code. | ||
Response::setTtl | public | function | Sets the response's time-to-live for shared caches in seconds. | ||
Response::setVary | public | function | Sets the Vary header. | ||
Response::__clone | public | function | Clones the current Response instance. | ||
Response::__toString | public | function | Returns the Response as an HTTP string. |