2021-04-15 23:47:33 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2021-04-18 05:47:16 +01:00
|
|
|
namespace Plugin\ImageEncoder;
|
2021-04-15 23:47:33 +01:00
|
|
|
|
|
|
|
use App\Core\Event;
|
2021-04-29 21:31:24 +01:00
|
|
|
use App\Core\GSFile;
|
2021-04-16 11:46:53 +01:00
|
|
|
use function App\Core\I18n\_m;
|
2021-04-18 05:47:16 +01:00
|
|
|
use App\Core\Log;
|
|
|
|
use App\Core\Modules\Plugin;
|
2021-04-16 11:46:53 +01:00
|
|
|
use App\Entity\Attachment;
|
2021-04-16 16:57:25 +01:00
|
|
|
use App\Entity\AttachmentThumbnail;
|
2021-04-16 11:46:53 +01:00
|
|
|
use App\Util\Common;
|
2021-04-29 21:31:24 +01:00
|
|
|
use App\Util\TemporaryFile;
|
2021-04-18 05:47:16 +01:00
|
|
|
use Exception;
|
2021-04-16 16:57:25 +01:00
|
|
|
use Jcupitt\Vips;
|
2021-04-15 23:47:33 +01:00
|
|
|
|
2021-04-30 14:14:16 +01:00
|
|
|
/**
|
|
|
|
* Create thumbnails and validate image attachments
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @ccategory Attachment
|
|
|
|
*
|
|
|
|
* @author Diogo Peralta Cordeiro <mail@diogo.site>
|
|
|
|
* @authir Hugo Sales <hugo@hsal.es>
|
|
|
|
*
|
|
|
|
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2021-04-18 05:47:16 +01:00
|
|
|
class ImageEncoder extends Plugin
|
2021-04-15 23:47:33 +01:00
|
|
|
{
|
2021-04-18 05:47:16 +01:00
|
|
|
/**
|
|
|
|
* Several obscure file types should be normalized to WebP on resize.
|
|
|
|
*/
|
|
|
|
public function preferredType(): int
|
2021-04-15 23:47:33 +01:00
|
|
|
{
|
2021-04-18 05:47:16 +01:00
|
|
|
return IMAGETYPE_WEBP;
|
2021-04-15 23:47:33 +01:00
|
|
|
}
|
2021-04-16 11:46:53 +01:00
|
|
|
|
|
|
|
/**
|
2021-04-18 05:47:16 +01:00
|
|
|
* Encodes the image to self::preferredType() format ensuring it's valid.
|
|
|
|
*
|
2021-05-01 22:48:44 +01:00
|
|
|
* @param \SplFileInfo $file
|
|
|
|
* @param null|string $mimetype in/out
|
|
|
|
* @param null|string $title in/out
|
|
|
|
* @param null|int $width out
|
|
|
|
* @param null|int $height out
|
|
|
|
*
|
|
|
|
* @throws Vips\Exception
|
|
|
|
* @throws \App\Util\Exception\TemporaryFileException
|
2021-04-18 05:47:16 +01:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-05-01 22:48:44 +01:00
|
|
|
public function onAttachmentValidation(\SplFileInfo &$file, ?string &$mimetype, ?string &$title, ?int &$width, ?int &$height): bool
|
2021-04-18 05:47:16 +01:00
|
|
|
{
|
2021-04-25 22:24:43 +01:00
|
|
|
$original_mimetype = $mimetype;
|
2021-04-29 21:31:24 +01:00
|
|
|
if (GSFile::mimetypeMajor($original_mimetype) != 'image') {
|
|
|
|
// Nothing concerning us
|
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
|
|
|
|
$type = self::preferredType();
|
|
|
|
$extension = image_type_to_extension($type, include_dot: true);
|
|
|
|
$temp = new TemporaryFile(prefix: null, suffix: $extension); // This handles deleting the file if some error occurs
|
|
|
|
$mimetype = image_type_to_mime_type($type);
|
|
|
|
if ($mimetype != $original_mimetype) {
|
|
|
|
// If title seems to be a filename with an extension
|
|
|
|
if (preg_match('/\.[a-z0-9]/i', $title) === 1) {
|
2021-04-30 14:14:16 +01:00
|
|
|
$title = substr($title, 0, strrpos($title, '.')) . $extension;
|
2021-04-29 21:31:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$image = Vips\Image::newFromFile($file->getRealPath(), ['access' => 'sequential']);
|
|
|
|
$width = Common::clamp($image->width, 0, Common::config('attachments', 'max_width'));
|
|
|
|
$height = Common::clamp($image->height, 0, Common::config('attachments', 'max_height'));
|
|
|
|
$image = $image->crop(0, 0, $width, $height);
|
|
|
|
$image->writeToFile($temp->getRealPath());
|
|
|
|
|
|
|
|
$filesize = $temp->getSize();
|
|
|
|
$filepath = $file->getRealPath();
|
|
|
|
@unlink($filepath);
|
|
|
|
|
2021-04-30 14:14:16 +01:00
|
|
|
Event::handle('EnforceQuota', [$filesize]);
|
2021-04-29 21:31:24 +01:00
|
|
|
|
|
|
|
$temp->commit($filepath);
|
|
|
|
|
2021-04-18 05:47:16 +01:00
|
|
|
return Event::stop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resizes an image. It will encode the image in the
|
|
|
|
* `self::preferredType()` format. This only applies henceforward,
|
2021-04-16 11:46:53 +01:00
|
|
|
* not retroactively
|
|
|
|
*
|
|
|
|
* Increases the 'memory_limit' to the one in the 'attachments' section in the config, to
|
|
|
|
* enable the handling of bigger images, which can cause a peak of memory consumption, while
|
|
|
|
* encoding
|
|
|
|
*
|
2021-04-18 05:47:16 +01:00
|
|
|
* @param Attachment $attachment
|
|
|
|
* @param AttachmentThumbnail $thumbnail
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $crop
|
|
|
|
*
|
2021-04-16 11:46:53 +01:00
|
|
|
* @throws Exception
|
2021-04-18 05:47:16 +01:00
|
|
|
* @throws Vips\Exception
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*
|
2021-04-16 11:46:53 +01:00
|
|
|
*/
|
2021-05-01 22:48:44 +01:00
|
|
|
public function onResizeImagePath(string $source, string $destination, int &$width, int &$height, bool $smart_crop, ?string &$mimetype)
|
2021-04-16 11:46:53 +01:00
|
|
|
{
|
|
|
|
$old_limit = ini_set('memory_limit', Common::config('attachments', 'memory_limit'));
|
2021-04-16 16:57:25 +01:00
|
|
|
try {
|
2021-04-19 08:28:53 +01:00
|
|
|
try {
|
2021-04-28 16:03:17 +01:00
|
|
|
$image = Vips\Image::thumbnail($source, $width, ['height' => $height]);
|
2021-04-19 08:28:53 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
Log::error(__METHOD__ . ' encountered exception: ' . print_r($e, true));
|
|
|
|
// TRANS: Exception thrown when trying to resize an unknown file type.
|
|
|
|
throw new Exception(_m('Unknown file type'));
|
|
|
|
}
|
2021-04-16 11:46:53 +01:00
|
|
|
|
2021-04-28 16:03:17 +01:00
|
|
|
if ($source === $destination) {
|
|
|
|
@unlink($destination);
|
2021-04-19 08:28:53 +01:00
|
|
|
}
|
2021-04-16 11:46:53 +01:00
|
|
|
|
2021-04-28 16:03:17 +01:00
|
|
|
$type = self::preferredType();
|
|
|
|
$mimetype = image_type_to_mime_type($type);
|
|
|
|
|
|
|
|
if ($smart_crop) {
|
2021-04-19 08:28:53 +01:00
|
|
|
$image = $image->smartcrop($width, $height);
|
|
|
|
}
|
2021-05-01 22:48:44 +01:00
|
|
|
|
|
|
|
$width = $image->width;
|
|
|
|
$height = $image->height;
|
|
|
|
|
2021-04-28 16:03:17 +01:00
|
|
|
$image->writeToFile($destination);
|
2021-04-19 08:28:53 +01:00
|
|
|
unset($image);
|
|
|
|
} finally {
|
|
|
|
ini_set('memory_limit', $old_limit); // Restore the old memory limit
|
|
|
|
}
|
2021-04-16 11:46:53 +01:00
|
|
|
return Event::next;
|
|
|
|
}
|
2021-04-15 23:47:33 +01:00
|
|
|
}
|