mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
Update ldap.js
修改ldap filter的匹配规则
This commit is contained in:
parent
27a7613dae
commit
04f84aa75f
@ -114,8 +114,8 @@ exports.ldapQuery = (username, password) => {
|
||||
const searchStandard = ldapLogin.searchStandard;
|
||||
// 处理可以自定义filter
|
||||
let customFilter;
|
||||
if (/^&/gi.test(searchStandard)) {
|
||||
customFilter = util.format(searchStandard, username);
|
||||
if (/^(&|\|)/gi.test(searchStandard)) {
|
||||
customFilter = searchStandard.replace(/%s/g,username);
|
||||
} else {
|
||||
customFilter = `${searchStandard}=${username}`;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user