'text/plain') * * ### Usage * * {{{ * class ExampleController extends AppController { * public function download() { * $this->viewClass = 'Media'; * $params = array( * 'id' => 'example.zip', * 'name' => 'example', * 'download' => true, * 'extension' => 'zip', * 'path' => APP . 'files' . DS * ); * $this->set($params); * } * } * }}} * * @package Cake.View */ class MediaView extends View { /** * Indicates whether response gzip compression was enabled for this class * * @var boolean */ protected $_compressionEnabled = false; /** * Display or download the given file * * @param string $view Not used * @param string $layout Not used * @return mixed * @throws NotFoundException */ public function render($view = null, $layout = null) { $name = $download = $extension = $id = $modified = $path = $cache = $mimeType = $compress = null; extract($this->viewVars, EXTR_OVERWRITE); if (is_dir($path)) { $path = $path . $id; } else { $path = APP . $path . $id; } if (!is_file($path)) { if (Configure::read('debug')) { throw new NotFoundException(sprintf('The requested file %s was not found', $path)); } throw new NotFoundException('The requested file was not found'); } if (is_array($mimeType)) { $this->response->type($mimeType); } if (!isset($extension)) { $extension = pathinfo($id, PATHINFO_EXTENSION); } if ($this->_isActive()) { $extension = strtolower($extension); $chunkSize = 8192; $buffer = ''; $fileSize = @filesize($path); $handle = fopen($path, 'rb'); if ($handle === false) { return false; } if (!empty($modified) && !is_numeric($modified)) { $modified = strtotime($modified, time()); } else { $modified = time(); } if (!$extension || $this->response->type($extension) === false) { $download = true; } if ($cache) { $this->response->cache($modified, $cache); } else { $this->response->header(array( 'Date' => gmdate('D, d M Y H:i:s', time()) . ' GMT', 'Expires' => '0', 'Cache-Control' => 'private, must-revalidate, post-check=0, pre-check=0', 'Pragma' => 'no-cache' )); } if ($download) { $agent = env('HTTP_USER_AGENT'); if (preg_match('%Opera(/| )([0-9].[0-9]{1,2})%', $agent)) { $contentType = 'application/octetstream'; } elseif (preg_match('/MSIE ([0-9].[0-9]{1,2})/', $agent)) { $contentType = 'application/force-download'; } if (!empty($contentType)) { $this->response->type($contentType); } if (is_null($name)) { $name = $id; } elseif ($extension) { $name .= '.' . $extension; } $this->response->download($name); $this->response->header(array('Accept-Ranges' => 'bytes')); $httpRange = env('HTTP_RANGE'); if (isset($httpRange)) { list($toss, $range) = explode('=', $httpRange); $size = $fileSize - 1; $length = $fileSize - $range; $this->response->header(array( 'Content-Length' => $length, 'Content-Range' => 'bytes ' . $range . $size . '/' . $fileSize )); $this->response->statusCode(206); fseek($handle, $range); } else { $this->response->header('Content-Length', $fileSize); } } else { $this->response->header(array( 'Content-Length' => $fileSize )); } $this->_clearBuffer(); if ($compress) { $this->_compressionEnabled = $this->response->compress(); } $this->response->send(); return $this->_sendFile($handle); } return false; } /** * Reads out a file handle, and echos the content to the client. * * @param resource $handle A file handle or stream * @return void */ protected function _sendFile($handle) { $chunkSize = 8192; $buffer = ''; while (!feof($handle)) { if (!$this->_isActive()) { fclose($handle); return false; } set_time_limit(0); $buffer = fread($handle, $chunkSize); echo $buffer; if (!$this->_compressionEnabled) { $this->_flushBuffer(); } } fclose($handle); } /** * Returns true if connection is still active * * @return boolean */ protected function _isActive() { return connection_status() == 0 && !connection_aborted(); } /** * Clears the contents of the topmost output buffer and discards them * * @return boolean */ protected function _clearBuffer() { return @ob_end_clean(); } /** * Flushes the contents of the output buffer * * @return void */ protected function _flushBuffer() { @flush(); @ob_flush(); } }