| 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/Catalog/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_Catalog
* @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)
*/
/**
* Catalog url rewrites index model.
* Responsibility for system actions:
* - Product save (changed assigned categories list, assigned websites or url key)
* - Category save (changed assigned products list, category move, changed url key)
* - Store save (new store creation, changed store group) - require reindex all data
* - Store group save (changed root category or group website) - require reindex all data
* - Seo config saettings change - require reindex all data
*/
class Mage_Catalog_Model_Indexer_Url extends Mage_Index_Model_Indexer_Abstract
{
/**
* Index math: product save, category save, store save
* store group save, config save
*
* @var array
*/
protected $_matchedEntities = array(
Mage_Catalog_Model_Product::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
Mage_Catalog_Model_Category::ENTITY => array(
Mage_Index_Model_Event::TYPE_SAVE
),
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
)
);
protected $_relatedConfigSettings = array(
Mage_Catalog_Helper_Category::XML_PATH_CATEGORY_URL_SUFFIX,
Mage_Catalog_Helper_Product::XML_PATH_PRODUCT_URL_SUFFIX,
Mage_Catalog_Helper_Product::XML_PATH_PRODUCT_URL_USE_CATEGORY,
);
/**
* Get Indexer name
*
* @return string
*/
public function getName()
{
return Mage::helper('catalog')->__('Catalog URL Rewrites');
}
/**
* Get Indexer description
*
* @return string
*/
public function getDescription()
{
return Mage::helper('catalog')->__('Index product and categories URL rewrites');
}
/**
* 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 = 'catalog_url_match_result';
if (isset($data[$resultKey])) {
return $data[$resultKey];
}
$result = null;
$entity = $event->getEntity();
if ($entity == Mage_Core_Model_Store::ENTITY) {
$store = $event->getDataObject();
if ($store->isObjectNew() || $store->dataHasChangedFor('group_id')) {
$result = true;
} else {
$result = false;
}
} else if ($entity == Mage_Core_Model_Store_Group::ENTITY) {
$storeGroup = $event->getDataObject();
$hasDataChanges = $storeGroup->dataHasChangedFor('root_category_id')
|| $storeGroup->dataHasChangedFor('website_id');
if (!$storeGroup->isObjectNew() && $hasDataChanges) {
$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)
{
$entity = $event->getEntity();
switch ($entity) {
case Mage_Catalog_Model_Product::ENTITY:
$this->_registerProductEvent($event);
break;
case Mage_Catalog_Model_Category::ENTITY:
$this->_registerCategoryEvent($event);
break;
case Mage_Catalog_Model_Convert_Adapter_Product::ENTITY:
$event->addNewData('catalog_url_reindex_all', true);
break;
case Mage_Core_Model_Store::ENTITY:
case Mage_Core_Model_Store_Group::ENTITY:
case Mage_Core_Model_Config_Data::ENTITY:
$process = $event->getProcess();
$process->changeStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX);
break;
}
return $this;
}
/**
* Register event data during product save process
*
* @param Mage_Index_Model_Event $event
*/
protected function _registerProductEvent(Mage_Index_Model_Event $event)
{
$product = $event->getDataObject();
$dataChange = $product->dataHasChangedFor('url_key')
|| $product->getIsChangedCategories()
|| $product->getIsChangedWebsites();
if (!$product->getExcludeUrlRewrite() && $dataChange) {
$event->addNewData('rewrite_product_ids', array($product->getId()));
}
}
/**
* Register event data during category save process
*
* @param Mage_Index_Model_Event $event
*/
protected function _registerCategoryEvent(Mage_Index_Model_Event $event)
{
$category = $event->getDataObject();
if (!$category->getInitialSetupFlag() && $category->getLevel() > 1) {
if ($category->dataHasChangedFor('url_key') || $category->getIsChangedProductList()) {
$event->addNewData('rewrite_category_ids', array($category->getId()));
}
/**
* Check if category has another affected category ids (category move result)
*/
if ($category->getAffectedCategoryIds()) {
$event->addNewData('rewrite_category_ids', $category->getAffectedCategoryIds());
}
}
}
/**
* Process event
*
* @param Mage_Index_Model_Event $event
*/
protected function _processEvent(Mage_Index_Model_Event $event)
{
$data = $event->getNewData();
if (!empty($data['catalog_url_reindex_all'])) {
$this->reindexAll();
}
$urlModel = Mage::getSingleton('catalog/url');
// Force rewrites history saving
$dataObject = $event->getDataObject();
if ($dataObject instanceof Varien_Object && $dataObject->hasData('save_rewrites_history')) {
$urlModel->setShouldSaveRewritesHistory($dataObject->getData('save_rewrites_history'));
}
if(isset($data['rewrite_product_ids'])) {
foreach ($data['rewrite_product_ids'] as $productId) {
$urlModel->refreshProductRewrite($productId);
}
}
if (isset($data['rewrite_category_ids'])) {
foreach ($data['rewrite_category_ids'] as $categoryId) {
$urlModel->refreshCategoryRewrite($categoryId);
}
}
}
/**
* Rebuild all index data
*/
public function reindexAll()
{
Mage::getSingleton('catalog/url')->refreshRewrites();
}
}