123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- // Copyright 2011 Mark Cavage, Inc. All rights reserved.
-
- var assert = require('assert-plus');
- var util = require('util');
-
- var asn1 = require('asn1');
-
- var LDAPMessage = require('./message');
- var Attribute = require('../attribute');
- var Protocol = require('../protocol');
- var lassert = require('../assert');
-
-
- ///--- Globals
-
- var BerWriter = asn1.BerWriter;
-
-
- ///--- API
-
- function SearchEntry(options) {
- options = options || {};
- assert.object(options);
- lassert.optionalStringDN(options.objectName);
-
- options.protocolOp = Protocol.LDAP_REP_SEARCH_ENTRY;
- LDAPMessage.call(this, options);
-
- this.objectName = options.objectName || null;
- this.setAttributes(options.attributes || []);
- }
- util.inherits(SearchEntry, LDAPMessage);
- Object.defineProperties(SearchEntry.prototype, {
- type: {
- get: function getType() { return 'SearchEntry'; },
- configurable: false
- },
- _dn: {
- get: function getDN() { return this.objectName; },
- configurable: false
- },
- object: {
- get: function getObject() {
- var obj = {
- dn: this.dn.toString(),
- controls: []
- };
- this.attributes.forEach(function (a) {
- if (a.vals && a.vals.length) {
- if (a.vals.length > 1) {
- obj[a.type] = a.vals.slice();
- } else {
- obj[a.type] = a.vals[0];
- }
- } else {
- obj[a.type] = [];
- }
- });
- this.controls.forEach(function (element, index, array) {
- obj.controls.push(element.json);
- });
- return obj;
- },
- configurable: false
- },
- raw: {
- get: function getRaw() {
- var obj = {
- dn: this.dn.toString(),
- controls: []
- };
-
- this.attributes.forEach(function (a) {
- if (a.buffers && a.buffers.length) {
- if (a.buffers.length > 1) {
- obj[a.type] = a.buffers.slice();
- } else {
- obj[a.type] = a.buffers[0];
- }
- } else {
- obj[a.type] = [];
- }
- });
- this.controls.forEach(function (element, index, array) {
- obj.controls.push(element.json);
- });
- return obj;
- },
- configurable: false
- }
- });
-
- SearchEntry.prototype.addAttribute = function (attr) {
- if (!attr || typeof (attr) !== 'object')
- throw new TypeError('attr (attribute) required');
-
- this.attributes.push(attr);
- };
-
- SearchEntry.prototype.toObject = function () {
- return this.object;
- };
-
- SearchEntry.prototype.fromObject = function (obj) {
- if (typeof (obj) !== 'object')
- throw new TypeError('object required');
-
- var self = this;
- if (obj.controls)
- this.controls = obj.controls;
-
- if (obj.attributes)
- obj = obj.attributes;
- this.attributes = [];
-
- Object.keys(obj).forEach(function (k) {
- self.attributes.push(new Attribute({type: k, vals: obj[k]}));
- });
-
- return true;
- };
-
- SearchEntry.prototype.setAttributes = function (obj) {
- if (typeof (obj) !== 'object')
- throw new TypeError('object required');
-
- if (Array.isArray(obj)) {
- obj.forEach(function (a) {
- if (!Attribute.isAttribute(a))
- throw new TypeError('entry must be an Array of Attributes');
- });
- this.attributes = obj;
- } else {
- var self = this;
-
- self.attributes = [];
- Object.keys(obj).forEach(function (k) {
- var attr = new Attribute({type: k});
- if (Array.isArray(obj[k])) {
- obj[k].forEach(function (v) {
- attr.addValue(v.toString());
- });
- } else {
- attr.addValue(obj[k].toString());
- }
- self.attributes.push(attr);
- });
- }
- };
-
- SearchEntry.prototype._json = function (j) {
- assert.ok(j);
-
- j.objectName = this.objectName.toString();
- j.attributes = [];
- this.attributes.forEach(function (a) {
- j.attributes.push(a.json || a);
- });
-
- return j;
- };
-
- SearchEntry.prototype._parse = function (ber) {
- assert.ok(ber);
-
- this.objectName = ber.readString();
- assert.ok(ber.readSequence());
-
- var end = ber.offset + ber.length;
- while (ber.offset < end) {
- var a = new Attribute();
- a.parse(ber);
- this.attributes.push(a);
- }
-
- return true;
- };
-
- SearchEntry.prototype._toBer = function (ber) {
- assert.ok(ber);
-
- ber.writeString(this.objectName.toString());
- ber.startSequence();
- this.attributes.forEach(function (a) {
- // This may or may not be an attribute
- ber = Attribute.toBer(a, ber);
- });
- ber.endSequence();
-
- return ber;
- };
-
-
- ///--- Exports
-
- module.exports = SearchEntry;
|