node-ldapjs/lib/messages/moddn_request.js

89 lines
2.1 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 Protocol = require('../protocol');
var dn = require('../dn');
var lassert = require('../assert');
2011-08-04 20:32:01 +00:00
///--- API
function ModifyDNRequest(options) {
options = options || {};
assert.object(options);
assert.optionalBool(options.deleteOldRdn);
lassert.optionalStringDN(options.entry);
lassert.optionalDN(options.newRdn);
lassert.optionalDN(options.newSuperior);
2011-08-04 20:32:01 +00:00
options.protocolOp = Protocol.LDAP_REQ_MODRDN;
LDAPMessage.call(this, options);
this.entry = options.entry || null;
this.newRdn = options.newRdn || null;
this.deleteOldRdn = options.deleteOldRdn || true;
2011-08-04 20:32:01 +00:00
this.newSuperior = options.newSuperior || null;
}
util.inherits(ModifyDNRequest, LDAPMessage);
Object.defineProperties(ModifyDNRequest.prototype, {
type: {
get: function getType() { return 'ModifyDNRequest'; },
configurable: false
},
_dn: {
get: function getDN() { return this.entry; },
configurable: false
}
});
2011-08-04 20:32:01 +00:00
ModifyDNRequest.prototype._parse = function (ber) {
2011-08-04 20:32:01 +00:00
assert.ok(ber);
this.entry = ber.readString();
2011-08-04 20:32:01 +00:00
this.newRdn = dn.parse(ber.readString());
this.deleteOldRdn = ber.readBoolean();
2011-08-15 20:50:15 +00:00
if (ber.peek() === 0x80)
this.newSuperior = dn.parse(ber.readString(0x80));
2011-08-04 20:32:01 +00:00
return true;
};
ModifyDNRequest.prototype._toBer = function (ber) {
2013-01-14 09:14:35 +00:00
//assert.ok(ber);
2011-08-04 20:32:01 +00:00
ber.writeString(this.entry.toString());
ber.writeString(this.newRdn.toString());
ber.writeBoolean(this.deleteOldRdn);
2013-01-14 09:14:35 +00:00
if (this.newSuperior) {
var s = this.newSuperior.toString();
var len = Buffer.byteLength(s);
ber.writeByte(0x80); // MODIFY_DN_REQUEST_NEW_SUPERIOR_TAG
ber.writeByte(len);
ber._ensure(len);
ber._buf.write(s, ber._offset);
ber._offset += len;
2013-01-29 18:38:39 +00:00
}
2011-08-04 20:32:01 +00:00
return ber;
};
ModifyDNRequest.prototype._json = function (j) {
2011-08-04 20:32:01 +00:00
assert.ok(j);
j.entry = this.entry.toString();
j.newRdn = this.newRdn.toString();
j.deleteOldRdn = this.deleteOldRdn;
j.newSuperior = this.newSuperior ? this.newSuperior.toString() : '';
return j;
};
///--- Exports
module.exports = ModifyDNRequest;