mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 09:11:20 +00:00
This adds support for the ADLDAP_AUTH_FILTER env var, and the
ldap_auth.custom_filter config option. These are optional. If provided, the custom filter will be applied to the LDAP query using the FireflyIII\Scopes\LdapFilterScope class. This allows the integrator to specify a custom LDAP filter.
This commit is contained in:
@@ -22,6 +22,8 @@
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use FireflyIII\Scopes\LdapFilterScope;
|
||||
|
||||
use Adldap\Laravel\Events\Authenticated;
|
||||
use Adldap\Laravel\Events\AuthenticatedModelTrashed;
|
||||
use Adldap\Laravel\Events\AuthenticatedWithWindows;
|
||||
@@ -49,13 +51,17 @@ use Adldap\Laravel\Scopes\UpnScope;
|
||||
|
||||
// default OpenLDAP scopes.
|
||||
$scopes = [
|
||||
LdapFilterScope::class,
|
||||
UidScope::class,
|
||||
];
|
||||
if ('FreeIPA' === env('ADLDAP_CONNECTION_SCHEME')) {
|
||||
$scopes = [];
|
||||
$scopes = [
|
||||
LdapFilterScope::class,
|
||||
];
|
||||
}
|
||||
if ('ActiveDirectory' === env('ADLDAP_CONNECTION_SCHEME')) {
|
||||
$scopes = [
|
||||
LdapFilterScope::class,
|
||||
UpnScope::class,
|
||||
];
|
||||
}
|
||||
@@ -374,4 +380,16 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom LDAP Filter
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value can be optionally provided to restrict LDAP queries to the
|
||||
| given filter. It should be in LDAP filter format, and will be
|
||||
| applied in the LdapFilterScope.
|
||||
|
|
||||
*/
|
||||
'custom_filter' => env('ADLDAP_AUTH_FILTER', ''),
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user