| 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/Log/Model/Mysql4/ |
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_Log
* @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)
*/
class Mage_Log_Model_Mysql4_Aggregation extends Mage_Core_Model_Mysql4_Abstract
{
public function _construct()
{
$this->_init('log/summary_table', 'log_summary_id');
}
public function getLastRecordDate()
{
$select = $this->_getReadAdapter()->select()
->from($this->getTable('summary_table'), array('date'=>'MAX(add_date)'));
return $this->_getReadAdapter()->fetchOne($select);
}
public function getCounts($from, $to, $store)
{
$result = array('customers'=>0, 'visitors'=>0);
$select = $this->_getReadAdapter()->select()
->from($this->getTable('customer'), 'visitor_id')
->where('login_at >= ?', $from)
->where('login_at <= ?', $to);
if ($store) {
$select->where('store_id = ?', $store);
}
$customers = $this->_getReadAdapter()->fetchCol($select);
$result['customers'] = count($customers);
$select = $this->_getReadAdapter()->select();
$select->from($this->getTable('visitor'), 'COUNT(*)')
->where('first_visit_at >= ?', $from)
->where('first_visit_at <= ?', $to);
if ($store) {
$select->where('store_id = ?', $store);
}
if ($result['customers']) {
$select->where('visitor_id NOT IN(?)', $customers);
}
$result['visitors'] = $this->_getReadAdapter()->fetchOne($select);
return $result;
}
public function saveLog($data, $id = null)
{
if (is_null($id)) {
$this->_getWriteAdapter()->insert($this->getTable('summary_table'), $data);
} else {
$condition = $this->_getWriteAdapter()->quoteInto('summary_id = ?', $id);
$this->_getWriteAdapter()->update($this->getTable('summary_table'), $data, $condition);
}
}
public function removeEmpty($date)
{
$condition = $this->_getWriteAdapter()->quoteInto('add_date < ? AND customer_count = 0 AND visitor_count = 0', $date);
$this->_getWriteAdapter()->delete($this->getTable('summary_table'), $condition);
}
public function getLogId($from, $to)
{
$select = $this->_getReadAdapter()->select()
->from($this->getTable('summary_table'), 'summary_id')
->where('add_date >= ?', $from)
->where('add_date <= ?', $to);
return $this->_getReadAdapter()->fetchOne($select);
}
}