Skip to content
Snippets Groups Projects
Commit 65bc8497 authored by llaffont's avatar llaffont
Browse files

Recorrection auth

parent 8e9e6c5c
Branches
Tags
No related merge requests found
......@@ -65,15 +65,13 @@ class ZendAfi_Auth extends Zend_Auth {
foreach ($adapters as $authAdapter) {
$authAdapter->setIdentity($login);
$authAdapter->setCredential($password);
$result = $this->authenticate($authAdapter);
if (!$result->isValid()) {
if (!$this->authenticate($authAdapter)->isValid()) {
$authAdapter->setCredential($this->md5_base64($login));
$result = $this->authenticate($authAdapter);
if (!$result->isValid()) continue;
if (!$this->authenticate($authAdapter)->isValid()) continue;
}
$this->getStorage()->write($result);
$this->getStorage()->write($authAdapter->getResultObject());
return true;
}
return false;
......
......@@ -62,5 +62,11 @@ class Mock_ZendAfi_Auth_MD5_Adapter implements Zend_Auth_Adapter_Interface {
return new Zend_Auth_Result(Zend_Auth_Result::FAILURE_IDENTITY_NOT_FOUND, $this->_identity);
}
public function getResultObject() {
return new StdClass();
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment