Skip to content

Latest commit

 

History

History
76 lines (56 loc) · 2.19 KB

authenticating.md

File metadata and controls

76 lines (56 loc) · 2.19 KB

Authenticating

Authenticating Users

To authenticate users using your AD server, call the auth()->attempt() method on your provider:

try {

    if ($provider->auth()->attempt($username, $password)) {
        // Credentials were correct.
    } else {
        // Credentials were incorrect.
    }

} catch (\Adldap\Exceptions\Auth\UsernameRequiredException $e) {
    // The user didn't supply a username.
} catch (\Adldap\Exceptions\Auth\PasswordRequiredException $e) {
    // The user didn't supply a password.
}

Note: Authenticating does not actually set up a PHP session or perform any sort of login functionality. The attempt() method merely tries to bind to your LDAP server as the specified user and returns true / false on its result.

Binding as Authenticated Users

To bind the users to your LDAP connection that you authenticate (which means 'run all LDAP operations under this user'), pass in true into the third parameter:

$username = 'jdoe';
$password = 'Password123';

if ($provider->auth()->attempt($username, $password, $bindAsUser = true)) {
    // Credentials were correct. All LDAP operations will be ran under John Doe.
}

Note: By default, $bindAsUser is false, this means that all LDAP operations are ran under your configured administrator account unless otherwise specified.

Manually Binding as Administrator

To manually bind as your configured administrator, use the bindAsAdministrator() method:

try {
    $provider->auth()->bindAsAdministrator();

    // Successfully bound to server.
} catch (\Adldap\Exceptions\Auth\BindException $e) {
    // There was an issue binding to the LDAP server.
}

Manually Binding as A User

To manually bind as a user, use the bind() method:

try {
    $provider->auth()->bind($username, $password);

     // Successfully bound to server.
} catch (\Adldap\Exceptions\Auth\BindException $e) {
    // There was an issue binding to the LDAP server.
}

Note: Manually binding as a user will not validate their username or password to ensure they are not empty.

This means, a user could pass in empty strings and could anonymously authenticate to your server if you're not careful.