forked from jeremycx/node-LDAP
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLDAP.js
127 lines (107 loc) · 3.75 KB
/
LDAP.js
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
var ldapbinding = require("./build/default/LDAP");
var Connection = function() {
var callbacks = {};
var binding = new ldapbinding.LDAPConnection();
var self = this;
var querytimeout = 5000;
var totalqueries = 0;
self.BASE = 0;
self.ONELEVEL = 1;
self.SUBTREE = 2;
self.SUBORDINATE = 3;
self.DEFAULT = -1;
self.DEREF_NEVER = 0;
self.DEREF_SEARCHING = 1;
self.DEREF_FINDING = 2;
self.DEREF_ALWAYS = 3;
self.setCallback = function(msgid, CB) {
if (msgid >= 0) {
totalqueries++;
if (typeof(CB) == 'function') {
callbacks[msgid] = {
cb: CB,
tm: setTimeout(function() {
CB(msgid, new Error(-2)); //Request timed out
delete callbacks[msgid];
}, self.querytimeout || querytimeout)
};
}
} else {
// msgid is -1, which means an error. We won't add the callback to the array,
// instead, call the callback immediately.
CB(msgid, new Error(-1)); //LDAP Error, TODO: expose a way to get the specific error
}
};
self.open = function(uri, version) {
if (arguments.length < 2) {
return binding.open(uri, 3);
}
return binding.open(uri, version);
};
self.search = function(base, scope, filter, attrs, CB) {
var msgid = binding.search(base, scope, filter, attrs);
self.setCallback(msgid, CB);
};
self.searchDeref = function(base, scope, filter, attrs, deref, CB) {
var msgid = binding.searchDeref(base, scope, filter, attrs, deref);
self.setCallback(msgid, CB);
};
self.pagedSearch = function(base, scope, filter, attrs, pageOption, CB) {
var msgid = binding.pagedSearch(base, scope, filter, attrs, pageOption);
self.setCallback(msgid, CB);
};
self.simpleBind = function(binddn, password, CB) {
var msgid;
if (arguments.length === 0) {
msgid = binding.simpleBind();
} else {
msgid = binding.simpleBind(binddn, password);
}
return self.setCallback(msgid, CB);
};
self.add = function(dn, data, CB) {
var msgid = binding.add(dn, data);
return self.setCallback(msgid, CB);
};
self.remove = function(dn, CB) {
var msgid = binding.remove(dn);
return self.setCallback(msgid, CB);
};
self.modify = function(dn, data, CB) {
var msgid = binding.modify(dn, data);
return self.setCallback(msgid, CB);
};
self.addListener = function(event, CB) {
binding.addListener(event, CB);
};
self.removeListener = function(event, CB) {
binding.removeListener(event, CB);
};
self.close = function() {
binding.close();
}
binding.addListener("searchresult", function(msgid, result, data, context) {
// result contains the LDAP response type. It's unused.
if (callbacks[msgid]) {
clearTimeout(callbacks[msgid].tm);
callbacks[msgid].cb(msgid, null, data, context);
delete(callbacks[msgid]);
}
});
binding.addListener("result", function(msgid, result) {
// result contains the LDAP response type. It's unused.
if (callbacks[msgid]) {
clearTimeout(callbacks[msgid].tm);
callbacks[msgid].cb(msgid, null);
delete(callbacks[msgid]);
}
});
binding.addListener("error", function(msgid, err, msg) {
if (callbacks[msgid]) {
clearTimeout(callbacks[msgid].tm);
callbacks[msgid].cb(msgid, new Error(err, msg));
delete(callbacks[msgid]);
}
});
};
exports.Connection = Connection;