mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 11:23:54 +01:00
101 lines
3.1 KiB
PHP
101 lines
3.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* eGroupWare API - LDAP Authentication with fallback to SQL
|
||
|
*
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Ralf Becker <ralfbecker@outdoor-training.de>
|
||
|
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
|
||
|
* @package api
|
||
|
* @subpackage authentication
|
||
|
* @version $Id$
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Authentication agains a LDAP Server with fallback to SQL
|
||
|
*
|
||
|
* For other fallback types, simply change auth backends in constructor call
|
||
|
*/
|
||
|
class auth_fallback implements auth_backend
|
||
|
{
|
||
|
/**
|
||
|
* Primary auth backend
|
||
|
*
|
||
|
* @var auth_backend
|
||
|
*/
|
||
|
private $primary_backend;
|
||
|
|
||
|
/**
|
||
|
* Fallback auth backend
|
||
|
*
|
||
|
* @var auth_backend
|
||
|
*/
|
||
|
private $fallback_backend;
|
||
|
|
||
|
/**
|
||
|
* Constructor
|
||
|
*/
|
||
|
function __construct($primary='auth_ldap',$fallback='auth_sql')
|
||
|
{
|
||
|
$this->primary_backend = new $primary;
|
||
|
|
||
|
$this->fallback_backend = new $fallback;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* authentication against LDAP with fallback to SQL
|
||
|
*
|
||
|
* @param string $username username of account to authenticate
|
||
|
* @param string $passwd corresponding password
|
||
|
* @return boolean true if successful authenticated, false otherwise
|
||
|
*/
|
||
|
function authenticate($username, $passwd, $passwd_type='text')
|
||
|
{
|
||
|
if ($this->primary_backend->authenticate($username, $passwd, $passwd_type))
|
||
|
{
|
||
|
egw_cache::setSession(__CLASS__,'backend_used','primary');
|
||
|
// check if fallback has correct password, if not update it
|
||
|
if (($account_id = $GLOBALS['egw']->accounts->name2id($username)) &&
|
||
|
!$this->fallback_backend->authenticate($username,$passwd, $passwd_type))
|
||
|
{
|
||
|
$backup_currentapp = $GLOBALS['egw_info']['flags']['currentapp'];
|
||
|
$GLOBALS['egw_info']['flags']['currentapp'] = 'admin'; // otherwise
|
||
|
$ret = $this->fallback_backend->change_password('', $passwd, $account_id);
|
||
|
$GLOBALS['egw_info']['flags']['currentapp'] = $backup_currentapp;
|
||
|
error_log(__METHOD__."('$username', \$passwd) updated password for #$account_id on fallback ".($ret ? 'successfull' : 'failed!'));
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
if ($this->fallback_backend->authenticate($username,$passwd, $passwd_type))
|
||
|
{
|
||
|
egw_cache::setSession(__CLASS__,'backend_used','fallback');
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* changes password in LDAP
|
||
|
*
|
||
|
* If $old_passwd is given, the password change is done binded as user and NOT with the
|
||
|
* "root" dn given in the configurations.
|
||
|
*
|
||
|
* @param string $old_passwd must be cleartext or empty to not to be checked
|
||
|
* @param string $new_passwd must be cleartext
|
||
|
* @param int $account_id account id of user whose passwd should be changed
|
||
|
* @return boolean true if password successful changed, false otherwise
|
||
|
*/
|
||
|
function change_password($old_passwd, $new_passwd, $account_id=0)
|
||
|
{
|
||
|
if (egw_cache::getSession(__CLASS__,'backend_used') == 'primary')
|
||
|
{
|
||
|
if ($ret = $this->primary_backend->change_password($old_passwd, $new_passwd, $account_id))
|
||
|
{
|
||
|
// if password successfully changed on primary, also update fallback
|
||
|
$this->fallback_backend->change_password($old_passwd, $new_passwd, $account_id);
|
||
|
}
|
||
|
return $ret;
|
||
|
}
|
||
|
return $this->fallback_backend->change_password($old_passwd, $new_passwd, $account_id);
|
||
|
}
|
||
|
}
|