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;
|
|
|
|
|
2011-08-12 23:37:47 +00:00
|
|
|
var LDAP_BIND_SIMPLE = 'simple';
|
|
|
|
var LDAP_BIND_SASL = 'sasl';
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///--- API
|
|
|
|
|
|
|
|
function BindRequest(options) {
|
2011-11-09 22:57:22 +00:00
|
|
|
if (options && typeof(options) !== 'object')
|
|
|
|
throw new TypeError('options must be an object');
|
|
|
|
|
|
|
|
options = options || {};
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
options.protocolOp = Protocol.LDAP_REQ_BIND;
|
|
|
|
LDAPMessage.call(this, options);
|
|
|
|
|
|
|
|
this.version = options.version || 0x03;
|
|
|
|
this.name = options.name || null;
|
|
|
|
this.authentication = options.authentication || LDAP_BIND_SIMPLE;
|
|
|
|
this.credentials = options.credentials || '';
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
this.__defineGetter__('type', function() { return 'BindRequest'; });
|
2011-08-10 17:57:58 +00:00
|
|
|
this.__defineGetter__('_dn', function() { return self.name; });
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
util.inherits(BindRequest, LDAPMessage);
|
|
|
|
module.exports = BindRequest;
|
|
|
|
|
|
|
|
|
|
|
|
BindRequest.prototype._parse = function(ber) {
|
|
|
|
assert.ok(ber);
|
|
|
|
|
|
|
|
this.version = ber.readInt();
|
|
|
|
this.name = dn.parse(ber.readString());
|
|
|
|
|
|
|
|
var t = ber.peek();
|
|
|
|
|
|
|
|
// TODO add support for SASL et al
|
|
|
|
if (t !== Ber.Context)
|
|
|
|
throw new Error('authentication 0x' + t.toString(16) + ' not supported');
|
|
|
|
|
|
|
|
this.authentication = LDAP_BIND_SIMPLE;
|
|
|
|
this.credentials = ber.readString(Ber.Context);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BindRequest.prototype._toBer = function(ber) {
|
|
|
|
assert.ok(ber);
|
|
|
|
|
|
|
|
ber.writeInt(this.version);
|
2011-11-11 18:08:48 +00:00
|
|
|
ber.writeString((this.name || '').toString());
|
2011-08-04 20:32:01 +00:00
|
|
|
// TODO add support for SASL et al
|
2011-11-11 18:08:48 +00:00
|
|
|
ber.writeString((this.credentials || ''), Ber.Context);
|
2011-08-04 20:32:01 +00:00
|
|
|
|
|
|
|
return ber;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BindRequest.prototype._json = function(j) {
|
|
|
|
assert.ok(j);
|
|
|
|
|
|
|
|
j.version = this.version;
|
|
|
|
j.name = this.name;
|
|
|
|
j.authenticationType = this.authentication;
|
|
|
|
j.credentials = this.credentials;
|
|
|
|
|
|
|
|
return j;
|
|
|
|
};
|