123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- /**
- * Media application
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\MediaStorage\App;
- use Magento\Catalog\Model\View\Asset\PlaceholderFactory;
- use Magento\Framework\App\State;
- use Magento\Framework\Filesystem;
- use Magento\MediaStorage\Model\File\Storage\ConfigFactory;
- use Magento\MediaStorage\Model\File\Storage\Response;
- use Magento\Framework\App;
- use Magento\Framework\App\Filesystem\DirectoryList;
- use Magento\Framework\AppInterface;
- use Magento\MediaStorage\Model\File\Storage\SynchronizationFactory;
- use Magento\Framework\App\Area;
- use Magento\MediaStorage\Model\File\Storage\Config;
- use Magento\MediaStorage\Service\ImageResize;
- /**
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class Media implements AppInterface
- {
- /**
- * Authorization function
- *
- * @var \Closure
- */
- private $isAllowed;
- /**
- * Media directory path
- *
- * @var string
- */
- private $mediaDirectoryPath;
- /**
- * Configuration cache file path
- *
- * @var string
- */
- private $configCacheFile;
- /**
- * Requested file name relative to working directory
- *
- * @var string
- */
- private $relativeFileName;
- /**
- * @var Response
- */
- private $response;
- /**
- * @var \Magento\Framework\Filesystem\Directory\WriteInterface
- */
- private $directory;
- /**
- * @var ConfigFactory
- */
- private $configFactory;
- /**
- * @var SynchronizationFactory
- */
- private $syncFactory;
- /**
- * @var PlaceholderFactory
- */
- private $placeholderFactory;
- /**
- * @var State
- */
- private $appState;
- /**
- * @var ImageResize
- */
- private $imageResize;
- /**
- * @param ConfigFactory $configFactory
- * @param SynchronizationFactory $syncFactory
- * @param Response $response
- * @param \Closure $isAllowed
- * @param string $mediaDirectory
- * @param string $configCacheFile
- * @param string $relativeFileName
- * @param Filesystem $filesystem
- * @param PlaceholderFactory $placeholderFactory
- * @param State $state
- * @param ImageResize $imageResize
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- ConfigFactory $configFactory,
- SynchronizationFactory $syncFactory,
- Response $response,
- \Closure $isAllowed,
- $mediaDirectory,
- $configCacheFile,
- $relativeFileName,
- Filesystem $filesystem,
- PlaceholderFactory $placeholderFactory,
- State $state,
- ImageResize $imageResize
- ) {
- $this->response = $response;
- $this->isAllowed = $isAllowed;
- $this->directory = $filesystem->getDirectoryWrite(DirectoryList::PUB);
- $mediaDirectory = trim($mediaDirectory);
- if (!empty($mediaDirectory)) {
- $this->mediaDirectoryPath = str_replace('\\', '/', realpath($mediaDirectory));
- }
- $this->configCacheFile = $configCacheFile;
- $this->relativeFileName = $relativeFileName;
- $this->configFactory = $configFactory;
- $this->syncFactory = $syncFactory;
- $this->placeholderFactory = $placeholderFactory;
- $this->appState = $state;
- $this->imageResize = $imageResize;
- }
- /**
- * Run application
- *
- * @return Response
- * @throws \LogicException
- */
- public function launch()
- {
- $this->appState->setAreaCode(Area::AREA_GLOBAL);
- if ($this->mediaDirectoryPath !== $this->directory->getAbsolutePath()) {
- // Path to media directory changed or absent - update the config
- /** @var Config $config */
- $config = $this->configFactory->create(['cacheFile' => $this->configCacheFile]);
- $config->save();
- $this->mediaDirectoryPath = $config->getMediaDirectory();
- $allowedResources = $config->getAllowedResources();
- $isAllowed = $this->isAllowed;
- if (!$isAllowed($this->relativeFileName, $allowedResources)) {
- throw new \LogicException('The specified path is not allowed.');
- }
- }
- try {
- /** @var \Magento\MediaStorage\Model\File\Storage\Synchronization $sync */
- $sync = $this->syncFactory->create(['directory' => $this->directory]);
- $sync->synchronize($this->relativeFileName);
- $this->imageResize->resizeFromImageName($this->getOriginalImage($this->relativeFileName));
- if ($this->directory->isReadable($this->relativeFileName)) {
- $this->response->setFilePath($this->directory->getAbsolutePath($this->relativeFileName));
- } else {
- $this->setPlaceholderImage();
- }
- } catch (\Exception $e) {
- $this->setPlaceholderImage();
- }
- return $this->response;
- }
- private function setPlaceholderImage()
- {
- $placeholder = $this->placeholderFactory->create(['type' => 'image']);
- $this->response->setFilePath($placeholder->getPath());
- }
- /**
- * Find the path to the original image of the cache path
- *
- * @param string $resizedImagePath
- * @return string
- */
- private function getOriginalImage(string $resizedImagePath): string
- {
- return preg_replace('|^.*((?:/[^/]+){3})$|', '$1', $resizedImagePath);
- }
- /**
- * {@inheritdoc}
- */
- public function catchException(App\Bootstrap $bootstrap, \Exception $exception)
- {
- $this->response->setHttpResponseCode(404);
- if ($bootstrap->isDeveloperMode()) {
- $this->response->setHeader('Content-Type', 'text/plain');
- $this->response->setBody($exception->getMessage() . "\n" . $exception->getTraceAsString());
- }
- $this->response->sendResponse();
- return true;
- }
- }
|