ldap.js
1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const ldap = require('ldapjs');
const config = global.config;
let client;
const createClient = () => {
client = ldap.createClient({
url: config.ldap.url,
tlsOptions: {
rejectUnauthorized: false
},
reconnect: true
});
return client;
};
const searchUser = (userName) => {
return new Promise((resolve, reject) => {
const searchPath = config.ldap.dcs.map(dc => {
return `dc=${dc}`;
}).join(',');
client.search(searchPath, {
scope: 'sub',
filter: `(&(objectclass=person)(sAMAccountName=${userName}))`
}, (error, res) => {
res.on('searchEntry', function (entry) {
resolve(entry.object);
});
res.on('error', function (e) {
console.log(e);
reject(e.message);
});
});
});
};
const checkUser = (userName, password) => {
if (!config.ldap) {
throw new Error('缺少ldap配置');
}
return new Promise((resolve, reject) => {
try {
if (!client) {
client = createClient();
}
const bindPath = config.ldap.dcs.join('.');
client.bind(`${userName}@${bindPath}`, password, async (err) => {
if (err) {
return resolve(void 0);
}
try {
const user = await searchUser(userName);
resolve(user);
client.unbind();
} catch (error) {
reject(error);
}
});
} catch (error) {
reject(error);
}
});
};
module.exports = {
checkUser
};