| 
									
										
										
										
											2021-04-15 22:47:33 +00: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 22:47:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00: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 10:46:53 +00:00
										 |  |  | use App\Entity\Attachment; | 
					
						
							| 
									
										
										
										
											2021-04-16 15:57:25 +00:00
										 |  |  | use App\Entity\AttachmentThumbnail; | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  | use App\Util\Common; | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											2021-04-16 15:57:25 +00:00
										 |  |  | use Jcupitt\Vips; | 
					
						
							| 
									
										
										
										
											2021-04-15 22:47:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  | class ImageEncoder extends Plugin | 
					
						
							| 
									
										
										
										
											2021-04-15 22:47:33 +00: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 22:47:33 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |         return IMAGETYPE_WEBP; | 
					
						
							| 
									
										
										
										
											2021-04-15 22:47:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |      * Encodes the image to self::preferredType() format ensuring it's valid. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param SymfonyFile $sfile    i/o | 
					
						
							|  |  |  |      * @param null|string $mimetype out | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-04-25 21:24:43 +00:00
										 |  |  |     public function onAttachmentValidation(\SplFileInfo &$file, ?string &$mimetype = null): bool | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-04-25 21:24:43 +00:00
										 |  |  |         $original_mimetype = $mimetype; | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |         // TODO: Encode in place
 | 
					
						
							| 
									
										
										
										
											2021-04-19 12:20:10 +01:00
										 |  |  |         //$mimetype = self::preferredType();
 | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |         return Event::stop; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |     public function onResizeImage(Attachment $attachment, AttachmentThumbnail $thumbnail, int $width, int $height, bool $smart_crop): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->onResizeImagePath($attachment->getPath(), $thumbnail->getPath(), $width, $height, $smart_crop, $__mimetype); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Resizes an image. It will encode the image in the | 
					
						
							|  |  |  |      * `self::preferredType()` format. This only applies henceforward, | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00: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 10:46:53 +00:00
										 |  |  |      * @throws Exception | 
					
						
							| 
									
										
										
										
											2021-04-18 05:47:16 +01:00
										 |  |  |      * @throws Vips\Exception | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |     public function onResizeImagePath(string $source, string $destination, int $width, int $height, bool $smart_crop, ?string &$mimetype) | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         $old_limit = ini_set('memory_limit', Common::config('attachments', 'memory_limit')); | 
					
						
							| 
									
										
										
										
											2021-04-16 15:57:25 +00:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2021-04-19 07:28:53 +00:00
										 |  |  |             try { | 
					
						
							|  |  |  |                 // -1 means load all pages, 'sequential' access means decode pixels on demand
 | 
					
						
							|  |  |  |                 // $image = Vips\Image::newFromFile(self::getPath($attachment), ['n' => -1, 'access' => 'sequential']);
 | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |                 $image = Vips\Image::thumbnail($source, $width, ['height' => $height]); | 
					
						
							| 
									
										
										
										
											2021-04-19 07:28:53 +00: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 10:46:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |             if ($source === $destination) { | 
					
						
							|  |  |  |                 @unlink($destination); | 
					
						
							| 
									
										
										
										
											2021-04-19 07:28:53 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |             $type     = self::preferredType(); | 
					
						
							|  |  |  |             $mimetype = image_type_to_mime_type($type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($smart_crop) { | 
					
						
							| 
									
										
										
										
											2021-04-19 07:28:53 +00:00
										 |  |  |                 $image = $image->smartcrop($width, $height); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-04-28 15:03:17 +00:00
										 |  |  |             $image->writeToFile($destination); | 
					
						
							| 
									
										
										
										
											2021-04-19 07:28:53 +00:00
										 |  |  |             unset($image); | 
					
						
							|  |  |  |         } finally { | 
					
						
							|  |  |  |             ini_set('memory_limit', $old_limit); // Restore the old memory limit
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-04-16 10:46:53 +00:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-15 22:47:33 +00:00
										 |  |  | } |