| 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/CatalogInventory/Model/Indexer/ |
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_CatalogInventory
* @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)
*/
/**
* CatalogInventory Stock Status Indexer Model
*
* @category Mage
* @package Mage_CatalogInventory
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_CatalogInventory_Model_Indexer_Stock extends Mage_Index_Model_Indexer_Abstract
{
/**
* @var array
*/
protected $_matchedEntities = array(
Mage_CatalogInventory_Model_Stock_Item::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
Mage_Catalog_Model_Product::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE,
Mage_Index_Model_Event::TYPE_MASS_ACTION,
Mage_Index_Model_Event::TYPE_DELETE
),
Mage_Core_Model_Store::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
Mage_Core_Model_Store_Group::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
Mage_Core_Model_Config_Data::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
Mage_Catalog_Model_Convert_Adapter_Product::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
)
);
/**
* Related config settings
*
* @var array
*/
protected $_relatedConfigSettings = array(
Mage_CatalogInventory_Model_Stock_Item::XML_PATH_MANAGE_STOCK,
Mage_CatalogInventory_Helper_Data::XML_PATH_SHOW_OUT_OF_STOCK
);
/**
* Initialize resource model
*
*/
protected function _construct()
{
$this->_init('cataloginventory/indexer_stock');
}
/**
* Retrieve resource instance wrapper
*
* @return Mage_CatalogInventory_Model_Mysql4_Indexer_Stock
*/
protected function _getResource()
{
return parent::_getResource();
}
/**
* Retrieve Indexer name
*
* @return string
*/
public function getName()
{
return Mage::helper('cataloginventory')->__('Stock Status');
}
/**
* Retrieve Indexer description
*
* @return string
*/
public function getDescription()
{
return Mage::helper('cataloginventory')->__('Index Product Stock Status');
}
/**
* Check if event can be matched by process.
* Overwrote for specific config save, store and store groups save matching
*
* @param Mage_Index_Model_Event $event
* @return bool
*/
public function matchEvent(Mage_Index_Model_Event $event)
{
$data = $event->getNewData();
$resultKey = 'cataloginventory_stock_match_result';
if (isset($data[$resultKey])) {
return $data[$resultKey];
}
$result = null;
$entity = $event->getEntity();
if ($entity == Mage_Core_Model_Store::ENTITY) {
/* @var $store Mage_Core_Model_Store */
$store = $event->getDataObject();
if ($store->isObjectNew()) {
$result = true;
} else {
$result = false;
}
} else if ($entity == Mage_Core_Model_Store_Group::ENTITY) {
/* @var $storeGroup Mage_Core_Model_Store_Group */
$storeGroup = $event->getDataObject();
if ($storeGroup->dataHasChangedFor('website_id')) {
$result = true;
} else {
$result = false;
}
} else if ($entity == Mage_Core_Model_Config_Data::ENTITY) {
$configData = $event->getDataObject();
$path = $configData->getPath();
if (in_array($path, $this->_relatedConfigSettings)) {
$result = $configData->isValueChanged();
} else {
$result = false;
}
} else {
$result = parent::matchEvent($event);
}
$event->addNewData($resultKey, $result);
return $result;
}
/**
* Register data required by process in event object
*
* @param Mage_Index_Model_Event $event
*/
protected function _registerEvent(Mage_Index_Model_Event $event)
{
switch ($event->getEntity()) {
case Mage_CatalogInventory_Model_Stock_Item::ENTITY:
$this->_registerCatalogInventoryStockItemEvent($event);
break;
case Mage_Catalog_Model_Product::ENTITY:
$this->_registerCatalogProductEvent($event);
break;
case Mage_Catalog_Model_Convert_Adapter_Product::ENTITY:
$event->addNewData('cataloginventory_stock_reindex_all', true);
break;
case Mage_Core_Model_Store::ENTITY:
case Mage_Core_Model_Store_Group::ENTITY:
case Mage_Core_Model_Config_Data::ENTITY:
$event->addNewData('cataloginventory_stock_skip_call_event_handler', true);
$process = $event->getProcess();
$process->changeStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX);
if ($event->getEntity() == Mage_Core_Model_Config_Data::ENTITY) {
$configData = $event->getDataObject();
if ($configData->getPath() == Mage_CatalogInventory_Helper_Data::XML_PATH_SHOW_OUT_OF_STOCK) {
Mage::getSingleton('index/indexer')->getProcessByCode('catalog_product_price')
->changeStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX);
Mage::getSingleton('index/indexer')->getProcessByCode('catalog_product_attribute')
->changeStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX);
}
}
break;
}
}
/**
* Register data required by catalog product processes in event object
*
* @param Mage_Index_Model_Event $event
*/
protected function _registerCatalogProductEvent(Mage_Index_Model_Event $event)
{
switch ($event->getType()) {
case Mage_Index_Model_Event::TYPE_SAVE:
$product = $event->getDataObject();
if ($product && $product->getStockData()) {
$product->setForceReindexRequired(true);
}
break;
case Mage_Index_Model_Event::TYPE_MASS_ACTION:
$this->_registerCatalogProductMassActionEvent($event);
break;
case Mage_Index_Model_Event::TYPE_DELETE:
$this->_registerCatalogProductDeleteEvent($event);
break;
}
}
/**
* Register data required by cataloginventory stock item processes in event object
*
* @param Mage_Index_Model_Event $event
*/
protected function _registerCatalogInventoryStockItemEvent(Mage_Index_Model_Event $event)
{
switch ($event->getType()) {
case Mage_Index_Model_Event::TYPE_SAVE:
$this->_registerStockItemSaveEvent($event);
break;
}
}
/**
* Register data required by stock item save process in event object
*
* @param Mage_Index_Model_Event $event
* @return Mage_CatalogInventory_Model_Indexer_Stock
*/
protected function _registerStockItemSaveEvent(Mage_Index_Model_Event $event)
{
/* @var $object Mage_CatalogInventory_Model_Stock_Item */
$object = $event->getDataObject();
// $properties = array(
// 'manage_stock',
// 'use_config_manage_stock',
// 'is_in_stock'
// );
// $reindexStock = false;
// foreach ($properties as $property) {
// if ($event->dataHasChangedFor($property)) {
// $reindexStock = true;
// break;
// }
// }
$event->addNewData('reindex_stock', 1);
$event->addNewData('product_id', $object->getProductId());
// if ($reindexStock && !Mage::helper('cataloginventory')->isShowOutOfStock()) {
// }
return $this;
}
/**
* Register data required by product delete process in event object
*
* @param Mage_Index_Model_Event $event
* @return Mage_CatalogInventory_Model_Indexer_Stock
*/
protected function _registerCatalogProductDeleteEvent(Mage_Index_Model_Event $event)
{
/* @var $product Mage_Catalog_Model_Product */
$product = $event->getDataObject();
$parentIds = $this->_getResource()->getProductParentsByChild($product->getId());
if ($parentIds) {
$event->addNewData('reindex_stock_parent_ids', $parentIds);
}
return $this;
}
/**
* Register data required by product mass action process in event object
*
* @param Mage_Index_Model_Event $event
* @return Mage_CatalogInventory_Model_Indexer_Stock
*/
protected function _registerCatalogProductMassActionEvent(Mage_Index_Model_Event $event)
{
/* @var $actionObject Varien_Object */
$actionObject = $event->getDataObject();
$attributes = array(
'status'
);
$reindexStock = false;
// check if attributes changed
$attrData = $actionObject->getAttributesData();
if (is_array($attrData)) {
foreach ($attributes as $attributeCode) {
if (array_key_exists($attributeCode, $attrData)) {
$reindexStock = true;
break;
}
}
}
// check changed websites
if ($actionObject->getWebsiteIds()) {
$reindexStock = true;
}
// register affected products
if ($reindexStock) {
$event->addNewData('reindex_stock_product_ids', $actionObject->getProductIds());
}
return $this;
}
/**
* Process event
*
* @param Mage_Index_Model_Event $event
*/
protected function _processEvent(Mage_Index_Model_Event $event)
{
$data = $event->getNewData();
if (!empty($data['cataloginventory_stock_reindex_all'])) {
$this->reindexAll();
}
if (empty($data['cataloginventory_stock_skip_call_event_handler'])) {
$this->callEventHandler($event);
}
}
}