2011-08-04 20:32:01 +00:00
|
|
|
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
|
|
|
|
var assert = require('assert');
|
|
|
|
var util = require('util');
|
|
|
|
|
|
|
|
var asn1 = require('asn1');
|
|
|
|
|
|
|
|
var LDAPMessage = require('./message');
|
|
|
|
var LDAPResult = require('./result');
|
|
|
|
|
|
|
|
var dn = require('../dn');
|
|
|
|
var Protocol = require('../protocol');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///--- Globals
|
|
|
|
|
|
|
|
var Ber = asn1.Ber;
|
|
|
|
|
|
|
|
|
|
|
|
///--- API
|
|
|
|
|
|
|
|
function ModifyDNRequest(options) {
|
|
|
|
if (options) {
|
2012-02-18 08:15:52 +00:00
|
|
|
if (typeof (options) !== 'object')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options must be an object');
|
|
|
|
if (options.entry && !(options.entry instanceof dn.DN))
|
|
|
|
throw new TypeError('options.entry must be a DN');
|
|
|
|
if (options.newRdn && !(options.newRdn instanceof dn.DN))
|
|
|
|
throw new TypeError('options.newRdn must be a DN');
|
|
|
|
if (options.deleteOldRdn !== undefined &&
|
2012-02-18 08:15:52 +00:00
|
|
|
typeof (options.deleteOldRdn) !== 'boolean')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options.deleteOldRdn must be a boolean');
|
|
|
|
if (options.newSuperior && !(options.newSuperior instanceof dn.DN))
|
|
|
|
throw new TypeError('options.newSuperior must be a DN');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
var self = this;
|
2012-02-18 08:15:52 +00:00
|
|
|
this.__defineGetter__('type', function () { return 'ModifyDNRequest'; });
|
|
|
|
this.__defineGetter__('_dn', function () { return self.entry; });
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
util.inherits(ModifyDNRequest, LDAPMessage);
|
|
|
|
module.exports = ModifyDNRequest;
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
ModifyDNRequest.prototype._parse = function (ber) {
|
2011-08-04 20:32:01 +00:00
|
|
|
assert.ok(ber);
|
|
|
|
|
|
|
|
this.entry = dn.parse(ber.readString());
|
|
|
|
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;
|
|
|
|
};
|