![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-media-gallery-ui/Controller/Adminhtml/Image/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\MediaGalleryUi\Controller\Adminhtml\Image; use Exception; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; use Magento\Framework\App\Action\HttpPostActionInterface; use Magento\Framework\Controller\Result\Json; use Magento\Framework\Controller\ResultFactory; use Magento\Framework\Exception\LocalizedException; use Magento\MediaGalleryApi\Api\Data\AssetInterfaceFactory; use Magento\MediaGalleryApi\Api\Data\AssetKeywordsInterfaceFactory; use Magento\MediaGalleryApi\Api\GetAssetsByIdsInterface; use Magento\MediaGalleryApi\Api\SaveAssetsInterface; use Magento\MediaGalleryApi\Api\SaveAssetsKeywordsInterface; use Magento\MediaGalleryMetadataApi\Api\Data\MetadataInterfaceFactory; use Magento\MediaGalleryUi\Model\UpdateAsset; use Psr\Log\LoggerInterface; class SaveDetails extends Action implements HttpPostActionInterface { private const HTTP_OK = 200; private const HTTP_INTERNAL_ERROR = 500; private const HTTP_BAD_REQUEST = 400; /** * @see _isAllowed() */ public const ADMIN_RESOURCE = 'Magento_MediaGalleryUiApi::edit_assets'; /** * @var UpdateAsset */ private $updateAsset; /** * @var MetadataInterfaceFactory */ private $metadataFactory; /** * @var LoggerInterface */ private $logger; /** * @param Context $context * @param MetadataInterfaceFactory $metadataFactory * @param UpdateAsset $updateAsset * @param LoggerInterface $logger */ public function __construct( Context $context, MetadataInterfaceFactory $metadataFactory, UpdateAsset $updateAsset, LoggerInterface $logger ) { parent::__construct($context); $this->metadataFactory = $metadataFactory; $this->updateAsset = $updateAsset; $this->logger = $logger; } /** * @inheritDoc */ public function execute() { /** @var Json $resultJson */ $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); $assetId = (int) $this->getRequest()->getParam('id'); $title = $this->getRequest()->getParam('title'); $description = $this->getRequest()->getParam('description'); $keywords = (array) $this->getRequest()->getParam('keywords'); if ($assetId === 0) { $responseContent = [ 'success' => false, 'message' => __('Image ID is required.'), ]; $resultJson->setHttpResponseCode(self::HTTP_BAD_REQUEST); $resultJson->setData($responseContent); return $resultJson; } try { $this->updateAsset->execute( $assetId, $this->metadataFactory->create([ 'title' => $title, 'description' => $description, 'keywords' => $keywords ]) ); $responseCode = self::HTTP_OK; $responseContent = [ 'success' => true, 'message' => __('You have successfully saved the image "%image"', ['image' => $title]), ]; } catch (LocalizedException $exception) { $responseCode = self::HTTP_BAD_REQUEST; $responseContent = [ 'success' => false, 'message' => $exception->getMessage(), ]; } catch (Exception $exception) { $this->logger->critical($exception); $responseCode = self::HTTP_INTERNAL_ERROR; $responseContent = [ 'success' => false, 'message' => __('An error occurred on attempt to save image.'), ]; } $resultJson->setHttpResponseCode($responseCode); $resultJson->setData($responseContent); return $resultJson; } }