kv4nt / yii2-ldap
Authorize, search users, get user groups and other from LDAP
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
- rcnowak/yii2: 1.0
This package is auto-updated.
Last update: 2024-11-15 20:11:20 UTC
README
Authorize, search users, get user groups and other from LDAP
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist kv4nt/ldap
or add
"kv4nt/ldap": "*"
to the require section of your composer.json
file.
Application configuration example:
In config/main.php add:
return [ 'components' => [ 'ldap' => [ 'class' => 'kv4nt\ldap\Connector', 'useCache' => YII_ENV_DEV ? false : true, ], ], // ... ];
In config/main-local.php add:
return [ 'components' => [ 'ldap' => [ 'host' => 'ldap.example.com', 'port' => '389', 'baseDN' => 'OU=...,DC=...,DC=...,DC=net', 'userDN' => '@....corp.net', 'groupDN' => '', //Input your AD login/pass on dev or sys login/pass on test/prod servers 'sysUserLogin' => '', 'sysUserPassword' => '', ], ], // ... ];
Usage example:
if (!Yii::$app->ldap->validateUserCredentials('SAMAccountName', 'password')) { throw new ErrorException('Incorrect username or password.'); }
echo Yii::$app->ldap->getUserAttributesBySAMAccountName('SAMAccountName', ['mail', 'sn', 'givenname', 'middlename']);
echo kv4nt\ldap\widgets\UserImage::widget([ 'login' => Yii::$app->user->identity->username, 'options' => [ 'class' => 'img-circle', 'alt' => 'User Image', ] ]);