| 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/a/w/e/awebpaca/boutiques/app/code/core/Mage/Log/Model/Mysql4/Visitor/ |
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)
*/
/**
* Log Prepare Online visitors resource collection
*
* @category Mage
* @package Mage_Log
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Log_Model_Mysql4_Visitor_Online extends Mage_Core_Model_Mysql4_Abstract
{
/**
* Initialize connection and define resource
*
*/
protected function _construct()
{
$this->_init('log/visitor_online', 'visitor_id');
}
/**
* Prepare online visitors for collection
*
* @param Mage_Log_Model_Visitor_Online $object
* @return Mage_Log_Model_Mysql4_Visitor_Online
*/
public function prepare(Mage_Log_Model_Visitor_Online $object)
{
if (($object->getUpdateFrequency() + $object->getPrepareAt()) > time()) {
return $this;
}
$this->_getWriteAdapter()->beginTransaction();
$this->_getWriteAdapter()->truncate($this->getMainTable());
$visitors = array();
$lastUrls = array();
// retrieve online visitors general data
$whereCond = sprintf('last_visit_at >= (? - INTERVAL %d MINUTE)',
$object->getOnlineInterval());
$select = $this->_getReadAdapter()->select()
->from(
$this->getTable('log/visitor'),
array('visitor_id', 'first_visit_at', 'last_visit_at', 'last_url_id'))
->where($whereCond, now());
$query = $this->_getReadAdapter()->query($select);
while ($row = $query->fetch()) {
$visitors[$row['visitor_id']] = $row;
$lastUrls[$row['last_url_id']] = $row['visitor_id'];
$visitors[$row['visitor_id']]['visitor_type'] = Mage_Log_Model_Visitor::VISITOR_TYPE_VISITOR;
$visitors[$row['visitor_id']]['customer_id'] = null;
}
if (!$visitors) {
$this->commit();
return $this;
}
// retrieve visitor remote addr
$select = $this->_getReadAdapter()->select()
->from(
$this->getTable('log/visitor_info'),
array('visitor_id', 'remote_addr'))
->where('visitor_id IN(?)', array_keys($visitors));
$query = $this->_getReadAdapter()->query($select);
while ($row = $query->fetch()) {
$visitors[$row['visitor_id']]['remote_addr'] = $row['remote_addr'];
}
// retrieve visitor last URLs
$select = $this->_getReadAdapter()->select()
->from(
$this->getTable('log/url_info_table'),
array('url_id', 'url'))
->where('url_id IN(?)', array_keys($lastUrls));
$query = $this->_getReadAdapter()->query($select);
while ($row = $query->fetch()) {
$visitorId = $lastUrls[$row['url_id']];
$visitors[$visitorId]['last_url'] = $row['url'];
}
// retrieve customers
$select = $this->_getReadAdapter()->select()
->from(
$this->getTable('log/customer'),
array('visitor_id', 'customer_id'))
->where('visitor_id IN(?)', array_keys($visitors));
$query = $this->_getReadAdapter()->query($select);
while ($row = $query->fetch()) {
$visitors[$row['visitor_id']]['visitor_type'] = Mage_Log_Model_Visitor::VISITOR_TYPE_CUSTOMER;
$visitors[$row['visitor_id']]['customer_id'] = $row['customer_id'];
}
foreach ($visitors as $visitorData) {
unset($visitorData['last_url_id']);
$this->_getWriteAdapter()->insert($this->getMainTable(), $visitorData);
}
$this->_getWriteAdapter()->commit();
$object->setPrepareAt();
return $this;
}
}