vendor/contao/image/src/DeferredResizer.php line 70

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Contao.
  5.  *
  6.  * (c) Leo Feyer
  7.  *
  8.  * @license LGPL-3.0-or-later
  9.  */
  10. namespace Contao\Image;
  11. use Contao\Image\Exception\InvalidArgumentException;
  12. use Contao\Image\Exception\RuntimeException;
  13. use Contao\Image\Metadata\MetadataReaderWriter;
  14. use Imagine\Image\Box;
  15. use Imagine\Image\ImagineInterface;
  16. use Imagine\Image\Point;
  17. use Symfony\Component\Filesystem\Filesystem;
  18. use Symfony\Component\Filesystem\Path;
  19. /**
  20.  * @method __construct(string $cacheDir, string $secret, ResizeCalculator $calculator = null, Filesystem $filesystem = null, DeferredImageStorageInterface $storage = null, MetadataReaderWriter $metadataReaderWriter = null)
  21.  */
  22. class DeferredResizer extends Resizer implements DeferredResizerInterface
  23. {
  24.     /**
  25.      * @var DeferredImageStorageInterface
  26.      *
  27.      * @internal
  28.      */
  29.     private $storage;
  30.     /**
  31.      * @param string                             $cacheDir
  32.      * @param string                             $secret
  33.      * @param ResizeCalculator|null              $calculator
  34.      * @param Filesystem|null                    $filesystem
  35.      * @param DeferredImageStorageInterface|null $storage
  36.      * @param MetadataReaderWriter|null          $metadataReaderWriter
  37.      */
  38.     public function __construct(string $cacheDir/*, string $secret, ResizeCalculator $calculator = null, Filesystem $filesystem = null, DeferredImageStorageInterface $storage = null, MetadataReaderWriter $metadataReaderWriter = null*/)
  39.     {
  40.         if (\func_num_args() > && \is_string(func_get_arg(1))) {
  41.             $secret func_get_arg(1);
  42.             $calculator \func_num_args() > func_get_arg(2) : null;
  43.             $filesystem \func_num_args() > func_get_arg(3) : null;
  44.             $storage \func_num_args() > func_get_arg(4) : null;
  45.             $metadataReaderWriter \func_num_args() > func_get_arg(5) : null;
  46.         } else {
  47.             trigger_deprecation('contao/image''1.2''Not passing a secret to "%s()" has been deprecated and will no longer work in version 2.0.'__METHOD__);
  48.             $secret null;
  49.             $calculator \func_num_args() > func_get_arg(1) : null;
  50.             $filesystem \func_num_args() > func_get_arg(2) : null;
  51.             $storage \func_num_args() > func_get_arg(3) : null;
  52.             $metadataReaderWriter \func_num_args() > func_get_arg(4) : null;
  53.         }
  54.         if (null === $storage) {
  55.             $storage = new DeferredImageStorageFilesystem($cacheDir);
  56.         }
  57.         if (!$storage instanceof DeferredImageStorageInterface) {
  58.             throw new \TypeError(sprintf('%s(): Argument #5 ($storage) must be of type DeferredImageStorageInterface|null, %s given'__METHOD__get_debug_type($storage)));
  59.         }
  60.         if (null === $secret) {
  61.             parent::__construct($cacheDir$calculator$filesystem$metadataReaderWriter);
  62.         } else {
  63.             parent::__construct($cacheDir$secret$calculator$filesystem$metadataReaderWriter);
  64.         }
  65.         $this->storage $storage;
  66.     }
  67.     /**
  68.      * {@inheritdoc}
  69.      */
  70.     public function getDeferredImage(string $targetPathImagineInterface $imagine): ?DeferredImageInterface
  71.     {
  72.         if (Path::isAbsolute($targetPath)) {
  73.             if (!Path::isBasePath($this->cacheDir$targetPath)) {
  74.                 return null;
  75.             }
  76.             $targetPath Path::makeRelative($targetPath$this->cacheDir);
  77.         }
  78.         if (!$this->storage->has($targetPath)) {
  79.             return null;
  80.         }
  81.         $config $this->storage->get($targetPath);
  82.         return new DeferredImage(
  83.             Path::join($this->cacheDir$targetPath),
  84.             $imagine,
  85.             new ImageDimensions(
  86.                 new Box(
  87.                     $config['coordinates']['crop']['width'],
  88.                     $config['coordinates']['crop']['height']
  89.                 )
  90.             )
  91.         );
  92.     }
  93.     /**
  94.      * {@inheritdoc}
  95.      */
  96.     public function resizeDeferredImage(DeferredImageInterface $imagebool $blocking true): ?ImageInterface
  97.     {
  98.         if (!Path::isBasePath($this->cacheDir$image->getPath())) {
  99.             throw new InvalidArgumentException(sprintf('Path "%s" is not inside cache directory "%s"'$image->getPath(), $this->cacheDir));
  100.         }
  101.         $targetPath Path::makeRelative($image->getPath(), $this->cacheDir);
  102.         try {
  103.             $config $this->storage->getLocked($targetPath$blocking);
  104.         } catch (\Throwable $exception) {
  105.             // Getting the lock might fail if the image was already generated
  106.             if ($this->filesystem->exists($image->getPath())) {
  107.                 return $blocking ? new Image($image->getPath(), $image->getImagine(), $this->filesystem) : null;
  108.             }
  109.             throw $exception;
  110.         }
  111.         if (null === $config) {
  112.             if ($blocking) {
  113.                 throw new RuntimeException(sprintf('Unable to acquire lock for "%s"'$targetPath));
  114.             }
  115.             return null;
  116.         }
  117.         try {
  118.             $resizedImage $this->executeDeferredResize($targetPath$config$image->getImagine());
  119.             $this->storage->delete($targetPath);
  120.         } catch (\Throwable $exception) {
  121.             $this->storage->releaseLock($targetPath);
  122.             throw $exception;
  123.         }
  124.         return $resizedImage;
  125.     }
  126.     /**
  127.      * {@inheritdoc}
  128.      */
  129.     protected function processResize(ImageInterface $imageResizeConfiguration $configResizeOptions $options): ImageInterface
  130.     {
  131.         // Resize the source image if it is deferred
  132.         if ($image instanceof DeferredImageInterface) {
  133.             $image $this->resizeDeferredImage($image);
  134.         }
  135.         return parent::processResize($image$config$options);
  136.     }
  137.     /**
  138.      * {@inheritdoc}
  139.      */
  140.     protected function executeResize(ImageInterface $imageResizeCoordinates $coordinatesstring $pathResizeOptions $options): ImageInterface
  141.     {
  142.         if (null !== $options->getTargetPath() || $options->getBypassCache()) {
  143.             return parent::executeResize($image$coordinates$path$options);
  144.         }
  145.         $this->storeResizeData($image->getPath(), $path$coordinates$options);
  146.         return new DeferredImage($path$image->getImagine(), new ImageDimensions($coordinates->getCropSize()));
  147.     }
  148.     private function storeResizeData(string $sourcePathstring $targetPathResizeCoordinates $coordinatesResizeOptions $options): void
  149.     {
  150.         $targetPath Path::makeRelative($targetPath$this->cacheDir);
  151.         if ($this->storage->has($targetPath)) {
  152.             return;
  153.         }
  154.         $this->storage->set($targetPath, [
  155.             'path' => Path::makeRelative($sourcePath$this->cacheDir),
  156.             'coordinates' => [
  157.                 'size' => [
  158.                     'width' => $coordinates->getSize()->getWidth(),
  159.                     'height' => $coordinates->getSize()->getHeight(),
  160.                 ],
  161.                 'crop' => [
  162.                     'x' => $coordinates->getCropStart()->getX(),
  163.                     'y' => $coordinates->getCropStart()->getY(),
  164.                     'width' => $coordinates->getCropSize()->getWidth(),
  165.                     'height' => $coordinates->getCropSize()->getHeight(),
  166.                 ],
  167.             ],
  168.             'options' => [
  169.                 'imagine_options' => $options->getImagineOptions(),
  170.                 'preserve_copyright' => $options->getPreserveCopyrightMetadata(),
  171.             ],
  172.         ]);
  173.     }
  174.     private function executeDeferredResize(string $targetPath, array $configImagineInterface $imagine): ImageInterface
  175.     {
  176.         $coordinates = new ResizeCoordinates(
  177.             new Box($config['coordinates']['size']['width'], $config['coordinates']['size']['height']),
  178.             new Point($config['coordinates']['crop']['x'], $config['coordinates']['crop']['y']),
  179.             new Box($config['coordinates']['crop']['width'], $config['coordinates']['crop']['height'])
  180.         );
  181.         $options = new ResizeOptions();
  182.         $options->setImagineOptions($config['options']['imagine_options']);
  183.         if (isset($config['options']['preserve_copyright'])) {
  184.             $options->setPreserveCopyrightMetadata($config['options']['preserve_copyright']);
  185.         }
  186.         $path Path::join($this->cacheDir$config['path']);
  187.         return parent::executeResize(
  188.             new Image($path$imagine$this->filesystem),
  189.             $coordinates,
  190.             Path::join($this->cacheDir$targetPath),
  191.             $options
  192.         );
  193.     }
  194. }