| 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/Core/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_Core
* @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)
*/
/**
* Mysql4 session save handler
*
* @category Mage
* @package Mage_Core
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Core_Model_Mysql4_Session implements Zend_Session_SaveHandler_Interface
{
/**
* Session lifetime
*
* @var integer
*/
protected $_lifeTime;
/**
* Session data table name
*
* @var string
*/
protected $_sessionTable;
/**
* Database read connection
*
* @var Zend_Db_Adapter_Abstract
*/
protected $_read;
/**
* Database write connection
*
* @var Zend_Db_Adapter_Abstract
*/
protected $_write;
/**
* Automatic cleaning factor of expired sessions
*
* value zero means no automatic cleaning, one means automatic cleaning each time a session is closed, and x>1 means
* cleaning once in x calls
*/
protected $_automaticCleaningFactor = 50;
public function __construct()
{
$this->_sessionTable = Mage::getSingleton('core/resource')->getTableName('core/session');
$this->_read = Mage::getSingleton('core/resource')->getConnection('core_read');
$this->_write = Mage::getSingleton('core/resource')->getConnection('core_write');
}
public function __destruct()
{
session_write_close();
}
public function getLifeTime()
{
if (is_null($this->_lifeTime)) {
$configNode = Mage::app()->getStore()->isAdmin() ? 'admin/security/session_cookie_lifetime' : 'web/cookie/cookie_lifetime';
$this->_lifeTime = (int) Mage::getStoreConfig($configNode);
if ($this->_lifeTime < 60) {
$this->_lifeTime = ini_get('session.gc_maxlifetime');
}
if ($this->_lifeTime < 60) {
$this->_lifeTime = 3600;
}
}
return $this->_lifeTime;
}
/**
* Check DB connection
*
* @return bool
*/
public function hasConnection()
{
if (!$this->_read) {
return false;
}
$tables = $this->_read->fetchAssoc('show tables');
if (!isset($tables[$this->_sessionTable])) {
return false;
}
return true;
}
public function setSaveHandler()
{
if ($this->hasConnection()) {
session_set_save_handler(
array($this, 'open'),
array($this, 'close'),
array($this, 'read'),
array($this, 'write'),
array($this, 'destroy'),
array($this, 'gc')
);
} else {
session_save_path(Mage::getBaseDir('session'));
}
return $this;
}
/**
* Open session
*
* @param string $savePath ignored
* @param string $sessName ignored
* @return boolean
*/
public function open($savePath, $sessName)
{
return true;
}
/**
* Close session
*
* @return boolean
*/
public function close()
{
$this->gc($this->getLifeTime());
return true;
}
/**
* Fetch session data
*
* @param string $sessId
* @return string
*/
public function read($sessId)
{
$data = $this->_read->fetchOne(
"SELECT session_data FROM $this->_sessionTable
WHERE session_id = ? AND session_expires > ?",
array($sessId, time())
);
return $data;
}
/**
* Update session
*
* @param string $sessId
* @param string $sessData
* @return boolean
*/
public function write($sessId, $sessData)
{
$bind = array(
'session_expires'=>time() + $this->getLifeTime(),
'session_data'=>$sessData
);
$exists = $this->_write->fetchOne(
"SELECT session_id FROM `{$this->_sessionTable}`
WHERE session_id = ?", array($sessId)
);
if ($exists) {
$where = $this->_write->quoteInto('session_id=?', $sessId);
$this->_write->update($this->_sessionTable, $bind, $where);
} else {
$bind['session_id'] = $sessId;
$this->_write->insert($this->_sessionTable, $bind);
}
return true;
}
/**
* Destroy session
*
* @param string $sessId
* @return boolean
*/
public function destroy($sessId)
{
$this->_write->query("DELETE FROM `{$this->_sessionTable}` WHERE `session_id` = ?", array($sessId));
return true;
}
/**
* Garbage collection
*
* @param int $sessMaxLifeTime ignored
* @return boolean
*/
public function gc($sessMaxLifeTime)
{
if ($this->_automaticCleaningFactor > 0) {
if ($this->_automaticCleaningFactor == 1 ||
rand(1, $this->_automaticCleaningFactor)==1) {
$this->_write->query("DELETE FROM `{$this->_sessionTable}` WHERE `session_expires` < ?", array(time()));
}
}
return true;
}
}