Esempio n. 1
0
 /**
  * Binds to the current connection using the
  * inserted credentials.
  *
  * @param string $username
  * @param string $password
  * @returns bool
  *
  * @throws AdldapException
  */
 private function bindUsingCredentials($username, $password)
 {
     // Allow binding with null credentials
     if (empty($username)) {
         $username = null;
     } else {
         $username .= $this->getAccountSuffix();
     }
     if (empty($password)) {
         $password = null;
     }
     $this->ldapConnection->bind($username, $password);
     if (!$this->ldapConnection->isBound()) {
         $error = $this->ldapConnection->getLastError();
         if ($this->ldapConnection->isUsingSSL() && !$this->ldapConnection->isUsingTLS()) {
             $message = 'Bind to Active Directory failed. Either the LDAPs connection failed or the login credentials are incorrect. AD said: ' . $error;
         } else {
             $message = 'Bind to Active Directory failed. Check the login credentials and/or server details. AD said: ' . $error;
         }
         throw new AdldapException($message);
     }
     return true;
 }