![]() 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-customer/Controller/Address/File/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Customer\Controller\Address\File; use Magento\Framework\App\Action\Action; use Magento\Framework\App\Action\Context; use Magento\Framework\App\Action\HttpPostActionInterface; use Magento\Framework\Api\CustomAttributesDataInterface; use Magento\Customer\Api\AddressMetadataInterface; use Magento\Customer\Model\FileUploader; use Magento\Customer\Model\FileUploaderFactory; use Magento\Framework\Controller\ResultFactory; use Magento\Framework\Exception\LocalizedException; use Psr\Log\LoggerInterface; use Magento\Customer\Model\FileProcessorFactory; /** * Class for upload files for customer custom address attributes */ class Upload extends Action implements HttpPostActionInterface { /** * @var FileUploaderFactory */ private $fileUploaderFactory; /** * @var AddressMetadataInterface */ private $addressMetadataService; /** * @var LoggerInterface */ private $logger; /** * @var FileProcessorFactory */ private $fileProcessorFactory; /** * @param Context $context * @param FileUploaderFactory $fileUploaderFactory * @param AddressMetadataInterface $addressMetadataService * @param LoggerInterface $logger * @param FileProcessorFactory $fileProcessorFactory */ public function __construct( Context $context, FileUploaderFactory $fileUploaderFactory, AddressMetadataInterface $addressMetadataService, LoggerInterface $logger, FileProcessorFactory $fileProcessorFactory ) { $this->fileUploaderFactory = $fileUploaderFactory; $this->addressMetadataService = $addressMetadataService; $this->logger = $logger; $this->fileProcessorFactory = $fileProcessorFactory; parent::__construct($context); } /** * @inheritDoc */ public function execute() { try { $requestedFiles = $this->getRequest()->getFiles('custom_attributes'); if (empty($requestedFiles)) { $result = $this->processError(__('No files for upload.')); } else { $attributeCode = key($requestedFiles); $attributeMetadata = $this->addressMetadataService->getAttributeMetadata($attributeCode); /** @var FileUploader $fileUploader */ $fileUploader = $this->fileUploaderFactory->create([ 'attributeMetadata' => $attributeMetadata, 'entityTypeCode' => AddressMetadataInterface::ENTITY_TYPE_ADDRESS, 'scope' => CustomAttributesDataInterface::CUSTOM_ATTRIBUTES, ]); $errors = $fileUploader->validate(); if (true !== $errors) { $errorMessage = implode('</br>', $errors); $result = $this->processError(($errorMessage)); } else { $result = $fileUploader->upload(); $this->moveTmpFileToSuitableFolder($result); } } } catch (LocalizedException $e) { $result = $this->processError($e->getMessage(), $e->getCode()); } catch (\Exception $e) { $this->logger->critical($e); $result = $this->processError($e->getMessage(), $e->getCode()); } /** @var \Magento\Framework\Controller\Result\Json $resultJson */ $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); $resultJson->setData($result); return $resultJson; } /** * Move file from temporary folder to the 'customer_address' media folder * * @param array $fileInfo * @throws LocalizedException */ private function moveTmpFileToSuitableFolder(&$fileInfo) { $fileName = $fileInfo['file']; $fileProcessor = $this->fileProcessorFactory ->create(['entityTypeCode' => AddressMetadataInterface::ENTITY_TYPE_ADDRESS]); $newFilePath = $fileProcessor->moveTemporaryFile($fileName); $fileInfo['file'] = $newFilePath; $fileInfo['url'] = $fileProcessor->getViewUrl( $newFilePath, 'file' ); } /** * Prepare result array for errors * * @param string $message * @param int $code * @return array */ private function processError($message, $code = 0) { $result = [ 'error' => $message, 'errorcode' => $code, ]; return $result; } }