Merge branch 'release/1.1.0'
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
# v1.1.0
|
||||||
|
## 04/16/2024
|
||||||
|
|
||||||
|
1. [](#improved)
|
||||||
|
* Stop event propagation on empty username [#27](https://github.com/trilbymedia/grav-plugin-login-ldap/pulls/27)
|
||||||
|
* Add LDAP configuration example for Active Directory [#19](https://github.com/trilbymedia/grav-plugin-login-ldap/pulls/19)
|
||||||
|
* Fix plugin installation under PHP 8.1 [#31](https://github.com/trilbymedia/grav-plugin-login-ldap/pulls/31)
|
||||||
|
|
||||||
# v1.0.2
|
# v1.0.2
|
||||||
## 11/16/2020
|
## 11/16/2020
|
||||||
|
|
||||||
|
|||||||
20
README.md
20
README.md
@@ -50,6 +50,7 @@ group_indentifier: cn
|
|||||||
map_username: uid
|
map_username: uid
|
||||||
map_fullname: givenName lastName
|
map_fullname: givenName lastName
|
||||||
map_email: mail
|
map_email: mail
|
||||||
|
map_dn: distinguishedName
|
||||||
save_grav_user: false
|
save_grav_user: false
|
||||||
store_ldap_data: false
|
store_ldap_data: false
|
||||||
default_access_levels:
|
default_access_levels:
|
||||||
@@ -78,7 +79,7 @@ default_access_levels:
|
|||||||
|version|LDAP Version 3 is most popular (only change this if you know what you are doing) | [default: `3`] |
|
|version|LDAP Version 3 is most popular (only change this if you know what you are doing) | [default: `3`] |
|
||||||
|ssl|Enable SSL for the connection (typically for port 636 or 3269) | `true` \| [default: `false`] |
|
|ssl|Enable SSL for the connection (typically for port 636 or 3269) | `true` \| [default: `false`] |
|
||||||
|start_tls|Negotiate TLS encryption with the LDAP server (requires all traffic to be encrypted) | `true` \| [default: `false`] |
|
|start_tls|Negotiate TLS encryption with the LDAP server (requires all traffic to be encrypted) | `true` \| [default: `false`] |
|
||||||
|opt_referrals|Sets the value of LDAP_OPT_REFERRALS (Set to "off" for Windows 2003 servers) | `true` \| [default: `false`] |
|
|opt_referrals|Sets the value of LDAP_OPT_REFERRALS (leave it disabled for Windows 2003 and later servers) | `true` \| [default: `false`] |
|
||||||
|
|
||||||
### LDAP Configuration
|
### LDAP Configuration
|
||||||
|
|
||||||
@@ -92,6 +93,23 @@ default_access_levels:
|
|||||||
|map_username|LDAP Attribute(s) that contains the user's username | [default: `uid`] |
|
|map_username|LDAP Attribute(s) that contains the user's username | [default: `uid`] |
|
||||||
|map_fullname|LDAP Attribute(s) that contains the user's full name | [default: `givenName lastName`] |
|
|map_fullname|LDAP Attribute(s) that contains the user's full name | [default: `givenName lastName`] |
|
||||||
|map_email|LDAP Attribute(s) that contains the user's email address | [default: `mail`] |
|
|map_email|LDAP Attribute(s) that contains the user's email address | [default: `mail`] |
|
||||||
|
|map_dn|LDAP Attribute that contains the user's DN String | [default: `distinguishedName`] |
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
#### Active Directory with pre-Windows 2000 style logins
|
||||||
|
|
||||||
|
|Key | Value |
|
||||||
|
|:---------------------|:-------|
|
||||||
|
|user_dn| `YOURDOMAIN\[username]` |
|
||||||
|
|search_dn| `ou=users,dc=yourdomain,dc=local` |
|
||||||
|
|group_dn| `ou=groups,dc=yourdomain,dc=local` |
|
||||||
|
|group_query| `(&(cn=*)(member=[dn]))` or `(&(cn=*)(member:1.2.840.113556.1.4.1941:=[dn]))` for nested group support |
|
||||||
|
|group_indentifier| `cn` |
|
||||||
|
|map_username| `sAMAccountName` |
|
||||||
|
|map_fullname| `displayName` |
|
||||||
|
|map_email| `mail` |
|
||||||
|
|map_dn| `distinguishedName` |
|
||||||
|
|
||||||
### Advanced Configuration
|
### Advanced Configuration
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: Login LDAP
|
name: Login LDAP
|
||||||
version: 1.0.2
|
version: 1.1.0
|
||||||
description: Allows for Grav user authentication against an LDAP Server such as OpenLDAP or ActiveDirectory
|
description: Allows for Grav user authentication against an LDAP Server such as OpenLDAP or ActiveDirectory
|
||||||
icon: user-circle-o
|
icon: user-circle-o
|
||||||
author:
|
author:
|
||||||
@@ -219,7 +219,6 @@ form:
|
|||||||
type: commalist
|
type: commalist
|
||||||
|
|
||||||
blacklist_ldap_fields:
|
blacklist_ldap_fields:
|
||||||
type: array
|
|
||||||
type: array
|
type: array
|
||||||
value_only: true
|
value_only: true
|
||||||
label: PLUGIN_LOGIN_LDAP.BLACKLIST_FIELDS
|
label: PLUGIN_LOGIN_LDAP.BLACKLIST_FIELDS
|
||||||
|
|||||||
@@ -70,10 +70,11 @@ class LoginLDAPPlugin extends Plugin
|
|||||||
public function userLoginAuthenticate(UserLoginEvent $event)
|
public function userLoginAuthenticate(UserLoginEvent $event)
|
||||||
{
|
{
|
||||||
$credentials = $event->getCredentials();
|
$credentials = $event->getCredentials();
|
||||||
|
|
||||||
// empty username -> ignore
|
// Fail early on empty username
|
||||||
if($credentials['username'] == ''){
|
if($credentials['username'] == ''){
|
||||||
$event->setStatus($event::AUTHENTICATION_FAILURE);
|
$event->setStatus($event::AUTHENTICATION_FAILURE);
|
||||||
|
$event->stopPropagation();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user