[ImageThumbnail] Finish image thumbnailing functionality
This commit is contained in:
parent
19850b5e0d
commit
716ca063d5
@ -26,7 +26,6 @@ use App\Core\DB\DB;
|
|||||||
use App\Entity\AttachmentThumbnail;
|
use App\Entity\AttachmentThumbnail;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
use Component\Media\Media;
|
use Component\Media\Media;
|
||||||
use Plugin\ImageThumbnail\ImageThumbnail as ThisPlugin;
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
class ImageThumbnail extends Controller
|
class ImageThumbnail extends Controller
|
||||||
@ -51,12 +50,13 @@ class ImageThumbnail extends Controller
|
|||||||
$height = Common::clamp($this->int('h') ?? $max_height, min: 0, max: $max_height);
|
$height = Common::clamp($this->int('h') ?? $max_height, min: 0, max: $max_height);
|
||||||
$crop = $this->bool('c') ?? false;
|
$crop = $this->bool('c') ?? false;
|
||||||
|
|
||||||
$filename = $attachment->getFilename();
|
|
||||||
$filepath = ThisPlugin::getPath($attachment);
|
|
||||||
|
|
||||||
$thumbnail = AttachmentThumbnail::getOrCreate(attachment: $attachment, width: $width, height: $height, crop: $crop);
|
$thumbnail = AttachmentThumbnail::getOrCreate(attachment: $attachment, width: $width, height: $height, crop: $crop);
|
||||||
dd($thumbnail);
|
DB::persist($thumbnail);
|
||||||
|
DB::flush();
|
||||||
|
|
||||||
return Media::sendFile(filepath: $filepath, mimetype: $attachment->getMimetype(), output_filename: $filename, disposition: 'inline');
|
$filename = $thumbnail->getFilename();
|
||||||
|
$path = $thumbnail->getPath();
|
||||||
|
|
||||||
|
return Media::sendFile(filepath: $path, mimetype: $attachment->getMimetype(), output_filename: $filename, disposition: 'inline');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,8 +24,9 @@ use function App\Core\I18n\_m;
|
|||||||
use App\Core\Modules\Module;
|
use App\Core\Modules\Module;
|
||||||
use App\Core\Router\RouteLoader;
|
use App\Core\Router\RouteLoader;
|
||||||
use App\Entity\Attachment;
|
use App\Entity\Attachment;
|
||||||
|
use App\Entity\AttachmentThumbnail;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
use Intervention\Image\Image;
|
use Jcupitt\Vips;
|
||||||
|
|
||||||
class ImageThumbnail extends Module
|
class ImageThumbnail extends Module
|
||||||
{
|
{
|
||||||
@ -35,11 +36,6 @@ class ImageThumbnail extends Module
|
|||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getPath(Attachment $attachment)
|
|
||||||
{
|
|
||||||
return Common::config('attachments', 'dir') . $attachment->getFilename();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resizes an image. It will reencode the image in the
|
* Resizes an image. It will reencode the image in the
|
||||||
* `self::prefferedType()` format. This only applies henceforward,
|
* `self::prefferedType()` format. This only applies henceforward,
|
||||||
@ -51,32 +47,29 @@ class ImageThumbnail extends Module
|
|||||||
*
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function onResizeImage(Attachment $attachment, string $outpath, int $width, int $height, bool $crop)
|
public function onResizeImage(Attachment $attachment, AttachmentThumbnail $thumbnail, int $width, int $height, bool $crop)
|
||||||
{
|
{
|
||||||
$old_limit = ini_set('memory_limit', Common::config('attachments', 'memory_limit'));
|
$old_limit = ini_set('memory_limit', Common::config('attachments', 'memory_limit'));
|
||||||
|
|
||||||
// try {
|
try {
|
||||||
// $img = Image::make($this->filepath);
|
// -1 means load all pages, 'sequential' access means decode pixels on demand
|
||||||
// } catch (Exception $e) {
|
// $image = Vips\Image::newFromFile(self::getPath($attachment), ['n' => -1, 'access' => 'sequential']);
|
||||||
// Log::error(__METHOD__ . ' encountered exception: ' . print_r($e, true));
|
$image = Vips\Image::thumbnail($attachment->getPath(), $width, ['height' => $height]);
|
||||||
// // TRANS: Exception thrown when trying to resize an unknown file type.
|
} catch (Exception $e) {
|
||||||
// throw new Exception(_m('Unknown file type'));
|
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'));
|
||||||
|
}
|
||||||
|
|
||||||
// if (self::getPath($attachment) === $outpath) {
|
if ($attachment->getPath() === $thumbnail->getPath()) {
|
||||||
// @unlink($outpath);
|
@unlink($thumbnail->getPath());
|
||||||
// }
|
}
|
||||||
|
|
||||||
// // Fit image to dimensions and optionally prevent upscaling
|
$image->writeToFile($thumbnail->getPath());
|
||||||
// if (!$crop) $img->fit($width, $height, function ($constraint) { $constraint->upsize();});
|
unset($image);
|
||||||
// else $img->crop($width, $height);
|
|
||||||
|
|
||||||
// $img->save($outpath, 100, 'webp');
|
ini_set('memory_limit', $old_limit); // Restore the old memory limit
|
||||||
// $img->destroy();
|
|
||||||
|
|
||||||
// ini_set('memory_limit', $old_limit); // Restore the old memory limit
|
|
||||||
|
|
||||||
// return $outpath;
|
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"require": {
|
"require": {
|
||||||
"intervention/image": "2.5.1"
|
"jcupitt/vips": "1.0.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,7 @@ namespace App\Entity;
|
|||||||
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
|
use App\Util\Common;
|
||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -227,6 +228,11 @@ class Attachment extends Entity
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getPath()
|
||||||
|
{
|
||||||
|
return Common::config('attachments', 'dir') . $this->getFilename();
|
||||||
|
}
|
||||||
|
|
||||||
public static function schemaDef(): array
|
public static function schemaDef(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
@ -25,6 +25,7 @@ use App\Core\DB\DB;
|
|||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
use App\Core\Event;
|
use App\Core\Event;
|
||||||
use App\Core\Log;
|
use App\Core\Log;
|
||||||
|
use App\Util\Common;
|
||||||
use App\Util\Exception\NotFoundException;
|
use App\Util\Exception\NotFoundException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use Component\Media\Media;
|
use Component\Media\Media;
|
||||||
@ -98,17 +99,34 @@ class AttachmentThumbnail extends Entity
|
|||||||
|
|
||||||
// }}} Autocode
|
// }}} Autocode
|
||||||
|
|
||||||
|
private Attachment $attachment;
|
||||||
|
|
||||||
|
public function setAttachment(Attachment $attachment)
|
||||||
|
{
|
||||||
|
$this->attachment = $attachment;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAttachment()
|
||||||
|
{
|
||||||
|
if (isset($this->attachment)) {
|
||||||
|
return $this->attachment;
|
||||||
|
} else {
|
||||||
|
return $this->attachment = DB::findOneBy('attachment', ['id' => $this->attachment_id]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static function getOrCreate(Attachment $attachment, ?int $width = null, ?int $height = null, ?bool $crop = null)
|
public static function getOrCreate(Attachment $attachment, ?int $width = null, ?int $height = null, ?bool $crop = null)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
return DB::findOneBy('attachment_thumbnail', ['attachment_id' => $attachment->getId(), 'width' => $width, 'height' => $height]);
|
return DB::findOneBy('attachment_thumbnail', ['attachment_id' => $attachment->getId(), 'width' => $width, 'height' => $height]);
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
$outpath = $attachment->getFileHash() . '-' . $width . 'x' . $height;
|
$thumbnail = self::create(['attachment_id' => $attachment->getId(), 'width' => $width, 'height' => $height, 'attachment' => $attachment]);
|
||||||
|
|
||||||
$event_map = ['image' => 'ResizeImage', 'video' => 'ResizeVideo'];
|
$event_map = ['image' => 'ResizeImage', 'video' => 'ResizeVideo'];
|
||||||
$major_mime = Media::mimetypeMajor($attachment->getMimetype());
|
$major_mime = Media::mimetypeMajor($attachment->getMimetype());
|
||||||
if (in_array($major_mime, array_keys($event_map))) {
|
if (in_array($major_mime, array_keys($event_map))) {
|
||||||
Event::handle($event_map[$major_mime], [$attachment, $outpath, $width, $height, $crop]);
|
Event::handle($event_map[$major_mime], [$attachment, $thumbnail, $width, $height, $crop]);
|
||||||
|
return $thumbnail;
|
||||||
} else {
|
} else {
|
||||||
Log::debug($m = ('Cannot resize attachment with mimetype ' . $attachment->getMimetype()));
|
Log::debug($m = ('Cannot resize attachment with mimetype ' . $attachment->getMimetype()));
|
||||||
throw new ServerException($m);
|
throw new ServerException($m);
|
||||||
@ -116,6 +134,16 @@ class AttachmentThumbnail extends Entity
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getFilename()
|
||||||
|
{
|
||||||
|
return $this->getAttachment()->getFileHash() . "-{$this->width}x{$this->height}.webp";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPath()
|
||||||
|
{
|
||||||
|
return Common::config('thumbnail', 'dir') . $this->getFilename();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete a attachment thumbnail. This table doesn't own all the attachments, only itself
|
* Delete a attachment thumbnail. This table doesn't own all the attachments, only itself
|
||||||
*/
|
*/
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
// }}}
|
// }}}
|
||||||
|
|
||||||
namespace App\Entity;
|
namespace Plugin\Poll\Entity;
|
||||||
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
// }}}
|
// }}}
|
||||||
|
|
||||||
namespace App\Entity;
|
namespace Plugin\Poll\Entity;
|
||||||
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
|
Loading…
Reference in New Issue
Block a user