X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fimagefile.php;h=2d1a3af02efba2aa68f50ce796c9fa6d4078ae78;hb=5e834e8119b73d88f968bffb0bcb6dd54a4d44f7;hp=4ea1803f39ae812a5e491144a8c6cd45e58f4734;hpb=220a13b87f061ffc7771dd80c9d442b528cbc5ec;p=quix0rs-gnu-social.git diff --git a/lib/imagefile.php b/lib/imagefile.php index 4ea1803f39..2d1a3af02e 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -55,9 +55,22 @@ class ImageFile var $animated = null; // Animated image? (has more than 1 frame). null means untested var $mimetype = null; // The _ImageFile_ mimetype, _not_ the originating File object + protected $fileRecord = null; + function __construct($id, $filepath) { $this->id = $id; + if (!empty($this->id)) { + $this->fileRecord = new File(); + $this->fileRecord->id = $this->id; + if (!$this->fileRecord->find(true)) { + // If we have set an ID, we need that ID to exist! + throw new NoResultException($this->fileRecord); + } + } + + // These do not have to be the same as fileRecord->filename for example, + // since we may have generated an image source file from something else! $this->filepath = $filepath; $this->filename = basename($filepath); @@ -115,6 +128,14 @@ class ImageFile if (empty($file->filename)) { throw new UnsupportedMediaException(_('File without filename could not get a thumbnail source.')); } + + // First some mimetype specific exceptions + switch ($file->mimetype) { + case 'image/svg+xml': + throw new UseFileAsThumbnailException($file->id); + } + + // And we'll only consider it an image if it has such a media type switch ($media) { case 'image': $imgPath = $file->getPath(); @@ -185,31 +206,6 @@ class ImageFile return new ImageFile(null, $_FILES[$param]['tmp_name']); } - /** - * Compat interface for old code generating avatar thumbnails... - * Saves the scaled file directly into the avatar area. - * - * @param int $size target width & height -- must be square - * @param int $x (default 0) upper-left corner to crop from - * @param int $y (default 0) upper-left corner to crop from - * @param int $w (default full) width of image area to crop - * @param int $h (default full) height of image area to crop - * @return string filename - */ - function resize($size, $x = 0, $y = 0, $w = null, $h = null) - { - $targetType = $this->preferredType(); - $outname = Avatar::filename($this->id, - image_type_to_extension($targetType), - $size, - common_timestamp()); - $outpath = Avatar::path($outname); - $this->resizeTo($outpath, array('width'=>$size, 'height'=>$size, - 'x'=>$x, 'y'=>$y, - 'w'=>$w, 'h'=>$h)); - return $outname; - } - /** * Copy the image file to the given destination. * @@ -542,6 +538,73 @@ class ImageFile fclose($fh); return $count > 1; } + + public function getFileThumbnail($width, $height, $crop) + { + if (!$this->fileRecord instanceof File) { + throw new ServerException('No File object attached to this ImageFile object.'); + } + + if ($width === null) { + $width = common_config('thumbnail', 'width'); + $height = common_config('thumbnail', 'height'); + $crop = common_config('thumbnail', 'crop'); + } + + if ($height === null) { + $height = $width; + $crop = true; + } + + // Get proper aspect ratio width and height before lookup + // We have to do it through an ImageFile object because of orientation etc. + // Only other solution would've been to rotate + rewrite uploaded files + // which we don't want to do because we like original, untouched data! + list($width, $height, $x, $y, $w, $h) = $this->scaleToFit($width, $height, $crop); + + $thumb = File_thumbnail::pkeyGet(array( + 'file_id'=> $this->fileRecord->id, + 'width' => $width, + 'height' => $height, + )); + if ($thumb instanceof File_thumbnail) { + return $thumb; + } + + $filename = $this->fileRecord->filehash ?: $this->filename; // Remote files don't have $this->filehash + $extension = File::guessMimeExtension($this->mimetype); + $outname = "thumb-{$this->fileRecord->id}-{$width}x{$height}-{$filename}." . $extension; + $outpath = File_thumbnail::path($outname); + + // The boundary box for our resizing + $box = array('width'=>$width, 'height'=>$height, + 'x'=>$x, 'y'=>$y, + 'w'=>$w, 'h'=>$h); + + // 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) { + // 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)); + throw new ServerException('Bad thumbnail size parameters.'); + } + + common_debug(sprintf('Generating a thumbnail of File id==%u of size %ux%u', $this->fileRecord->id, $width, $height)); + + // Perform resize and store into file + $this->resizeTo($outpath, $box); + + // Avoid deleting the original + if ($this->getPath() != File_thumbnail::path($this->filename)) { + $this->unlink(); + } + return File_thumbnail::saveThumbnail($this->fileRecord->id, + File_thumbnail::url($outname), + $width, $height, + $outname); + } } //PHP doesn't (as of 2/24/2010) have an imagecreatefrombmp so conditionally define one