-
-
Save beejhuff/1dc989bf97b41acf7fa5e70e6e1c11ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @copyright Copyright (c) 2014 X.commerce, Inc. (http://www.magentocommerce.com) | |
*/ | |
namespace Magento\Wishlist\Helper; | |
class Rss extends \Magento\Wishlist\Helper\Data | |
{ | |
/** | |
* @var \Magento\Customer\Api\Data\CustomerInterface | |
*/ | |
protected $_customer; | |
/** | |
* @var \Magento\Customer\Api\Data\CustomerDataBuilder | |
*/ | |
protected $_customerBuilder; | |
/** | |
* @var \Magento\Customer\Api\CustomerRepositoryInterface | |
*/ | |
protected $_customerRepository; | |
/** | |
* @param \Magento\Framework\App\Helper\Context $context | |
* @param \Magento\Framework\Registry $coreRegistry | |
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig | |
* @param \Magento\Customer\Model\Session $customerSession | |
* @param \Magento\Wishlist\Model\WishlistFactory $wishlistFactory | |
* @param \Magento\Store\Model\StoreManagerInterface $storeManager | |
* @param \Magento\Core\Helper\PostData $postDataHelper | |
* @param \Magento\Customer\Helper\View $customerViewHelper | |
* @param \Magento\Wishlist\Controller\WishlistProviderInterface $wishlistProvider | |
* @param \Magento\Customer\Api\Data\CustomerDataBuilder $customerBuilder | |
* @param \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository | |
*/ | |
public function __construct( | |
\Magento\Framework\App\Helper\Context $context, | |
\Magento\Framework\Registry $coreRegistry, | |
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, | |
\Magento\Customer\Model\Session $customerSession, | |
\Magento\Wishlist\Model\WishlistFactory $wishlistFactory, | |
\Magento\Store\Model\StoreManagerInterface $storeManager, | |
\Magento\Core\Helper\PostData $postDataHelper, | |
\Magento\Customer\Helper\View $customerViewHelper, | |
\Magento\Wishlist\Controller\WishlistProviderInterface $wishlistProvider, | |
\Magento\Customer\Api\Data\CustomerDataBuilder $customerBuilder, | |
\Magento\Customer\Api\CustomerRepositoryInterface $customerRepository | |
) { | |
$this->_customerBuilder = $customerBuilder; | |
$this->_customerRepository = $customerRepository; | |
parent::__construct( | |
$context, | |
$coreRegistry, | |
$scopeConfig, | |
$customerSession, | |
$wishlistFactory, | |
$storeManager, | |
$postDataHelper, | |
$customerViewHelper, | |
$wishlistProvider | |
); | |
} | |
/** | |
* Retrieve Wishlist model | |
* | |
* @return \Magento\Wishlist\Model\Wishlist | |
*/ | |
public function getWishlist() | |
{ | |
if (is_null($this->_wishlist)) { | |
$this->_wishlist = $this->_wishlistFactory->create(); | |
$wishlistId = $this->_getRequest()->getParam('wishlist_id'); | |
if ($wishlistId) { | |
$this->_wishlist->load($wishlistId); | |
} else { | |
if ($this->getCustomer()->getId()) { | |
$this->_wishlist->loadByCustomerId($this->getCustomer()->getId()); | |
} | |
} | |
} | |
return $this->_wishlist; | |
} | |
/** | |
* Retrieve Customer instance | |
* | |
* @return \Magento\Customer\Api\Data\CustomerInterface | |
*/ | |
public function getCustomer() | |
{ | |
if (is_null($this->_customer)) { | |
$params = $this->urlDecoder->decode($this->_getRequest()->getParam('data')); | |
$data = explode(',', $params); | |
$customerId = abs(intval($data[0])); | |
if ($customerId && ($customerId == $this->_customerSession->getCustomerId())) { | |
$this->_customer = $this->_customerRepository->getById($customerId); | |
} else { | |
$this->_customer = $this->_customerBuilder->create(); | |
} | |
} | |
return $this->_customer; | |
} | |
/** | |
* Is allow RSS | |
* | |
* @return bool | |
*/ | |
public function isRssAllow() | |
{ | |
return $this->_moduleManager->isEnabled('Magento_Rss') | |
&& $this->_scopeConfig->isSetFlag('rss/wishlist/active', \Magento\Store\Model\ScopeInterface::SCOPE_STORE); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment