mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
* ActiveDirectory: implement fail over for multiple AD controllers (failed controllers are blacklisted for 5min)
This commit is contained in:
parent
ed34a8407b
commit
742c067740
@ -1393,6 +1393,64 @@ class adLDAP extends \adLDAP
|
||||
parent::__construct($options);
|
||||
}
|
||||
|
||||
private string $_controller;
|
||||
|
||||
/**
|
||||
* Reimplemented to try all given AD controllers, before finally failing
|
||||
*
|
||||
* @return bool
|
||||
* @throws adLDAPException
|
||||
*/
|
||||
function connect()
|
||||
{
|
||||
// if no more working (not failed) controllers, try again with all of them
|
||||
if (!($controllers = array_diff($this->domainControllers, $failed=(array)Api\Cache::getInstance(__CLASS__, 'failed'))))
|
||||
{
|
||||
$controllers = $this->domainControllers;
|
||||
$failed = [];
|
||||
Api\Cache::unsetInstance(__CLASS__, 'failed');
|
||||
}
|
||||
if ((float)PHP_VERSION < 8.2)
|
||||
{
|
||||
$shuffled = [];
|
||||
while($controllers)
|
||||
{
|
||||
$shuffled[] = $controllers[$key = array_rand($controllers)];
|
||||
unset($controllers[$key]);
|
||||
}
|
||||
$controllers = $shuffled;
|
||||
}
|
||||
else
|
||||
{
|
||||
$r = new \Random\Randomizer();
|
||||
$controllers = $r->shuffleArray($controllers);
|
||||
}
|
||||
foreach($controllers as $this->_controller)
|
||||
{
|
||||
try {
|
||||
return parent::connect();
|
||||
}
|
||||
catch (adLDAPException $e) {
|
||||
$failed[] = $this->_controller;
|
||||
Api\Cache::setInstance(__CLASS__, 'failed', $failed, 300);
|
||||
}
|
||||
}
|
||||
// if none of the controllers worked, throw the exception
|
||||
throw $e;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Not so random anymore ;)
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function randomController()
|
||||
{
|
||||
return $this->_controller ?? parent::randomController();
|
||||
}
|
||||
|
||||
/**
|
||||
* Magic method called when object gets serialized
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user