[ticket/14168] Move image check and don't use trigger_error()

PHPBB3-14168
This commit is contained in:
Marc Alexander 2015-10-04 11:10:07 +02:00
parent 6c80fd92c6
commit 36ea105236
3 changed files with 158 additions and 9 deletions

View file

@ -160,6 +160,9 @@ class upload
// Do we have to create a thumbnail? // Do we have to create a thumbnail?
$this->file_data['thumbnail'] = ($is_image && $this->config['img_create_thumbnail']) ? 1 : 0; $this->file_data['thumbnail'] = ($is_image && $this->config['img_create_thumbnail']) ? 1 : 0;
// Make sure the image category only holds valid images...
$this->check_image($is_image);
if (sizeof($this->file->error)) if (sizeof($this->file->error))
{ {
$this->file->remove(); $this->file->remove();
@ -169,9 +172,6 @@ class upload
return $this->file_data; return $this->file_data;
} }
// Make sure the image category only holds valid images...
$this->check_image($is_image);
$this->fill_file_data(); $this->fill_file_data();
$filedata = $this->file_data; $filedata = $this->file_data;
@ -263,7 +263,7 @@ class upload
// If this error occurs a user tried to exploit an IE Bug by renaming extensions // If this error occurs a user tried to exploit an IE Bug by renaming extensions
// Since the image category is displaying content inline we need to catch this. // Since the image category is displaying content inline we need to catch this.
trigger_error($this->language->lang('ATTACHED_IMAGE_NOT_IMAGE')); $this->file->set_error($this->language->lang('ATTACHED_IMAGE_NOT_IMAGE'));
} }
} }

View file

@ -36,6 +36,40 @@
<value>1</value> <value>1</value>
</row> </row>
</table> </table>
<table name="phpbb_extensions">
<column>extension</column>
<column>group_id</column>
<row>
<value>jpg</value>
<value>1</value>
</row>
<row>
<value>png</value>
<value>1</value>
</row>
</table>
<table name="phpbb_extension_groups">
<column>cat_id</column>
<column>group_id</column>
<column>download_mode</column>
<column>upload_icon</column>
<column>max_filesize</column>
<column>allow_group</column>
<column>allow_in_pm</column>
<column>allowed_forums</column>
<column>group_name</column>
<row>
<value>1</value>
<value>1</value>
<value>1</value>
<value> </value>
<value>1000</value>
<value>1</value>
<value>1</value>
<value>a:1:{i:0;i:1;}</value>
<value>Images</value>
</row>
</table>
<table name="phpbb_posts"> <table name="phpbb_posts">
<column>post_id</column> <column>post_id</column>
<column>post_text</column> <column>post_text</column>

View file

@ -74,7 +74,9 @@ class phpbb_attachment_upload_test extends \phpbb_database_test_case
parent::setUp(); parent::setUp();
$this->auth = new \phpbb\auth\auth(); $this->auth = new \phpbb\auth\auth();
$this->config = new \phpbb\config\config(array()); $this->config = new \phpbb\config\config(array(
'upload_path' => '../attachment/fixtures/',
));
$config = $this->config; $config = $this->config;
$this->db = $this->new_dbal(); $this->db = $this->new_dbal();
$this->cache = new \phpbb\cache\service(new \phpbb\cache\driver\dummy(), $this->config, $this->db, $phpbb_root_path, $phpEx); $this->cache = new \phpbb\cache\service(new \phpbb\cache\driver\dummy(), $this->config, $this->db, $phpbb_root_path, $phpEx);
@ -153,14 +155,33 @@ class phpbb_attachment_upload_test extends \phpbb_database_test_case
public function data_upload() public function data_upload()
{ {
return array( return array(
array('foobar', 1, false, array( array('foobar', 1, false,
array(),
array(
'error' => array( 'error' => array(
'Upload initiated but no valid file upload form found.', 'Upload initiated but no valid file upload form found.',
), ),
'post_attach' => false, 'post_attach' => false,
) )
), ),
array('foobar', 1, true, array( array('foobar', 1, true,
array(
'realname' => 'foobar.jpg',
'type' => 'jpg',
'size' => 100,
),
array(
'error' => array(
'NOT_UPLOADED',
'The image file you tried to attach is invalid.',
),
'post_attach' => false,
'thumbnail' => 0,
)
),
array('foobar', 1, true,
array(),
array(
'error' => array( 'error' => array(
'NOT_UPLOADED', 'NOT_UPLOADED',
), ),
@ -174,9 +195,9 @@ class phpbb_attachment_upload_test extends \phpbb_database_test_case
/** /**
* @dataProvider data_upload * @dataProvider data_upload
*/ */
public function test_upload($form_name, $forum_id, $local, $expected) public function test_upload($form_name, $forum_id, $local, $filedata, $expected)
{ {
$filedata = $this->upload->upload($form_name, $forum_id, $local); $filedata = $this->upload->upload($form_name, $forum_id, $local, '', false, $filedata);
$this->assertSame($expected, $filedata); $this->assertSame($expected, $filedata);
} }
@ -229,4 +250,98 @@ class phpbb_attachment_upload_test extends \phpbb_database_test_case
'post_attach' => false, 'post_attach' => false,
), $filedata); ), $filedata);
} }
public function data_image_not_image()
{
return array(
array(false),
array(true),
);
}
/**
* @dataProvider data_image_not_image
*/
public function test_image_not_image($plupload_active)
{
$filespec = $this->getMock('\phpbb\files\filespec',
array(
'init_error',
'is_image',
'move_file',
'is_uploaded',
),
array(
$this->filesystem,
$this->language,
$this->php_ini,
new \FastImageSize\FastImageSize(),
$this->phpbb_root_path,
$this->mimetype_guesser,
$this->plupload
));
$filespec->set_upload_namespace($this->files_upload);
$filespec->expects($this->any())
->method('init_error')
->willReturn(false);
$filespec->expects($this->any())
->method('is_image')
->willReturn(false);
$filespec->expects($this->any())
->method('is_uploaded')
->willReturn(true);
$filespec->expects($this->any())
->method('move_file')
->willReturn(false);
$this->container->set('files.filespec', $filespec);
$factory_mock = $this->getMockBuilder('\phpbb\files\factory')
->disableOriginalConstructor()
->getMock();
$factory_mock->expects($this->any())
->method('get')
->willReturn($filespec);
$this->container->set('files.types.local', new \phpbb\files\types\local(
$factory_mock,
$this->language,
$this->php_ini,
$this->request
));
$plupload = $this->getMockBuilder('\phpbb\plupload\plupload')
->disableOriginalConstructor()
->getMock();
$plupload->expects($this->any())
->method('is_active')
->willReturn($plupload_active);
if ($plupload_active)
{
$plupload->expects($this->once())
->method('emit_error')
->with(104, 'ATTACHED_IMAGE_NOT_IMAGE')
->willReturn(false);
}
$this->upload = new \phpbb\attachment\upload(
$this->auth,
$this->cache,
$this->config,
$this->files_upload,
$this->language,
$this->mimetype_guesser,
$this->phpbb_dispatcher,
$plupload,
$this->user,
$this->phpbb_root_path
);
$filedata = $this->upload->upload('foobar', 1, true, '', false, array(
'realname' => 'foobar.jpg',
'type' => 'jpg',
'size' => 100,
));
$this->assertEquals(array(
'error' => array('The image file you tried to attach is invalid.'),
'post_attach' => false,
'thumbnail' => 0,
), $filedata);
}
} }