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 ExtendedRequest(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');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (options.requestName && typeof (options.requestName) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options.requestName must be a string');
|
2012-02-18 08:15:52 +00:00
|
|
|
if (options.requestValue && typeof (options.requestValue) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('options.requestValue must be a string');
|
|
|
|
} else {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
options.protocolOp = Protocol.LDAP_REQ_EXTENSION;
|
|
|
|
LDAPMessage.call(this, options);
|
|
|
|
|
|
|
|
this.requestName = options.requestName || '';
|
|
|
|
this.requestValue = options.requestValue || undefined;
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
this.__defineGetter__('type', function () { return 'ExtendedRequest'; });
|
|
|
|
this.__defineGetter__('_dn', function () { return this.requestName; });
|
|
|
|
this.__defineGetter__('name', function () {
|
2011-08-04 20:32:01 +00:00
|
|
|
return this.requestName;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
this.__defineGetter__('value', function () {
|
2011-08-04 20:32:01 +00:00
|
|
|
return this.requestValue;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
this.__defineSetter__('name', function (name) {
|
|
|
|
if (typeof (name) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('name must be a string');
|
|
|
|
|
|
|
|
this.requestName = name;
|
|
|
|
});
|
2012-02-18 08:15:52 +00:00
|
|
|
this.__defineSetter__('value', function (val) {
|
|
|
|
if (typeof (val) !== 'string')
|
2011-08-04 20:32:01 +00:00
|
|
|
throw new TypeError('value must be a string');
|
|
|
|
|
|
|
|
this.requestValue = val;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
util.inherits(ExtendedRequest, LDAPMessage);
|
|
|
|
module.exports = ExtendedRequest;
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
ExtendedRequest.prototype._parse = function (ber) {
|
2011-08-04 20:32:01 +00:00
|
|
|
assert.ok(ber);
|
|
|
|
|
|
|
|
this.requestName = ber.readString(0x80);
|
|
|
|
if (ber.peek() === 0x81)
|
|
|
|
this.requestValue = ber.readString(0x81);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
ExtendedRequest.prototype._toBer = function (ber) {
|
2011-08-04 20:32:01 +00:00
|
|
|
assert.ok(ber);
|
|
|
|
|
|
|
|
ber.writeString(this.requestName, 0x80);
|
|
|
|
if (this.requestValue)
|
|
|
|
ber.writeString(this.requestValue, 0x81);
|
|
|
|
|
|
|
|
return ber;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
ExtendedRequest.prototype._json = function (j) {
|
2011-08-04 20:32:01 +00:00
|
|
|
assert.ok(j);
|
|
|
|
|
|
|
|
j.requestName = this.requestName;
|
|
|
|
j.requestValue = this.requestValue;
|
|
|
|
|
|
|
|
return j;
|
|
|
|
};
|