From: Mikael Nordfeldth Date: Sun, 25 Jan 2015 01:27:37 +0000 (+0100) Subject: File class improved debugging and filename generation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=97bf470895ae4c57b23357a690cdd214a3afc838;p=quix0rs-gnu-social.git File class improved debugging and filename generation In some development code I noticed that when handling File objects without filename values, there would be problems calling getPath and such. The width and height value testing will be validated later anyway, and by removing such a narrow test we can use events to generate thumbnails of media formats supported by recently added plugins on demand. --- diff --git a/classes/File.php b/classes/File.php index 3bbdcbe990..68da5c6f1b 100644 --- a/classes/File.php +++ b/classes/File.php @@ -384,13 +384,6 @@ class File extends Managed_DataObject */ public function getThumbnail($width=null, $height=null, $crop=false) { - if (intval($this->width) < 1 || intval($this->height) < 1) { - // Old files may have 0 until migrated with scripts/upgrade.php - // For any legitimately unrepresentable ones, we could generate our - // own image (like a square with MIME type in text) - throw new UnsupportedMediaException('No image geometry available.'); - } - if ($width === null) { $width = common_config('thumbnail', 'width'); $height = common_config('thumbnail', 'height'); @@ -418,7 +411,7 @@ class File extends Managed_DataObject } // throws exception on failure to generate thumbnail - $outname = "thumb-{$width}x{$height}-" . $this->filename; + $outname = "thumb-{$width}x{$height}-" . $image->filename; $outpath = self::path($outname); // The boundary box for our resizing @@ -429,18 +422,19 @@ class File extends Managed_DataObject // Doublecheck that parameters are sane and integers. if ($box['width'] < 1 || $box['width'] > common_config('thumbnail', 'maxsize') || $box['height'] < 1 || $box['height'] > common_config('thumbnail', 'maxsize') - || $box['w'] < 1 || $box['x'] >= $this->width - || $box['h'] < 1 || $box['y'] >= $this->height) { + || $box['w'] < 1 || $box['x'] >= $image->width + || $box['h'] < 1 || $box['y'] >= $image->height) { // Fail on bad width parameter. If this occurs, it's due to algorithm in ImageFile->scaleToFit - common_debug("Boundary box parameters for resize of {$this->filepath} : ".var_export($box,true)); + common_debug("Boundary box parameters for resize of {$image->filepath} : ".var_export($box,true)); throw new ServerException('Bad thumbnail size parameters.'); } + common_debug(sprintf('Generating a thumbnail of File id==%u of size %ux%u', $this->id, $width, $height)); // Perform resize and store into file $image->resizeTo($outpath, $box); // Avoid deleting the original - if ($image->getPath() != $this->getPath()) { + if ($image->getPath() != self::path($image->filename)) { $image->unlink(); } return File_thumbnail::saveThumbnail($this->id,