node-ldapjs/lib/messages/unbind_request.js

66 lines
1.2 KiB
JavaScript
Raw Normal View History

2011-08-04 20:32:01 +00:00
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
var assert = require('assert-plus');
2011-08-04 20:32:01 +00:00
var util = require('util');
var LDAPMessage = require('./message');
var dn = require('../dn');
2011-08-04 20:32:01 +00:00
var Protocol = require('../protocol');
///--- Globals
var DN = dn.DN;
var RDN = dn.RDN;
2011-08-04 20:32:01 +00:00
///--- API
function UnbindRequest(options) {
options = options || {};
assert.object(options);
2011-08-04 20:32:01 +00:00
options.protocolOp = Protocol.LDAP_REQ_UNBIND;
LDAPMessage.call(this, options);
}
util.inherits(UnbindRequest, LDAPMessage);
Object.defineProperties(UnbindRequest.prototype, {
type: {
get: function getType() { return 'UnbindRequest'; },
configurable: false
},
_dn: {
get: function getDN() {
if (this.connection) {
return this.connection.ldap.bindDN;
} else {
return new DN([new RDN({cn: 'anonymous'})]);
}
},
configurable: false
2011-08-04 20:32:01 +00:00
}
});
2011-08-04 20:32:01 +00:00
UnbindRequest.prototype._parse = function (ber) {
2011-08-04 20:32:01 +00:00
assert.ok(ber);
return true;
};
UnbindRequest.prototype._toBer = function (ber) {
2011-08-04 20:32:01 +00:00
assert.ok(ber);
return ber;
};
UnbindRequest.prototype._json = function (j) {
2011-08-04 20:32:01 +00:00
assert.ok(j);
return j;
};
///--- Exports
module.exports = UnbindRequest;