![]() 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/cartforge.co/vendor/magento/module-catalog/Model/Product/Compare/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Compare; use Magento\Catalog\Model\Product; /** * Catalog Compare Item Model * * @api * @method \Magento\Catalog\Model\Product\Compare\Item setVisitorId(int $value) * @method \Magento\Catalog\Model\Product\Compare\Item setCustomerId(int $value) * @method int getProductId() * @method \Magento\Catalog\Model\Product\Compare\Item setProductId(int $value) * @method int getStoreId() * @method \Magento\Catalog\Model\Product\Compare\Item setStoreId(int $value) * @since 100.0.2 */ class Item extends \Magento\Framework\Model\AbstractModel implements \Magento\Framework\DataObject\IdentityInterface { /** * Model cache tag */ const CACHE_TAG = 'compare_item'; /** * Prefix of model events names * * @var string */ protected $_eventPrefix = 'catalog_compare_item'; /** * Parameter name in event * * In observe method you can use $observer->getEvent()->getItem() in this case * * @var string */ protected $_eventObject = 'item'; /** * Catalog product compare * * @var \Magento\Catalog\Helper\Product\Compare */ protected $_catalogProductCompare = null; /** * Customer session * * @var \Magento\Customer\Model\Session */ protected $_customerSession; /** * Customer visitor * * @var \Magento\Customer\Model\Visitor */ protected $_customerVisitor; /** * Store manager * * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Customer\Model\Visitor $customerVisitor * @param \Magento\Customer\Model\Session $customerSession * @param \Magento\Catalog\Helper\Product\Compare $catalogProductCompare * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data */ public function __construct( \Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Customer\Model\Visitor $customerVisitor, \Magento\Customer\Model\Session $customerSession, \Magento\Catalog\Helper\Product\Compare $catalogProductCompare, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [] ) { $this->_storeManager = $storeManager; $this->_customerVisitor = $customerVisitor; $this->_customerSession = $customerSession; $this->_catalogProductCompare = $catalogProductCompare; parent::__construct($context, $registry, $resource, $resourceCollection, $data); } /** * Initialize resourse model * * @return void */ protected function _construct() { $this->_init(\Magento\Catalog\Model\ResourceModel\Product\Compare\Item::class); } /** * Set current store before save * * @return $this */ public function beforeSave() { parent::beforeSave(); if (!$this->hasStoreId()) { $this->setStoreId($this->_storeManager->getStore()->getId()); } return $this; } /** * Set visitor * * @param int $visitorId * @return $this */ public function addVisitorId($visitorId) { $this->setVisitorId($visitorId); return $this; } /** * Load compare item by product * * @param Product|int $product * @return $this */ public function loadByProduct($product) { $this->_getResource()->loadByProduct($this, $product); return $this; } /** * Set product data * * @param Product|int $product * @return $this */ public function addProductData($product) { if ($product instanceof Product) { $this->setProductId($product->getId()); } elseif ((int) $product) { $this->setProductId((int) $product); } return $this; } /** * Retrieve data for save * * @return array */ public function getDataForSave() { $data = []; $data['customer_id'] = $this->getCustomerId(); $data['visitor_id'] = $this->getVisitorId(); $data['product_id'] = $this->getProductId(); return $data; } /** * Customer login bind process * * @return $this */ public function bindCustomerLogin() { $this->_getResource()->updateCustomerFromVisitor($this); $this->_catalogProductCompare->setCustomerId($this->getCustomerId())->calculate(); return $this; } /** * Customer logout bind process * * @param \Magento\Framework\Event\Observer $observer * @return $this * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function bindCustomerLogout(\Magento\Framework\Event\Observer $observer = null) { $this->_getResource()->purgeVisitorByCustomer($this); $this->_catalogProductCompare->calculate(true); return $this; } /** * Clean compare items * * @return $this */ public function clean() { $this->_getResource()->clean(); return $this; } /** * Retrieve Customer Id if logged in * * @return int */ public function getCustomerId() { if (!$this->hasData('customer_id')) { $customerId = $this->_customerSession->getCustomerId(); $this->setData('customer_id', $customerId); } return $this->getData('customer_id'); } /** * Retrieve Visitor Id * * @return int */ public function getVisitorId() { if (!$this->hasData('visitor_id')) { $visitorId = $this->_customerVisitor->getId(); $this->setData('visitor_id', $visitorId); } return $this->getData('visitor_id'); } /** * Get identities * * @return array */ public function getIdentities() { return [self::CACHE_TAG . '_' . $this->getId()]; } }