121 lines
3.8 KiB
PHP
Executable File
121 lines
3.8 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: 6594 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class PageCore extends ObjectModel
|
|
{
|
|
public $id_page_type;
|
|
public $id_object;
|
|
|
|
public $name;
|
|
|
|
protected $fieldsRequired = array ('id_page_type');
|
|
protected $fieldsValidate = array ('id_page_type' => 'isUnsignedId', 'id_object' => 'isUnsignedId');
|
|
|
|
protected $table = 'page';
|
|
protected $identifier = 'id_page';
|
|
|
|
public function getFields()
|
|
{
|
|
parent::validateFields();
|
|
$fields['id_page_type'] = (int)($this->id_page_type);
|
|
$fields['id_object'] = (int)($this->id_object);
|
|
return $fields;
|
|
}
|
|
|
|
public static function getCurrentId()
|
|
{
|
|
$phpSelf = isset($_SERVER['PHP_SELF']) ? substr($_SERVER['PHP_SELF'], strlen(__PS_BASE_URI__)) : '';
|
|
|
|
// Some pages must be distinguished in order to record exactly what is being seen
|
|
$specialArray = array(
|
|
'product.php' => 'id_product',
|
|
'category.php' => 'id_category',
|
|
'order.php' => 'step',
|
|
'manufacturer.php' => 'id_manufacturer');
|
|
if (array_key_exists($phpSelf, $specialArray))
|
|
{
|
|
$id_object = Tools::getValue($specialArray[$phpSelf]);
|
|
$result = Db::getInstance()->getRow('
|
|
SELECT p.`id_page`
|
|
FROM `'._DB_PREFIX_.'page` p
|
|
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON p.`id_page_type` = pt.`id_page_type`
|
|
WHERE pt.`name` = \''.pSQL($phpSelf).'\'
|
|
AND p.`id_object` = '.(int)($id_object));
|
|
if ($result['id_page'])
|
|
return $result['id_page'];
|
|
else
|
|
{
|
|
Db::getInstance()->Execute('
|
|
INSERT INTO `'._DB_PREFIX_.'page` (`id_page_type`,`id_object`)
|
|
VALUES ((SELECT pt.`id_page_type` FROM `'._DB_PREFIX_.'page_type` pt WHERE pt.`name` = \''.pSQL($phpSelf).'\'),
|
|
'.(int)($id_object).')');
|
|
return Db::getInstance()->Insert_ID();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$result = Db::getInstance()->getRow('
|
|
SELECT p.`id_page`
|
|
FROM `'._DB_PREFIX_.'page` p
|
|
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON p.`id_page_type` = pt.`id_page_type`
|
|
WHERE pt.`name` = \''.pSQL($phpSelf).'\'');
|
|
if ($result['id_page'])
|
|
return $result['id_page'];
|
|
else
|
|
{
|
|
Db::getInstance()->Execute('
|
|
INSERT INTO `'._DB_PREFIX_.'page_type` (`name`)
|
|
VALUES (\''.pSQL($phpSelf).'\')');
|
|
Db::getInstance()->Execute('
|
|
INSERT INTO `'._DB_PREFIX_.'page` (`id_page_type`)
|
|
VALUES ('.(int)(Db::getInstance()->Insert_ID()).')');
|
|
return Db::getInstance()->Insert_ID();
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function setPageViewed($id_page)
|
|
{
|
|
$id_date_range = DateRange::getCurrentRange();
|
|
|
|
// Try to increment the visits counter
|
|
Db::getInstance()->Execute('
|
|
UPDATE `'._DB_PREFIX_.'page_viewed`
|
|
SET `counter` = `counter` + 1
|
|
WHERE `id_date_range` = '.(int)($id_date_range).'
|
|
AND `id_page` = '.(int)($id_page));
|
|
|
|
// If no one has seen the page in this date range, it is added
|
|
if (Db::getInstance()->Affected_Rows() == 0)
|
|
Db::getInstance()->Execute('
|
|
INSERT INTO `'._DB_PREFIX_.'page_viewed` (`id_date_range`,`id_page`,`counter`)
|
|
VALUES ('.(int)($id_date_range).','.(int)($id_page).',1)');
|
|
}
|
|
}
|
|
|
|
|