2011-08-04 20:32:01 +00:00
|
|
|
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
|
2015-10-31 17:28:25 +00:00
|
|
|
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');
|
2014-09-30 23:39:19 +00:00
|
|
|
var dn = require('../dn');
|
2015-10-31 17:28:25 +00:00
|
|
|
var lassert = require('../assert');
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
///--- API
|
|
|
|
|
|
|
|
function ModifyDNRequest(options) {
|
2015-10-31 17:28:25 +00:00
|
|
|
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;
|
2011-08-23 23:25:07 +00:00
|
|
|
this.deleteOldRdn = options.deleteOldRdn || true;
|
2011-08-04 20:32:01 +00:00
|
|
|
this.newSuperior = options.newSuperior || null;
|
|
|
|
}
|
|
|
|
util.inherits(ModifyDNRequest, LDAPMessage);
|
2015-10-31 17:28:25 +00:00
|
|
|
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
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
ModifyDNRequest.prototype._parse = function (ber) {
|
2011-08-04 20:32:01 +00:00
|
|
|
assert.ok(ber);
|
|
|
|
|
2014-09-30 23:39:19 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
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;
|
|
|
|
};
|
2015-10-31 17:28:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
///--- Exports
|
|
|
|
|
|
|
|
module.exports = ModifyDNRequest;
|