* @template-extends Response> */ class FileDisplayResponse extends Response implements ICallbackResponse { private File|ISimpleFile $file; /** * FileDisplayResponse constructor. * * @param File|ISimpleFile $file * @param S $statusCode * @param H $headers * @since 11.0.0 */ public function __construct(File|ISimpleFile $file, int $statusCode = Http::STATUS_OK, array $headers = []) { parent::__construct($statusCode, $headers); $this->file = $file; $this->addHeader('Content-Disposition', 'inline; filename="' . rawurldecode($file->getName()) . '"'); $this->setETag($file->getEtag()); $lastModified = new \DateTime(); $lastModified->setTimestamp($file->getMTime()); $this->setLastModified($lastModified); } /** * @param IOutput $output * @since 11.0.0 */ public function callback(IOutput $output) { if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) { $file = $this->file instanceof File ? $this->file->fopen('rb') : $this->file->read(); if ($file === false) { $output->setHttpResponseCode(Http::STATUS_NOT_FOUND); $output->setOutput(''); return; } $output->setHeader('Content-Length: ' . $this->file->getSize()); $output->setReadfile($file); } } }