. // }}} namespace App\Entity; use App\Core\Cache; use App\Core\DB\DB; use App\Core\Entity; use App\Core\Event; use App\Core\GSFile; use function App\Core\I18n\_m; use App\Core\Log; use App\Util\Common; use App\Util\Exception\ClientException; use App\Util\Exception\NotFoundException; use App\Util\Exception\ServerException; use DateTimeInterface; use Symfony\Component\Mime\MimeTypes; /** * Entity for Attachment thumbnails * * @category DB * @package GNUsocial * * @author Zach Copley * @copyright 2010 StatusNet Inc. * @author Mikael Nordfeldth * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org * @author Hugo Sales * @author Diogo Peralta Cordeiro * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class AttachmentThumbnail extends Entity { // {{{ Autocode // @codeCoverageIgnoreStart private int $attachment_id; private ?string $mimetype; private int $width; private int $height; private string $filename; private \DateTimeInterface $modified; public function setAttachmentId(int $attachment_id): self { $this->attachment_id = $attachment_id; return $this; } public function getAttachmentId(): int { return $this->attachment_id; } public function setMimetype(?string $mimetype): self { $this->mimetype = $mimetype; return $this; } public function getMimetype(): ?string { return $this->mimetype; } public function setWidth(int $width): self { $this->width = $width; return $this; } public function getWidth(): int { return $this->width; } public function setHeight(int $height): self { $this->height = $height; return $this; } public function getHeight(): int { return $this->height; } public function setFilename(string $filename): self { $this->filename = $filename; return $this; } public function getFilename(): string { return $this->filename; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } // @codeCoverageIgnoreEnd // }}} 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]); } } /** * @param Attachment $attachment * @param int $width * @param int $height * @param bool $crop * * @throws ServerException * @throws \App\Util\Exception\TemporaryFileException * * @return mixed */ public static function getOrCreate(Attachment $attachment, int $width, int $height, bool $crop) { // We need to keep these in mind for DB indexing $predicted_width = null; $predicted_height = null; try { return Cache::get('thumb-' . $attachment->getId() . "-{$width}x{$height}", function () use ($crop, $attachment, $width, $height, &$predicted_width, &$predicted_height) { [$predicted_width, $predicted_height] = self::predictScalingValues($attachment->getWidth(), $attachment->getHeight(), $width, $height, $crop); return DB::findOneBy('attachment_thumbnail', ['attachment_id' => $attachment->getId(), 'width' => $predicted_width, 'height' => $predicted_height]); }); } catch (NotFoundException $e) { $thumbnail = self::create(['attachment_id' => $attachment->getId()]); $event_map = []; Event::handle('ResizerAvailable', [&$event_map]); $mimetype = $attachment->getMimetype(); $major_mime = GSFile::mimetypeMajor($mimetype); if (in_array($major_mime, array_keys($event_map))) { $temp = null; // Let the EncoderPlugin create a temporary file for us if (!Event::handle( $event_map[$major_mime], [$attachment->getPath(), &$temp, &$width, &$height, $crop, &$mimetype] ) ) { $thumbnail->setWidth($predicted_width); $thumbnail->setHeight($predicted_height); $ext = '.' . MimeTypes::getDefault()->getExtensions($temp->getMimeType())[0]; $filename = "{$predicted_width}x{$predicted_height}{$ext}-" . $attachment->getFilehash(); $thumbnail->setFilename($filename); $thumbnail->setMimetype($mimetype); DB::persist($thumbnail); DB::flush(); $temp->move(Common::config('thumbnail', 'dir'), $filename); return $thumbnail; } else { Log::debug($m = ('Somehow the EncoderPlugin didn\'t handle ' . $attachment->getMimetype())); throw new ServerException($m); } } else { throw new ClientException(_m('Can not generate thumbnail for attachment with id={id}', ['id' => $attachment->getId()])); } } } public function getPath() { return Common::config('thumbnail', 'dir') . $this->getFilename(); } public function getUrl() { return Router::url('attachment_thumbnail', ['id' => $this->getAttachmentId(), 'w' => $this->getWidth(), 'h' => $this->getHeight()]); } /** * Get the HTML attributes for this thumbnail */ public function getHTMLAttributes(array $orig = [], bool $overwrite = true) { $attrs = [ 'height' => $this->getHeight(), 'width' => $this->getWidth(), 'src' => $this->getUrl(), ]; return $overwrite ? array_merge($orig, $attrs) : array_merge($attrs, $orig); } /** * Delete an attachment thumbnail */ public function delete(bool $flush = true): void { $filepath = $this->getPath(); if (file_exists($filepath)) { if (@unlink($filepath) === false) { Log::warning("Failed deleting file for attachment thumbnail with id={$this->attachment_id}, width={$this->width}, height={$this->height} at {$filepath}"); } } DB::remove($this); if ($flush) { DB::flush(); } } /** * Gets scaling values for images of various types. Cropping can be enabled. * * Values will scale _up_ to fit max values if cropping is enabled! * With cropping disabled, the max value of each axis will be respected. * * @param $width int Original width * @param $height int Original height * @param $maxW int Resulting max width * @param $maxH int Resulting max height * @param $crop bool Crop to the size (not preserving aspect ratio) * * @return array [predicted width, predicted height] */ public static function predictScalingValues( int $width, int $height, int $maxW, int $maxH, bool $crop ): array { // Cropping data (for original image size). Default values, 0 and null, // imply no cropping and with preserved aspect ratio (per axis). $cx = 0; // crop x $cy = 0; // crop y $cw = null; // crop area width $ch = null; // crop area height if ($crop) { $s_ar = $width / $height; $t_ar = $maxW / $maxH; $rw = $maxW; $rh = $maxH; // Source aspect ratio differs from target, recalculate crop points! if ($s_ar > $t_ar) { $cx = floor($width / 2 - $height * $t_ar / 2); $cw = ceil($height * $t_ar); } elseif ($s_ar < $t_ar) { $cy = floor($height / 2 - $width / $t_ar / 2); $ch = ceil($width / $t_ar); } } else { $rw = $maxW; $rh = ceil($height * $rw / $width); // Scaling caused too large height, decrease to max accepted value if ($rh > $maxH) { $rh = $maxH; $rw = ceil($width * $rh / $height); } } return [(int) $rw, (int) $rh]; } public static function schemaDef(): array { return [ 'name' => 'attachment_thumbnail', 'fields' => [ 'attachment_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Attachment.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'thumbnail for what attachment'], 'mimetype' => ['type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'], 'width' => ['type' => 'int', 'not null' => true, 'description' => 'width of thumbnail'], 'height' => ['type' => 'int', 'not null' => true, 'description' => 'height of thumbnail'], 'filename' => ['type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'thumbnail filename'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['attachment_id', 'width', 'height'], 'indexes' => [ 'attachment_thumbnail_attachment_id_idx' => ['attachment_id'], ], ]; } }