| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Wishlist/controllers/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Wishlist
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Wishlist front controller
*
* @category Mage
* @package Mage_Wishlist
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Wishlist_IndexController extends Mage_Wishlist_Controller_Abstract
{
/**
* Action list where need check enabled cookie
*
* @var array
*/
protected $_cookieCheckActions = array('add');
public function preDispatch()
{
parent::preDispatch();
if (!Mage::getSingleton('customer/session')->authenticate($this)) {
$this->setFlag('', 'no-dispatch', true);
if(!Mage::getSingleton('customer/session')->getBeforeWishlistUrl()) {
Mage::getSingleton('customer/session')->setBeforeWishlistUrl($this->_getRefererUrl());
}
}
if (!Mage::getStoreConfigFlag('wishlist/general/active')) {
$this->norouteAction();
return;
}
}
/**
* Retrieve wishlist object
*
* @return Mage_Wishlist_Model_Wishlist|false
*/
protected function _getWishlist()
{
try {
$wishlist = Mage::getModel('wishlist/wishlist')
->loadByCustomer(Mage::getSingleton('customer/session')->getCustomer(), true);
Mage::register('wishlist', $wishlist);
} catch (Mage_Core_Exception $e) {
Mage::getSingleton('wishlist/session')->addError($e->getMessage());
} catch (Exception $e) {
Mage::getSingleton('wishlist/session')->addException($e,
Mage::helper('wishlist')->__('Cannot create wishlist.')
);
return false;
}
return $wishlist;
}
/**
* Display customer wishlist
*/
public function indexAction()
{
$this->_getWishlist();
$this->loadLayout();
$session = Mage::getSingleton('customer/session');
$block = $this->getLayout()->getBlock('customer.wishlist');
$referer = $session->getAddActionReferer(true);
if ($block) {
$block->setRefererUrl($this->_getRefererUrl());
if ($referer) {
$block->setRefererUrl($referer);
}
}
$this->_initLayoutMessages('customer/session');
$this->_initLayoutMessages('checkout/session');
$this->_initLayoutMessages('catalog/session');
$this->_initLayoutMessages('wishlist/session');
$this->renderLayout();
}
/**
* Adding new item
*/
public function addAction()
{
$session = Mage::getSingleton('customer/session');
$wishlist = $this->_getWishlist();
if (!$wishlist) {
$this->_redirect('*/');
return;
}
$productId = (int) $this->getRequest()->getParam('product');
if (!$productId) {
$this->_redirect('*/');
return;
}
$product = Mage::getModel('catalog/product')->load($productId);
if (!$product->getId() || !$product->isVisibleInCatalog()) {
$session->addError($this->__('Cannot specify product.'));
$this->_redirect('*/');
return;
}
try {
$wishlist->addNewItem($product->getId());
$wishlist->save();
Mage::dispatchEvent('wishlist_add_product', array('wishlist'=>$wishlist, 'product'=>$product));
if ($referer = $session->getBeforeWishlistUrl()) {
$session->setBeforeWishlistUrl(null);
}
else {
$referer = $this->_getRefererUrl();
}
/**
* Set referer to avoid referring to the compare popup window
*/
$session->setAddActionReferer($referer);
Mage::helper('wishlist')->calculate();
$message = $this->__('%1$s has been added to your wishlist. Click <a href="%2$s">here</a> to continue shopping', $product->getName(), $referer);
$session->addSuccess($message);
}
catch (Mage_Core_Exception $e) {
$session->addError($this->__('An error occurred while adding item to wishlist: %s', $e->getMessage()));
}
catch (Exception $e) {
$session->addError($this->__('An error occurred while adding item to wishlist.'));
}
$this->_redirect('*');
}
/**
* Update wishlist item comments
*/
public function updateAction()
{
if (!$this->_validateFormKey()) {
return $this->_redirect('*/*/');
}
$post = $this->getRequest()->getPost();
if($post && isset($post['description']) && is_array($post['description'])) {
$wishlist = $this->_getWishlist();
$updatedItems = 0;
foreach ($post['description'] as $itemId => $description) {
$item = Mage::getModel('wishlist/item')->load($itemId);
$description = (string) $description;
if(!strlen($description) || $item->getWishlistId()!=$wishlist->getId()) {
continue;
}
try {
$item->setDescription($description)
->save();
$updatedItems++;
}
catch (Exception $e) {
Mage::getSingleton('customer/session')->addError(
$this->__('Can\'t save description %s', Mage::helper('core')->htmlEscape($description))
);
}
}
// save wishlist model for setting date of last update
if ($updatedItems) {
try {
$wishlist->save();
}
catch (Exception $e) {
Mage::getSingleton('customer/session')->addError($this->__('Can\'t update wishlist'));
}
}
if (isset($post['save_and_share'])) {
$this->_redirect('*/*/share');
return;
}
}
$this->_redirect('*');
}
/**
* Remove item
*/
public function removeAction()
{
$wishlist = $this->_getWishlist();
$id = (int) $this->getRequest()->getParam('item');
$item = Mage::getModel('wishlist/item')->load($id);
if($item->getWishlistId()==$wishlist->getId()) {
try {
$item->delete();
$wishlist->save();
}
catch (Mage_Core_Exception $e) {
Mage::getSingleton('customer/session')->addError(
$this->__('An error occurred while deleting the item from wishlist: %s', $e->getMessage())
);
}
catch(Exception $e) {
Mage::getSingleton('customer/session')->addError(
$this->__('An error occurred while deleting the item from wishlist.')
);
}
}
Mage::helper('wishlist')->calculate();
$this->_redirectReferer(Mage::getUrl('*/*'));
}
/**
* Add wishlist item to shopping cart and remove from wishlist
*
* If Product has required options - item removed from wishlist and redirect
* to product view page with message about needed defined required options
*
*/
public function cartAction()
{
$wishlist = $this->_getWishlist();
if (!$wishlist) {
return $this->_redirect('*/*');
}
$itemId = (int)$this->getRequest()->getParam('item');
/* @var $item Mage_Wishlist_Model_Item */
$item = Mage::getModel('wishlist/item')->load($itemId);
if (!$item->getId() || $item->getWishlistId() != $wishlist->getId()) {
return $this->_redirect('*/*');
}
/* @var $session Mage_Wishlist_Model_Session */
$session = Mage::getSingleton('wishlist/session');
$cart = Mage::getSingleton('checkout/cart');
$redirectUrl = Mage::getUrl('*/*');
try {
$item->addToCart($cart, true);
$cart->save()-> getQuote()->collectTotals();
$wishlist->save();
Mage::helper('wishlist')->calculate();
if (Mage::helper('checkout/cart')->getShouldRedirectToCart()) {
$redirectUrl = Mage::helper('checkout/cart')->getCartUrl();
} else if ($this->_getRefererUrl()) {
$redirectUrl = $this->_getRefererUrl();
}
} catch (Mage_Core_Exception $e) {
if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_NOT_SALABLE) {
$session->addError(Mage::helper('wishlist')->__('This product(s) is currently out of stock'));
} else if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_HAS_REQUIRED_OPTIONS) {
$redirectUrl = $item->getProductUrl();
$item->delete();
} else if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_IS_GROUPED_PRODUCT) {
$redirectUrl = $item->getProductUrl();
$item->delete();
} else {
$session->addError($e->getMessage());
}
} catch (Exception $e) {
$session->addException($e, Mage::helper('wishlist')->__('Cannot add item to shopping cart'));
}
Mage::helper('wishlist')->calculate();
return $this->_redirectUrl($redirectUrl);
}
public function shareAction()
{
$this->loadLayout();
$this->_initLayoutMessages('customer/session');
$this->_initLayoutMessages('wishlist/session');
$this->renderLayout();
}
public function sendAction()
{
if (!$this->_validateFormKey()) {
return $this->_redirect('*/*/');
}
$emails = explode(',', $this->getRequest()->getPost('emails'));
$message= nl2br(htmlspecialchars((string) $this->getRequest()->getPost('message')));
$error = false;
if (empty($emails)) {
$error = $this->__('Email address can\'t be empty.');
}
else {
foreach ($emails as $index => $email) {
$email = trim($email);
if (!Zend_Validate::is($email, 'EmailAddress')) {
$error = $this->__('Please input a valid email address.');
break;
}
$emails[$index] = $email;
}
}
if ($error) {
Mage::getSingleton('wishlist/session')->addError($error);
Mage::getSingleton('wishlist/session')->setSharingForm($this->getRequest()->getPost());
$this->_redirect('*/*/share');
return;
}
$translate = Mage::getSingleton('core/translate');
/* @var $translate Mage_Core_Model_Translate */
$translate->setTranslateInline(false);
try {
$customer = Mage::getSingleton('customer/session')->getCustomer();
$wishlist = $this->_getWishlist();
/*if share rss added rss feed to email template*/
if ($this->getRequest()->getParam('rss_url')) {
$rss_url = $this->getLayout()->createBlock('wishlist/share_email_rss')->toHtml();
$message .=$rss_url;
}
$wishlistBlock = $this->getLayout()->createBlock('wishlist/share_email_items')->toHtml();
$emails = array_unique($emails);
/* @var $emailModel Mage_Core_Model_Email_Template */
$emailModel = Mage::getModel('core/email_template');
foreach($emails as $email) {
$emailModel->sendTransactional(
Mage::getStoreConfig('wishlist/email/email_template'),
Mage::getStoreConfig('wishlist/email/email_identity'),
$email,
null,
array(
'customer' => $customer,
'salable' => $wishlist->isSalable() ? 'yes' : '',
'items' => $wishlistBlock,
'addAllLink' => Mage::getUrl('*/shared/allcart', array('code' => $wishlist->getSharingCode())),
'viewOnSiteLink'=> Mage::getUrl('*/shared/index', array('code' => $wishlist->getSharingCode())),
'message' => $message
));
}
$wishlist->setShared(1);
$wishlist->save();
$translate->setTranslateInline(true);
Mage::dispatchEvent('wishlist_share', array('wishlist'=>$wishlist));
Mage::getSingleton('customer/session')->addSuccess(
$this->__('Your Wishlist has been shared.')
);
$this->_redirect('*/*');
}
catch (Exception $e) {
$translate->setTranslateInline(true);
Mage::getSingleton('wishlist/session')->addError($e->getMessage());
Mage::getSingleton('wishlist/session')->setSharingForm($this->getRequest()->getPost());
$this->_redirect('*/*/share');
}
}
}