| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Product/Website/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Product/Website/ReadHandler.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Product\Website;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Model\ResourceModel\Product\Website\Link as ProductWebsiteLink;
use Magento\Framework\EntityManager\Operation\ExtensionInterface;
/**
* Add websites ids to product extension attributes.
*/
class ReadHandler implements ExtensionInterface
{
/**
* @var \Magento\Catalog\Model\ResourceModel\Product\Website\Link
*/
private $productWebsiteLink;
/**
* ReadHandler constructor.
* @param ProductWebsiteLink $productWebsiteLink
*/
public function __construct(
ProductWebsiteLink $productWebsiteLink
) {
$this->productWebsiteLink = $productWebsiteLink;
}
/**
* Add website ids to product extension attributes, if no set.
*
* @param ProductInterface $product
* @param array $arguments
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
* @return ProductInterface
*/
public function execute($product, $arguments = [])
{
if ($product->getExtensionAttributes()->getWebsiteIds() !== null) {
return $product;
}
$websiteIds = $this->productWebsiteLink->getWebsiteIdsByProductId($product->getId());
$extensionAttributes = $product->getExtensionAttributes();
$extensionAttributes->setWebsiteIds($websiteIds);
$product->setExtensionAttributes($extensionAttributes);
return $product;
}
}