![]() 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-eav/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Eav\Model; use Magento\Eav\Api\AttributeRepositoryInterface; use Magento\Framework\Api\AttributeInterface; use Magento\Framework\Api\CustomAttributesDataInterface; use Magento\Framework\Api\SearchCriteriaBuilder; use Magento\Framework\EntityManager\MapperInterface; use Magento\Framework\EntityManager\MetadataPool; /** * Class CustomAttributesMapper */ class CustomAttributesMapper implements MapperInterface { /** * @var AttributeRepositoryInterface */ private $attributeRepository; /** * @var MetadataPool */ private $metadataPool; /** * @var SearchCriteriaBuilder */ private $searchCriteriaBuilder; /** * @var array */ private $attributes; /** * @param AttributeRepositoryInterface $attributeRepository * @param MetadataPool $metadataPool * @param SearchCriteriaBuilder $searchCriteriaBuilder */ public function __construct( AttributeRepositoryInterface $attributeRepository, MetadataPool $metadataPool, SearchCriteriaBuilder $searchCriteriaBuilder ) { $this->attributeRepository = $attributeRepository; $this->metadataPool = $metadataPool; $this->searchCriteriaBuilder = $searchCriteriaBuilder; } /** * {@inheritdoc} */ public function entityToDatabase($entityType, $data) { if (!$this->metadataPool->hasConfiguration($entityType) || !$this->metadataPool->getMetadata($entityType)->getEavEntityType() ) { return $data; } if (isset($data[CustomAttributesDataInterface::CUSTOM_ATTRIBUTES])) { foreach ($this->getNonStaticAttributes($entityType) as $attribute) { foreach ($data[CustomAttributesDataInterface::CUSTOM_ATTRIBUTES] as $key => $customAttribute) { if ($customAttribute[AttributeInterface::ATTRIBUTE_CODE] == $attribute->getAttributeCode()) { unset($data[CustomAttributesDataInterface::CUSTOM_ATTRIBUTES][$key]); $data[$attribute->getAttributeCode()] = $customAttribute[AttributeInterface::VALUE]; } } } } return $data; } /** * {@inheritdoc} */ public function databaseToEntity($entityType, $data) { $metadata = $this->metadataPool->getMetadata($entityType); if (!$metadata->getEavEntityType()) { return $data; } foreach ($this->getNonStaticAttributes($entityType) as $attribute) { if (isset($data[$attribute->getAttributeCode()])) { $data[CustomAttributesDataInterface::CUSTOM_ATTRIBUTES][] = [ AttributeInterface::ATTRIBUTE_CODE => $attribute->getAttributeCode(), AttributeInterface::VALUE => $data[$attribute->getAttributeCode()] ]; } } return $data; } /** * Get custom attributes * * @param string $entityType * @return \Magento\Eav\Api\Data\AttributeInterface[] * @throws \Exception */ private function getNonStaticAttributes($entityType) { if (!isset($this->attributes[$entityType])) { $metadata = $this->metadataPool->getMetadata($entityType); $searchResult = $this->attributeRepository->getList( $metadata->getEavEntityType(), $this->searchCriteriaBuilder->addFilter('attribute_set_id', null, 'neq')->create() ); $attributes = []; foreach ($searchResult->getItems() as $attribute) { if (!$attribute->isStatic()) { $attributes[] = $attribute; } } $this->attributes[$entityType] = $attributes; } return $this->attributes[$entityType]; } }