Skip to content
Snippets Groups Projects
Unverified Commit 8703df32 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

If the preview is size 0 it is invalid


* delete it
* throw a NotFound Exception
  - This should a proper 404 to the user
  - Next time it is then regenerated

Signed-off-by: default avatarRoeland Jago Douma <roeland@famdouma.nl>
parent 1194e4c2
No related branches found
No related tags found
No related merge requests found
...@@ -110,6 +110,11 @@ class Generator { ...@@ -110,6 +110,11 @@ class Generator {
// Get the max preview and infer the max preview sizes from that // Get the max preview and infer the max preview sizes from that
$maxPreview = $this->getMaxPreview($previewFolder, $file, $mimeType); $maxPreview = $this->getMaxPreview($previewFolder, $file, $mimeType);
if ($maxPreview->getSize() === 0) {
$maxPreview->delete();
throw new NotFoundException('Max preview size 0, invalid!');
}
list($maxWidth, $maxHeight) = $this->getPreviewSize($maxPreview); list($maxWidth, $maxHeight) = $this->getPreviewSize($maxPreview);
// If both width and heigth are -1 we just want the max preview // If both width and heigth are -1 we just want the max preview
...@@ -129,15 +134,20 @@ class Generator { ...@@ -129,15 +134,20 @@ class Generator {
// Try to get a cached preview. Else generate (and store) one // Try to get a cached preview. Else generate (and store) one
try { try {
try { try {
$file = $this->getCachedPreview($previewFolder, $width, $height, $crop, $maxPreview->getMimeType()); $preview = $this->getCachedPreview($previewFolder, $width, $height, $crop, $maxPreview->getMimeType());
} catch (NotFoundException $e) { } catch (NotFoundException $e) {
$file = $this->generatePreview($previewFolder, $maxPreview, $width, $height, $crop, $maxWidth, $maxHeight); $preview = $this->generatePreview($previewFolder, $maxPreview, $width, $height, $crop, $maxWidth, $maxHeight);
} }
} catch (\InvalidArgumentException $e) { } catch (\InvalidArgumentException $e) {
throw new NotFoundException(); throw new NotFoundException();
} }
return $file; if ($preview->getSize() === 0) {
$preview->delete();
throw new NotFoundException('Cached preview size 0, invalid!');
}
return $preview;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment