433 lines
15 KiB
PHP
Executable File
433 lines
15 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* 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@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 10155 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class LinkCore
|
|
{
|
|
/** @var boolean Rewriting activation */
|
|
protected $allow;
|
|
protected $url;
|
|
public static $cache = array('page' => array());
|
|
|
|
/**
|
|
* Constructor (initialization only)
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->allow = (int)Configuration::get('PS_REWRITING_SETTINGS');
|
|
$this->url = $_SERVER['SCRIPT_NAME'];
|
|
}
|
|
|
|
/**
|
|
* This function returns a link to delete a customization picture file
|
|
*
|
|
* @param mixed $product
|
|
* @param mixed $id_picture
|
|
* @return void
|
|
*/
|
|
public function getProductDeletePictureLink($product, $id_picture){
|
|
if (is_object($product))
|
|
return ($this->allow == 1)?(_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink().((isset($product->category) AND !empty($product->category) AND $product->category != 'home') ? $product->category.'/' : '').(int)$product->id.'-'.$product->link_rewrite.($product->ean13 ? '-'.$product->ean13 : '').'.html?deletePicture='.$id_picture) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'product.php?id_product='.(int)$product->id).'&deletePicture='.$id_picture;
|
|
else
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'product.php?id_product='.(int)$product.'&deletePicture='.$id_picture;
|
|
}
|
|
|
|
/**
|
|
* Return the correct link for product/category/supplier/manufacturer
|
|
*
|
|
* @param mixed $id_product Can be either the object or the ID only
|
|
* @param string $alias Friendly URL (only if $id_OBJ is the object)
|
|
* @return string link
|
|
*/
|
|
public function getProductLink($id_product, $alias = NULL, $category = NULL, $ean13 = NULL, $id_lang = NULL)
|
|
{
|
|
global $cookie;
|
|
if (is_object($id_product))
|
|
{
|
|
$link = '';
|
|
if ($this->allow == 1)
|
|
{
|
|
$link .= (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)$id_lang));
|
|
|
|
if (isset($id_product->category) AND !empty($id_product->category) AND $id_product->category != 'home')
|
|
$link .= $id_product->category.'/';
|
|
else
|
|
$link .= '';
|
|
|
|
$link .= (int)$id_product->id.'-';
|
|
if (is_array($id_product->link_rewrite))
|
|
$link.= $id_product->link_rewrite[(int)$cookie->id_lang];
|
|
else
|
|
$link.= $id_product->link_rewrite;
|
|
if ($id_product->ean13)
|
|
$link .='-'.$id_product->ean13;
|
|
else
|
|
$link .= '';
|
|
|
|
$link .= '.html';
|
|
}
|
|
else
|
|
{
|
|
$link .= (_PS_BASE_URL_.__PS_BASE_URI__.'product.php?id_product='.(int)$id_product->id);
|
|
}
|
|
return $link;
|
|
}
|
|
|
|
elseif ($alias)
|
|
{
|
|
$link = '';
|
|
if ($this->allow == 1)
|
|
{
|
|
$link .= (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)$id_lang));
|
|
|
|
if ($category AND $category != 'home')
|
|
$link .= $category.'/';
|
|
else
|
|
$link .= '';
|
|
|
|
$link .= (int)$id_product.'-'.$alias;
|
|
|
|
if ($ean13)
|
|
$link .='-'.$ean13;
|
|
else
|
|
$link .= '';
|
|
|
|
$link .= '.html';
|
|
}
|
|
else
|
|
$link .=(_PS_BASE_URL_.__PS_BASE_URI__.'product.php?id_product='.(int)$id_product);
|
|
return $link;
|
|
}
|
|
|
|
else
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'product.php?id_product='.(int)$id_product;
|
|
}
|
|
|
|
public function getCategoryLink($id_category, $alias = NULL, $id_lang = NULL)
|
|
{
|
|
if (is_object($id_category))
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_category->id).'-'.$id_category->link_rewrite) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category->id));
|
|
if ($alias)
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_category).'-'.$alias) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category));
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category);
|
|
}
|
|
|
|
public function getCMSCategoryLink($id_category, $alias = NULL, $id_lang = NULL)
|
|
{
|
|
if (is_object($id_category))
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).'content/category/'.(int)($id_category->id).'-'.$id_category->link_rewrite) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'cms.php?id_cms_category='.(int)($id_category->id));
|
|
if ($alias)
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).'content/category/'.(int)($id_category).'-'.$alias) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'cms.php?id_cms_category='.(int)($id_category));
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'cms.php?id_cms_category='.(int)($id_category);
|
|
}
|
|
|
|
public function getCMSLink($cms, $alias = null, $ssl = false, $id_lang = NULL)
|
|
{
|
|
$base = (($ssl AND Configuration::get('PS_SSL_ENABLED')) ? Tools::getShopDomainSsl(true) : Tools::getShopDomain(true));
|
|
|
|
if (is_object($cms))
|
|
{
|
|
return ($this->allow == 1) ?
|
|
($base.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).'content/'.(int)($cms->id).'-'.$cms->link_rewrite) :
|
|
($base.__PS_BASE_URI__.'cms.php?id_cms='.(int)($cms->id));
|
|
}
|
|
|
|
if ($alias)
|
|
return ($this->allow == 1) ? ($base.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).'content/'.(int)($cms).'-'.$alias) :
|
|
($base.__PS_BASE_URI__.'cms.php?id_cms='.(int)($cms));
|
|
return $base.__PS_BASE_URI__.'cms.php?id_cms='.(int)($cms);
|
|
}
|
|
|
|
public function getSupplierLink($id_supplier, $alias = NULL, $id_lang = NULL)
|
|
{
|
|
if (is_object($id_supplier))
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_supplier->id).'__'.$id_supplier->link_rewrite) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'supplier.php?id_supplier='.(int)($id_supplier->id));
|
|
if ($alias)
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_supplier).'__'.$alias) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'supplier.php?id_supplier='.(int)($id_supplier));
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'supplier.php?id_supplier='.(int)($id_supplier);
|
|
}
|
|
|
|
public function getManufacturerLink($id_manufacturer, $alias = NULL, $id_lang = NULL)
|
|
{
|
|
if (is_object($id_manufacturer))
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_manufacturer->id).'_'.$id_manufacturer->link_rewrite) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'manufacturer.php?id_manufacturer='.(int)($id_manufacturer->id));
|
|
if ($alias)
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_manufacturer).'_'.$alias) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.'manufacturer.php?id_manufacturer='.(int)($id_manufacturer));
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.'manufacturer.php?id_manufacturer='.(int)($id_manufacturer);
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public function getCustomLink($id_custom, $page, $prefix = '~', $alias = NULL, $id_lang = NULL)
|
|
{
|
|
Tools::displayAsDeprecated();
|
|
if (is_object($id_custom))
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_custom->id).$prefix.$id_custom->link_rewrite) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.$page.'?id_custom='.(int)($id_custom->id));
|
|
if ($alias)
|
|
return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink((int)($id_lang)).(int)($id_custom).$prefix.$alias) :
|
|
(_PS_BASE_URL_.__PS_BASE_URI__.$page.'?id_custom='.(int)($id_custom));
|
|
return _PS_BASE_URL_.__PS_BASE_URI__.$page.'?id_custom='.(int)($id_custom);
|
|
}
|
|
|
|
/**
|
|
* Returns a link to a product image for display
|
|
* Note: the new image filesystem stores product images in subdirectories of img/p/
|
|
*
|
|
* @param string $name rewrite link of the image
|
|
* @param string $ids id part of the image filename - can be "id_product-id_image" (legacy support, recommended) or "id_image" (new)
|
|
* @param string $type
|
|
*/
|
|
public function getImageLink($name, $ids, $type = NULL)
|
|
{
|
|
global $protocol_content;
|
|
|
|
// legacy mode or default image
|
|
if ((Configuration::get('PS_LEGACY_IMAGES')
|
|
&& (file_exists(_PS_PROD_IMG_DIR_.$ids.($type ? '-'.$type : '').'.jpg')))
|
|
|| strpos($ids, 'default') !== false)
|
|
{
|
|
if ($this->allow == 1)
|
|
$uri_path = __PS_BASE_URI__.$ids.($type ? '-'.$type : '').'/'.$name.'.jpg';
|
|
else
|
|
$uri_path = _THEME_PROD_DIR_.$ids.($type ? '-'.$type : '').'.jpg';
|
|
}else
|
|
{
|
|
// if ids if of the form id_product-id_image, we want to extract the id_image part
|
|
$split_ids = explode('-', $ids);
|
|
$id_image = (isset($split_ids[1]) ? $split_ids[1] : $split_ids[0]);
|
|
|
|
if ($this->allow == 1)
|
|
$uri_path = __PS_BASE_URI__.$id_image.($type ? '-'.$type : '').'/'.$name.'.jpg';
|
|
else
|
|
$uri_path = _THEME_PROD_DIR_.Image::getImgFolderStatic($id_image).$id_image.($type ? '-'.$type : '').'.jpg';
|
|
}
|
|
|
|
return $protocol_content.Tools::getMediaServer($uri_path).$uri_path;
|
|
}
|
|
|
|
public function getMediaLink($filepath)
|
|
{
|
|
return Tools::getProtocol().Tools::getMediaServer($filepath).$filepath;
|
|
}
|
|
|
|
public function preloadPageLinks()
|
|
{
|
|
global $cookie;
|
|
if ($this->allow != 1)
|
|
return;
|
|
|
|
$result = Db::getInstance()->ExecuteS('
|
|
SELECT page, url_rewrite
|
|
FROM `'._DB_PREFIX_.'meta` m
|
|
LEFT JOIN `'._DB_PREFIX_.'meta_lang` ml ON (m.id_meta = ml.id_meta)
|
|
WHERE id_lang = '.(int)$cookie->id_lang);
|
|
foreach ($result as $row)
|
|
self::$cache['page'][$row['page'].'.php_'.$cookie->id_lang] = $this->getLangLink((int)$cookie->id_lang).$row['url_rewrite'];
|
|
}
|
|
|
|
public function getPageLink($filename, $ssl = false, $id_lang = NULL)
|
|
{
|
|
global $cookie;
|
|
if ($id_lang == NULL)
|
|
$id_lang = (int)($cookie->id_lang);
|
|
|
|
if (array_key_exists($filename.'_'.$id_lang, self::$cache['page']) AND !empty(self::$cache['page'][$filename.'_'.$id_lang]))
|
|
$uri_path = self::$cache['page'][$filename.'_'.$id_lang];
|
|
else
|
|
{
|
|
if ($this->allow == 1)
|
|
{
|
|
$url_rewrite = '';
|
|
if ($filename != 'index.php')
|
|
{
|
|
$pagename = substr($filename, 0, -4);
|
|
$url_rewrite = Db::getInstance()->getValue('
|
|
SELECT url_rewrite
|
|
FROM `'._DB_PREFIX_.'meta` m
|
|
LEFT JOIN `'._DB_PREFIX_.'meta_lang` ml ON (m.id_meta = ml.id_meta)
|
|
WHERE id_lang = '.(int)($id_lang).' AND `page` = \''.pSQL($pagename).'\'');
|
|
$uri_path = $this->getLangLink((int)$id_lang).($url_rewrite ? $url_rewrite : $filename);
|
|
}
|
|
else
|
|
$uri_path = $this->getLangLink((int)$id_lang);
|
|
}
|
|
else
|
|
{
|
|
$uri_path = '';
|
|
if ($filename != 'index.php')
|
|
$uri_path = $filename;
|
|
}
|
|
self::$cache['page'][$filename.'_'.$id_lang] = $uri_path;
|
|
}
|
|
return (($ssl AND Configuration::get('PS_SSL_ENABLED')) ? Tools::getShopDomainSsl(true) : Tools::getShopDomain(true)).__PS_BASE_URI__.ltrim($uri_path, '/');
|
|
}
|
|
|
|
public function getCatImageLink($name, $id_category, $type = null)
|
|
{
|
|
return ($this->allow == 1) ? (__PS_BASE_URI__.'c/'.$id_category.($type ? '-'.$type : '').'/'.$name.'.jpg') : (_THEME_CAT_DIR_.$id_category.($type ? '-'.$type : '').'.jpg');
|
|
}
|
|
|
|
/**
|
|
* Create link after language change, for the change language block
|
|
*
|
|
* @param integer $id_lang Language ID
|
|
* @return string link
|
|
*/
|
|
public function getLanguageLink($id_lang)
|
|
{
|
|
global $cookie;
|
|
$matches = array();
|
|
$request = $_SERVER['REQUEST_URI'];
|
|
preg_match('#^/([a-z]{2})/([^\?]*).*$#', $request, $matches);
|
|
if ($matches)
|
|
{
|
|
$current_iso = $matches[1];
|
|
$rewrite = $matches[2];
|
|
$url_rewrite = Meta::getEquivalentUrlRewrite($id_lang, Language::getIdByIso($current_iso), $rewrite);
|
|
$request = str_replace($rewrite, $url_rewrite, $request);
|
|
}
|
|
|
|
$queryTab = array();
|
|
parse_str($_SERVER['QUERY_STRING'], $queryTab);
|
|
unset($queryTab['isolang']);
|
|
$query = http_build_query($queryTab);
|
|
|
|
if (!empty($query) OR !$this->allow)
|
|
$query = '?'.$query;
|
|
|
|
$switchLangLink = $this->getPageLink(substr($_SERVER['PHP_SELF'], strlen(__PS_BASE_URI__)), false, $id_lang).$query;
|
|
if (!$this->allow)
|
|
if ($id_lang != $cookie->id_lang)
|
|
{
|
|
if (strpos($switchLangLink,'id_lang'))
|
|
$switchLangLink = preg_replace('`id_lang=[0-9]*`','id_lang='.$id_lang,$switchLangLink);
|
|
else
|
|
$switchLangLink = $switchLangLink.'&id_lang='.$id_lang;
|
|
}
|
|
return $switchLangLink;
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public function getLanguageLinkAdmin($id_lang)
|
|
{
|
|
Tools::displayAsDeprecated();
|
|
return $this->getUrlWith('id_lang', (int)($id_lang));
|
|
}
|
|
|
|
/**
|
|
* This function return the current url with a new parameter key=value
|
|
* @param mixed $key
|
|
* @param mixed $val
|
|
* @return url with &key=val (or ?key=val)
|
|
* @deprectated
|
|
*/
|
|
public function getUrlWith($key, $val)
|
|
{
|
|
// This function does not use rewrite
|
|
Tools::displayAsDeprecated();
|
|
$n = 0;
|
|
$url = str_replace('index.php', '', htmlentities($this->url, ENT_QUOTES, 'UTF-8'));
|
|
|
|
foreach ($_GET as $k => $value)
|
|
// adminlang is an hand-written param in BO
|
|
if ($k != 'adminlang')
|
|
if (!is_array($value) AND $k != $key AND Tools::isSubmit($k))
|
|
$url .= ((!$n++) ? '?' : '&').urlencode($k).($value ? '='.urlencode($value) : '');
|
|
|
|
return $url.($n ? '&' : '?').urlencode($key).'='.urlencode($val);
|
|
}
|
|
|
|
public function goPage($url, $p)
|
|
{
|
|
return $url.($p == 1 ? '' : (!strstr($url, '?') ? '?' : '&').'p='.(int)($p));
|
|
}
|
|
|
|
public function getPaginationLink($type, $id_object, $nb = false, $sort = false, $pagination = false, $array = false)
|
|
{
|
|
if ($type AND $id_object)
|
|
$url = $this->{'get'.$type.'Link'}($id_object, NULL);
|
|
else
|
|
{
|
|
$url = $this->url;
|
|
if (Configuration::get('PS_REWRITING_SETTINGS'))
|
|
$url = $this->getPageLink(basename($url));
|
|
}
|
|
$vars = (!$array ? '' : array());
|
|
$varsNb = array('n', 'search_query');
|
|
$varsSort = array('orderby', 'orderway');
|
|
$varsPagination = array('p');
|
|
|
|
$n = 0;
|
|
foreach ($_GET AS $k => $value)
|
|
if ($k != 'id_'.$type)
|
|
{
|
|
if (Configuration::get('PS_REWRITING_SETTINGS') AND ($k == 'isolang' OR $k == 'id_lang'))
|
|
continue;
|
|
$ifNb = (!$nb OR ($nb AND !in_array($k, $varsNb)));
|
|
$ifSort = (!$sort OR ($sort AND !in_array($k, $varsSort)));
|
|
$ifPagination = (!$pagination OR ($pagination AND !in_array($k, $varsPagination)));
|
|
if ($ifNb AND $ifSort AND $ifPagination AND !is_array($value))
|
|
!$array ? ($vars .= ((!$n++ AND ($this->allow == 1 OR $url == $this->url)) ? '?' : '&').urlencode($k).'='.urlencode($value)) : ($vars[urlencode($k)] = urlencode($value));
|
|
}
|
|
if (!$array)
|
|
return $url.$vars;
|
|
$vars['requestUrl'] = $url;
|
|
if ($type AND $id_object)
|
|
$vars['id_'.$type] = (is_object($id_object) ? (int)$id_object->id : (int)$id_object);
|
|
return $vars;
|
|
}
|
|
|
|
public function addSortDetails($url, $orderby, $orderway)
|
|
{
|
|
return $url.(!strstr($url, '?') ? '?' : '&').'orderby='.urlencode($orderby).'&orderway='.urlencode($orderway);
|
|
}
|
|
|
|
protected function getLangLink($id_lang = NULL)
|
|
{
|
|
if (!$this->allow OR Language::countActiveLanguages() <= 1)
|
|
return '';
|
|
|
|
global $cookie;
|
|
if (!$id_lang)
|
|
$id_lang = (int)$cookie->id_lang;
|
|
|
|
return Language::getIsoById((int)$id_lang).'/';
|
|
}
|
|
}
|