productRepository = $productRepository; parent::__construct($context, $customerSession); $this->storeManager = $storeManager ?: $this->_objectManager ->get(\Magento\Store\Model\StoreManagerInterface::class); } /** * Method for adding info about product alert stock. * * @return \Magento\Framework\Controller\Result\Redirect */ public function execute() { $backUrl = $this->getRequest()->getParam(Action::PARAM_NAME_URL_ENCODED); $productId = (int)$this->getRequest()->getParam('product_id'); /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */ $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); if (!$backUrl || !$productId) { $resultRedirect->setPath('/'); return $resultRedirect; } try { /* @var $product \Magento\Catalog\Model\Product */ $product = $this->productRepository->getById($productId); $store = $this->storeManager->getStore(); /** @var \Magento\ProductAlert\Model\Stock $model */ $model = $this->_objectManager->create(\Magento\ProductAlert\Model\Stock::class) ->setCustomerId($this->customerSession->getCustomerId()) ->setProductId($product->getId()) ->setWebsiteId($store->getWebsiteId()) ->setStoreId($store->getId()); $model->save(); $this->messageManager->addSuccess(__('Alert subscription has been saved.')); } catch (NoSuchEntityException $noEntityException) { $this->messageManager->addError(__('There are not enough parameters.')); $resultRedirect->setUrl($backUrl); return $resultRedirect; } catch (\Exception $e) { $this->messageManager->addException( $e, __("The alert subscription couldn't update at this time. Please try again later.") ); } $resultRedirect->setUrl($this->_redirect->getRedirectUrl()); return $resultRedirect; } }