mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
MediaView now forces download of unknown file types. Closes #140
This commit is contained in:
parent
2414ad8c8f
commit
d999650d5e
2 changed files with 70 additions and 19 deletions
|
@ -89,13 +89,9 @@ class MediaView extends View {
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
function render() {
|
function render() {
|
||||||
$name = $download = $extension = $id = $modified = $path = $size = $cache = $mimeType = $compress = null;
|
$name = $download = $extension = $id = $modified = $path = $cache = $mimeType = $compress = null;
|
||||||
extract($this->viewVars, EXTR_OVERWRITE);
|
extract($this->viewVars, EXTR_OVERWRITE);
|
||||||
|
|
||||||
if ($size) {
|
|
||||||
$id = $id . '_' . $size;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_dir($path)) {
|
if (is_dir($path)) {
|
||||||
$path = $path . $id;
|
$path = $path . $id;
|
||||||
} else {
|
} else {
|
||||||
|
@ -109,15 +105,12 @@ class MediaView extends View {
|
||||||
throw new NotFoundException('The requested file was not found');
|
throw new NotFoundException('The requested file was not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_null($name)) {
|
|
||||||
$name = $id;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_array($mimeType)) {
|
if (is_array($mimeType)) {
|
||||||
$this->response->type($mimeType);
|
$this->response->type($mimeType);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($extension) && $this->response->type($extension) && $this->_isActive()) {
|
if (isset($extension) && $this->_isActive()) {
|
||||||
|
$extension = strtolower($extension);
|
||||||
$chunkSize = 8192;
|
$chunkSize = 8192;
|
||||||
$buffer = '';
|
$buffer = '';
|
||||||
$fileSize = @filesize($path);
|
$fileSize = @filesize($path);
|
||||||
|
@ -131,6 +124,9 @@ class MediaView extends View {
|
||||||
} else {
|
} else {
|
||||||
$modified = time();
|
$modified = time();
|
||||||
}
|
}
|
||||||
|
if ($this->response->type($extension) === false) {
|
||||||
|
$download = true;
|
||||||
|
}
|
||||||
|
|
||||||
if ($cache) {
|
if ($cache) {
|
||||||
$this->response->cache($modified, $cache);
|
$this->response->cache($modified, $cache);
|
||||||
|
@ -155,7 +151,10 @@ class MediaView extends View {
|
||||||
if (!empty($contentType)) {
|
if (!empty($contentType)) {
|
||||||
$this->response->type($contentType);
|
$this->response->type($contentType);
|
||||||
}
|
}
|
||||||
$this->response->download($name . '.' . $extension);
|
if (is_null($name)) {
|
||||||
|
$name = $id;
|
||||||
|
}
|
||||||
|
$this->response->download($name);
|
||||||
$this->response->header(array('Accept-Ranges' => 'bytes'));
|
$this->response->header(array('Accept-Ranges' => 'bytes'));
|
||||||
|
|
||||||
$httpRange = env('HTTP_RANGE');
|
$httpRange = env('HTTP_RANGE');
|
||||||
|
@ -176,7 +175,6 @@ class MediaView extends View {
|
||||||
$this->response->header('Content-Length', $fileSize);
|
$this->response->header('Content-Length', $fileSize);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$this->response->type($extension);
|
|
||||||
$this->response->header(array(
|
$this->response->header(array(
|
||||||
'Content-Length' => $fileSize
|
'Content-Length' => $fileSize
|
||||||
));
|
));
|
||||||
|
|
|
@ -77,7 +77,7 @@ class MediaViewTest extends CakeTestCase {
|
||||||
->method('_isActive')
|
->method('_isActive')
|
||||||
->will($this->returnValue(true));
|
->will($this->returnValue(true));
|
||||||
|
|
||||||
$this->MediaView->response->expects($this->exactly(2))
|
$this->MediaView->response->expects($this->exactly(1))
|
||||||
->method('type')
|
->method('type')
|
||||||
->with('css')
|
->with('css')
|
||||||
->will($this->returnArgument(0));
|
->will($this->returnArgument(0));
|
||||||
|
@ -91,7 +91,7 @@ class MediaViewTest extends CakeTestCase {
|
||||||
'Pragma' => 'no-cache'
|
'Pragma' => 'no-cache'
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->MediaView->response->expects($this->at(3))
|
$this->MediaView->response->expects($this->at(2))
|
||||||
->method('header')
|
->method('header')
|
||||||
->with(array(
|
->with(array(
|
||||||
'Content-Length' => 31
|
'Content-Length' => 31
|
||||||
|
@ -107,6 +107,61 @@ class MediaViewTest extends CakeTestCase {
|
||||||
$this->assertTrue($result !== false);
|
$this->assertTrue($result !== false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testRenderWithUnknownFileType method
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function testRenderWithUnknownFileType() {
|
||||||
|
$this->MediaView->viewVars = array(
|
||||||
|
'path' => TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'config' . DS,
|
||||||
|
'id' => 'no_section.ini',
|
||||||
|
'extension' => 'ini',
|
||||||
|
);
|
||||||
|
$this->MediaView->expects($this->exactly(2))
|
||||||
|
->method('_isActive')
|
||||||
|
->will($this->returnValue(true));
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->exactly(1))
|
||||||
|
->method('type')
|
||||||
|
->with('ini')
|
||||||
|
->will($this->returnValue(false));
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->at(1))
|
||||||
|
->method('header')
|
||||||
|
->with(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'
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->once())
|
||||||
|
->method('download')
|
||||||
|
->with('no_section.ini');
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->at(3))
|
||||||
|
->method('header')
|
||||||
|
->with(array(
|
||||||
|
'Accept-Ranges' => 'bytes'
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->at(4))
|
||||||
|
->method('header')
|
||||||
|
->with('Content-Length', 35);
|
||||||
|
|
||||||
|
$this->MediaView->response->expects($this->once())->method('send');
|
||||||
|
$this->MediaView->expects($this->once())->method('_clearBuffer');
|
||||||
|
$this->MediaView->expects($this->once())->method('_flushBuffer');
|
||||||
|
|
||||||
|
ob_start();
|
||||||
|
$result = $this->MediaView->render();
|
||||||
|
$output = ob_get_clean();
|
||||||
|
$this->assertEqual("some_key = some_value\nbool_key = 1\n", $output);
|
||||||
|
$this->assertTrue($result !== false);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* testConnectionAborted method
|
* testConnectionAborted method
|
||||||
*
|
*
|
||||||
|
@ -124,10 +179,8 @@ class MediaViewTest extends CakeTestCase {
|
||||||
->method('_isActive')
|
->method('_isActive')
|
||||||
->will($this->returnValue(false));
|
->will($this->returnValue(false));
|
||||||
|
|
||||||
$this->MediaView->response->expects($this->once())
|
$this->MediaView->response->expects($this->never())
|
||||||
->method('type')
|
->method('type');
|
||||||
->with('css')
|
|
||||||
->will($this->returnArgument(0));
|
|
||||||
|
|
||||||
$result = $this->MediaView->render();
|
$result = $this->MediaView->render();
|
||||||
$this->assertFalse($result);
|
$this->assertFalse($result);
|
||||||
|
|
Loading…
Reference in a new issue