| Current Path : /home/rtorresani/www/vendor/magento/module-configurable-product/Model/Attribute/ |
| Current File : //home/rtorresani/www/vendor/magento/module-configurable-product/Model/Attribute/LockValidator.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ConfigurableProduct\Model\Attribute;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Model\Attribute\LockValidatorInterface;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\EntityManager\MetadataPool;
/**
* Class LockValidator
*/
class LockValidator implements LockValidatorInterface
{
/**
* @var Resource
*/
protected $resource;
/**
* @var MetadataPool
*/
private $metadataPool;
/**
* Constructor
*
* @param ResourceConnection $resource
*/
public function __construct(
ResourceConnection $resource
) {
$this->resource = $resource;
}
/**
* Check attribute lock state
*
* @param \Magento\Framework\Model\AbstractModel $object
* @param null $attributeSet
* @throws \Magento\Framework\Exception\LocalizedException
* @return void
*/
public function validate(\Magento\Framework\Model\AbstractModel $object, $attributeSet = null)
{
$metadata = $this->getMetadataPool()->getMetadata(ProductInterface::class);
$connection = $this->resource->getConnection();
$bind = ['attribute_id' => $object->getAttributeId()];
$select = clone $connection->select();
$select->reset()
->from(
['main_table' => $this->resource->getTableName('catalog_product_super_attribute')],
['psa_count' => 'COUNT(product_super_attribute_id)']
)->join(
['entity' => $this->resource->getTableName('catalog_product_entity')],
'main_table.product_id = entity.' . $metadata->getLinkField()
)->where('main_table.attribute_id = :attribute_id')
->group('main_table.attribute_id')
->limit(1);
if ($attributeSet !== null) {
$bind['attribute_set_id'] = $attributeSet;
$select->where('entity.attribute_set_id = :attribute_set_id');
}
if ($connection->fetchOne($select, $bind)) {
throw new \Magento\Framework\Exception\LocalizedException(
__('This attribute is used in configurable products.')
);
}
}
/**
* Get MetadataPool instance
* @return MetadataPool
*/
private function getMetadataPool()
{
if (!$this->metadataPool) {
$this->metadataPool = ObjectManager::getInstance()->get(MetadataPool::class);
}
return $this->metadataPool;
}
}