98 lines
2.6 KiB
PHP
98 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2014 (original work) Open Assessment Technologies SA;
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Authentication service to access db
|
|
*
|
|
* @author christophe massin
|
|
* @package authLdap
|
|
|
|
*/
|
|
|
|
namespace oat\authLdap\model;
|
|
use common_persistence_AdvKeyValuePersistence;
|
|
|
|
|
|
class AuthLdapUserService {
|
|
|
|
|
|
const PREFIXES_KEY = 'auth';
|
|
|
|
const USER_PARAMETERS = 'parameters';
|
|
|
|
/**
|
|
* @var \common_persistence_Driver
|
|
*/
|
|
protected $driver;
|
|
|
|
|
|
public function __construct(){
|
|
$kvStore = common_persistence_AdvKeyValuePersistence::getPersistence(AuthKeyValueAdapter::KEY_VALUE_PERSISTENCE_ID);
|
|
$this->driver = $kvStore->getDriver();
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $login
|
|
* @return mixed
|
|
*/
|
|
public function getUserData($login){
|
|
return $this->driver->hGetAll(AuthKeyValueUserService::PREFIXES_KEY.':'.$login);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $userLogin string
|
|
* @param $parameter string
|
|
* @return mixed
|
|
*/
|
|
public function getUserParameter($userLogin, $parameter){
|
|
return $this->driver->get(AuthKeyValueUserService::PREFIXES_KEY.':'.$userLogin.':'.$parameter);
|
|
}
|
|
|
|
/**
|
|
* @param $userLogin string user login
|
|
* @param $parameter string parameter
|
|
* @param $value mixed
|
|
*/
|
|
public function addUserParameter($userLogin, $parameter, $value){
|
|
$this->driver->set(AuthKeyValueUserService::PREFIXES_KEY.':'.$userLogin.':'.$parameter, $value);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $userLogin string
|
|
* @param $parameter string
|
|
*/
|
|
public function deleteUserParameter($userLogin, $parameter){
|
|
$this->driver->del(AuthKeyValueUserService::PREFIXES_KEY.':'.$userLogin.':'.$parameter);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $userLogin
|
|
* @param $parameter
|
|
* @param $value
|
|
*/
|
|
public function editUserParameter($userLogin, $parameter, $value){
|
|
$this->driver->set(AuthKeyValueUserService::PREFIXES_KEY.':'.$userLogin.':'.$parameter, $value);
|
|
}
|
|
} |