Update ldap.js

修改ldap filter的匹配规则
This commit is contained in:
vvkkhjt 2020-02-26 11:13:07 +08:00 committed by GitHub
parent 27a7613dae
commit 04f84aa75f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}`;
}