![]() 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/Adminhtml/File/Customer/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Controller\Adminhtml\File\Customer; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; use Magento\Customer\Api\CustomerMetadataInterface; use Magento\Customer\Model\FileUploader; use Magento\Customer\Model\FileUploaderFactory; use Magento\Framework\Controller\ResultFactory; use Magento\Framework\Exception\LocalizedException; use Psr\Log\LoggerInterface; /** * Class for upload customer file attribute */ class Upload extends Action { /** * Authorization level of a basic admin session * * @see _isAllowed() */ const ADMIN_RESOURCE = 'Magento_Customer::manage'; /** * @var FileUploaderFactory */ private $fileUploaderFactory; /** * @var CustomerMetadataInterface */ private $customerMetadataService; /** * @var LoggerInterface */ private $logger; /** * @var string */ private $scope; /** * @param Context $context * @param FileUploaderFactory $fileUploaderFactory * @param CustomerMetadataInterface $customerMetadataService * @param LoggerInterface $logger */ public function __construct( Context $context, FileUploaderFactory $fileUploaderFactory, CustomerMetadataInterface $customerMetadataService, LoggerInterface $logger ) { $this->fileUploaderFactory = $fileUploaderFactory; $this->customerMetadataService = $customerMetadataService; $this->logger = $logger; parent::__construct($context); } /** * @inheritDoc */ public function execute() { try { if (empty($_FILES)) { throw new \Exception('$_FILES array is empty.'); } $scope = array_key_first($_FILES); $attributeCode = key($_FILES[$scope]['name']); $attributeMetadata = $this->customerMetadataService->getAttributeMetadata($attributeCode); /** @var FileUploader $fileUploader */ $fileUploader = $this->fileUploaderFactory->create([ 'attributeMetadata' => $attributeMetadata, 'entityTypeCode' => CustomerMetadataInterface::ENTITY_TYPE_CUSTOMER, 'scope' => $scope, ]); $errors = $fileUploader->validate(); if (true !== $errors) { $errorMessage = implode('</br>', $errors); throw new LocalizedException(__($errorMessage)); } $result = $fileUploader->upload(); } catch (LocalizedException $e) { $result = [ 'error' => $e->getMessage(), 'errorcode' => $e->getCode(), ]; } catch (\Exception $e) { $this->logger->critical($e); $result = [ 'error' => __('Something went wrong while saving file.'), 'errorcode' => $e->getCode(), ]; } /** @var \Magento\Framework\Controller\Result\Json $resultJson */ $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON); $resultJson->setData($result); return $resultJson; } }