| 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/Api/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_Api
* @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)
*/
/**
* ACL user resource
*
* @category Mage
* @package Mage_Api
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Api_Model_Mysql4_User extends Mage_Core_Model_Mysql4_Abstract
{
protected function _construct()
{
$this->_init('api/user', 'user_id');
}
/**
* Initialize unique fields
*
* @return Mage_Core_Model_Mysql4_Abstract
*/
protected function _initUniqueFields()
{
$this->_uniqueFields = array(
array(
'field' => 'email',
'title' => Mage::helper('api')->__('Email')
),
array(
'field' => 'username',
'title' => Mage::helper('api')->__('User Name')
),
);
return $this;
}
/**
* Authenticate user by $username and $password
*
* @param string $username
* @param string $password
* @return boolean|Object
*/
public function recordLogin(Mage_Api_Model_User $user)
{
$data = array(
'lognum' => $user->getLognum()+1,
);
$condition = $this->_getWriteAdapter()->quoteInto('user_id=?', $user->getUserId());
$this->_getWriteAdapter()->update($this->getTable('api/user'), $data, $condition);
return $this;
}
public function recordSession(Mage_Api_Model_User $user)
{
$select = $this->_getReadAdapter()->select()
->from($this->getTable('api/session'), 'user_id')
->where('user_id = ?', $user->getId())
->where('sessid = ?', $user->getSessid());
$logdate = now();
if ($this->_getReadAdapter()->fetchRow($select)) {
$this->_getWriteAdapter()->update(
$this->getTable('api/session'),
array ('logdate' => $logdate),
$this->_getReadAdapter()->quoteInto('user_id = ?', $user->getId()) . ' AND '
. $this->_getReadAdapter()->quoteInto('sessid = ?', $user->getSessid())
);
} else {
$this->_getWriteAdapter()->insert(
$this->getTable('api/session'),
array(
'user_id' => $user->getId(),
'logdate' => $logdate,
'sessid' => $user->getSessid()
)
);
}
$user->setLogdate($logdate);
return $this;
}
public function cleanOldSessions(Mage_Api_Model_User $user)
{
$timeout = Mage::getStoreConfig('api/config/session_timeout');
$this->_getWriteAdapter()->delete(
$this->getTable('api/session'),
$this->_getReadAdapter()->quoteInto('user_id = ?', $user->getId()) . ' AND '
. new Zend_Db_Expr('(UNIX_TIMESTAMP(\'' . now() . '\') - UNIX_TIMESTAMP(logdate)) > ' . $timeout)
);
return $this;
}
public function loadByUsername($username)
{
$select = $this->_getReadAdapter()->select()->from($this->getTable('api/user'))
->where('username=:username');
return $this->_getReadAdapter()->fetchRow($select, array('username'=>$username));
}
public function loadBySessId ($sessId)
{
$select = $this->_getReadAdapter()->select()
->from($this->getTable('api/session'))
->where('sessid = ?', $sessId);
if ($apiSession = $this->_getReadAdapter()->fetchRow($select)) {
$selectUser = $this->_getReadAdapter()->select()
->from($this->getTable('api/user'))
->where('user_id = ?', $apiSession['user_id']);
if ($user = $this->_getReadAdapter()->fetchRow($selectUser)) {
return array_merge($user, $apiSession);
}
}
return array();
}
public function clearBySessId($sessid)
{
$this->_getWriteAdapter()->delete(
$this->getTable('api/session'),
$this->_getReadAdapter()->quoteInto('sessid = ?', $sessid)
);
return $this;
}
public function hasAssigned2Role($user)
{
if (is_numeric($user)) {
$userId = $user;
} else if ($user instanceof Mage_Core_Model_Abstract) {
$userId = $user->getUserId();
} else {
return null;
}
if ( $userId > 0 ) {
$dbh = $this->_getReadAdapter();
$select = $dbh->select();
$select->from($this->getTable('api/role'))
->where("parent_id > 0 AND user_id = {$userId}");
return $dbh->fetchAll($select);
} else {
return null;
}
}
protected function _beforeSave(Mage_Core_Model_Abstract $user)
{
if (!$user->getId()) {
$user->setCreated(now());
}
$user->setModified(now());
return $this;
}
public function load(Mage_Core_Model_Abstract $user, $value, $field=null)
{
return parent::load($user, $value, $field);
}
public function delete(Mage_Core_Model_Abstract $user)
{
$dbh = $this->_getWriteAdapter();
$uid = (int) $user->getId();
$dbh->beginTransaction();
try {
$dbh->delete($this->getTable('api/user'), "user_id=$uid");
$dbh->delete($this->getTable('api/role'), "user_id=$uid");
} catch (Mage_Core_Exception $e) {
throw $e;
return false;
} catch (Exception $e){
$dbh->rollBack();
return false;
}
$dbh->commit();
return true;
}
public function _saveRelations(Mage_Core_Model_Abstract $user)
{
$rolesIds = $user->getRoleIds();
if( !is_array($rolesIds) || count($rolesIds) == 0 ) {
return $user;
}
$this->_getWriteAdapter()->beginTransaction();
try {
$this->_getWriteAdapter()->delete($this->getTable('api/role'), "user_id = {$user->getId()}");
foreach ($rolesIds as $rid) {
$rid = intval($rid);
if ($rid > 0) {
//$row = $this->load($user, $rid);
} else {
$row = array('tree_level' => 0);
}
$row = array('tree_level' => 0);
$data = array(
'parent_id' => $rid,
'tree_level' => $row['tree_level'] + 1,
'sort_order' => 0,
'role_type' => 'U',
'user_id' => $user->getId(),
'role_name' => $user->getFirstname()
);
$this->_getWriteAdapter()->insert($this->getTable('api/role'), $data);
}
$this->_getWriteAdapter()->commit();
} catch (Mage_Core_Exception $e) {
throw $e;
} catch (Exception $e){
$this->_getWriteAdapter()->rollBack();
}
}
public function _getRoles(Mage_Core_Model_Abstract $user)
{
if ( !$user->getId() ) {
return array();
}
$table = $this->getTable('api/role');
$read = $this->_getReadAdapter();
$select = $read->select()->from($table, array())
->joinLeft(array('ar' => $table), "(ar.role_id = `{$table}`.parent_id and ar.role_type = 'G')", array('role_id'))
->where("`{$table}`.user_id = {$user->getId()}");
return (($roles = $read->fetchCol($select)) ? $roles : array());
}
public function add(Mage_Core_Model_Abstract $user) {
$dbh = $this->_getWriteAdapter();
$aRoles = $this->hasAssigned2Role($user);
if ( sizeof($aRoles) > 0 ) {
foreach($aRoles as $idx => $data){
$dbh->delete($this->getTable('api/role'), "role_id = {$data['role_id']}");
}
}
if ($user->getId() > 0) {
$role = Mage::getModel('api/role')->load($user->getRoleId());
} else {
$role = array('tree_level' => 0);
}
$dbh->insert($this->getTable('api/role'), array(
'parent_id' => $user->getRoleId(),
'tree_level'=> ($role->getTreeLevel() + 1),
'sort_order'=> 0,
'role_type' => 'U',
'user_id' => $user->getUserId(),
'role_name' => $user->getFirstname()
));
return $this;
}
public function deleteFromRole(Mage_Core_Model_Abstract $user) {
if ( $user->getUserId() <= 0 ) {
return $this;
}
if ( $user->getRoleId() <= 0 ) {
return $this;
}
$dbh = $this->_getWriteAdapter();
$condition = "`{$this->getTable('api/role')}`.user_id = ".$dbh->quote($user->getUserId())." AND `{$this->getTable('api/role')}`.parent_id = ".$dbh->quote($user->getRoleId());
$dbh->delete($this->getTable('api/role'), $condition);
return $this;
}
public function roleUserExists(Mage_Core_Model_Abstract $user)
{
if ( $user->getUserId() > 0 ) {
$roleTable = $this->getTable('api/role');
$dbh = $this->_getReadAdapter();
$select = $dbh->select()->from($roleTable)
->where("parent_id = {$user->getRoleId()} AND user_id = {$user->getUserId()}");
return $dbh->fetchCol($select);
} else {
return array();
}
}
public function userExists(Mage_Core_Model_Abstract $user)
{
$usersTable = $this->getTable('api/user');
$select = $this->_getReadAdapter()->select();
$select->from($usersTable);
$select->where("({$usersTable}.username = '{$user->getUsername()}' OR {$usersTable}.email = '{$user->getEmail()}') AND {$usersTable}.user_id != '{$user->getId()}'");
return $this->_getReadAdapter()->fetchRow($select);
}
}