Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Category/Link/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Category/Link/ReadHandler.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Catalog\Model\Category\Link;

use Magento\Framework\EntityManager\Operation\ExtensionInterface;

/**
 * Read handler for catalog product link.
 */
class ReadHandler implements ExtensionInterface
{
    /**
     * @var \Magento\Catalog\Api\Data\CategoryLinkInterfaceFactory
     */
    private $categoryLinkFactory;

    /**
     * @var \Magento\Catalog\Model\ResourceModel\Product\CategoryLink
     */
    private $productCategoryLink;

    /**
     * @var \Magento\Framework\Api\DataObjectHelper
     */
    private $dataObjectHelper;

    /**
     * ReadHandler constructor.
     *
     * @param \Magento\Catalog\Api\Data\CategoryLinkInterfaceFactory $categoryLinkFactory
     * @param \Magento\Framework\Api\DataObjectHelper $dataObjectHelper
     * @param \Magento\Catalog\Model\ResourceModel\Product\CategoryLink $productCategoryLink
     */
    public function __construct(
        \Magento\Catalog\Api\Data\CategoryLinkInterfaceFactory $categoryLinkFactory,
        \Magento\Framework\Api\DataObjectHelper $dataObjectHelper,
        \Magento\Catalog\Model\ResourceModel\Product\CategoryLink $productCategoryLink
    ) {
        $this->categoryLinkFactory = $categoryLinkFactory;
        $this->dataObjectHelper = $dataObjectHelper;
        $this->productCategoryLink = $productCategoryLink;
    }

    /**
     * @param object $entity
     * @param array $arguments
     * @return object
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function execute($entity, $arguments = [])
    {
        $categoryLinks = [];
        foreach ($this->productCategoryLink->getCategoryLinks($entity) as $categoryData) {
            /** @var \Magento\Catalog\Api\Data\CategoryLinkInterface $categoryLink  */
            $categoryLink = $this->categoryLinkFactory->create();
            $this->dataObjectHelper->populateWithArray(
                $categoryLink,
                $categoryData,
                \Magento\Catalog\Api\Data\CategoryLinkInterface::class
            );
            $categoryLinks[] = $categoryLink;
        }

        $extensionAttributes = $entity->getExtensionAttributes();
        $extensionAttributes->setCategoryLinks(!empty($categoryLinks) ? $categoryLinks : null);
        $entity->setExtensionAttributes($extensionAttributes);

        return $entity;
    }
}