2011-08-04 20:32:01 +00:00
|
|
|
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
const assert = require('assert-plus')
|
|
|
|
const util = require('util')
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
const LDAPMessage = require('./message')
|
|
|
|
const Attribute = require('../attribute')
|
|
|
|
const Protocol = require('../protocol')
|
|
|
|
const lassert = require('../assert')
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
/// --- API
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
function AddRequest (options) {
|
|
|
|
options = options || {}
|
|
|
|
assert.object(options)
|
|
|
|
lassert.optionalStringDN(options.entry)
|
|
|
|
lassert.optionalArrayOfAttribute(options.attributes)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
options.protocolOp = Protocol.LDAP_REQ_ADD
|
|
|
|
LDAPMessage.call(this, options)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
this.entry = options.entry || null
|
|
|
|
this.attributes = options.attributes ? options.attributes.slice(0) : []
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
2019-08-27 21:11:49 +00:00
|
|
|
util.inherits(AddRequest, LDAPMessage)
|
2015-10-31 17:28:25 +00:00
|
|
|
Object.defineProperties(AddRequest.prototype, {
|
|
|
|
type: {
|
2019-08-27 21:11:49 +00:00
|
|
|
get: function getType () { return 'AddRequest' },
|
2015-10-31 17:28:25 +00:00
|
|
|
configurable: false
|
|
|
|
},
|
|
|
|
_dn: {
|
2019-08-27 21:11:49 +00:00
|
|
|
get: function getDN () { return this.entry },
|
2015-10-31 17:28:25 +00:00
|
|
|
configurable: false
|
|
|
|
}
|
2019-08-27 21:11:49 +00:00
|
|
|
})
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype._parse = function (ber) {
|
2019-08-27 21:11:49 +00:00
|
|
|
assert.ok(ber)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
this.entry = ber.readString()
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
ber.readSequence()
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
const end = ber.offset + ber.length
|
2011-08-04 20:32:01 +00:00
|
|
|
while (ber.offset < end) {
|
2020-10-31 21:07:32 +00:00
|
|
|
const a = new Attribute()
|
2019-08-27 21:11:49 +00:00
|
|
|
a.parse(ber)
|
|
|
|
a.type = a.type.toLowerCase()
|
2011-09-15 21:49:00 +00:00
|
|
|
if (a.type === 'objectclass') {
|
2020-10-31 21:07:32 +00:00
|
|
|
for (let i = 0; i < a.vals.length; i++) { a.vals[i] = a.vals[i].toLowerCase() }
|
2011-09-15 21:49:00 +00:00
|
|
|
}
|
2019-08-27 21:11:49 +00:00
|
|
|
this.attributes.push(a)
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
this.attributes.sort(Attribute.compare)
|
|
|
|
return true
|
|
|
|
}
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype._toBer = function (ber) {
|
2019-08-27 21:11:49 +00:00
|
|
|
assert.ok(ber)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
ber.writeString(this.entry.toString())
|
|
|
|
ber.startSequence()
|
2012-02-18 08:15:52 +00:00
|
|
|
this.attributes.forEach(function (a) {
|
2019-08-27 21:11:49 +00:00
|
|
|
a.toBer(ber)
|
|
|
|
})
|
|
|
|
ber.endSequence()
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return ber
|
|
|
|
}
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype._json = function (j) {
|
2019-08-27 21:11:49 +00:00
|
|
|
assert.ok(j)
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
j.entry = this.entry.toString()
|
|
|
|
j.attributes = []
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
this.attributes.forEach(function (a) {
|
2019-08-27 21:11:49 +00:00
|
|
|
j.attributes.push(a.json)
|
|
|
|
})
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return j
|
|
|
|
}
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype.indexOf = function (attr) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (!attr || typeof (attr) !== 'string') { throw new TypeError('attr (string) required') }
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
for (let i = 0; i < this.attributes.length; i++) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (this.attributes[i].type === attr) { return i }
|
2012-02-18 08:15:52 +00:00
|
|
|
}
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return -1
|
|
|
|
}
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype.attributeNames = function () {
|
2020-10-31 21:07:32 +00:00
|
|
|
const attrs = []
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
for (let i = 0; i < this.attributes.length; i++) { attrs.push(this.attributes[i].type.toLowerCase()) }
|
2011-08-08 15:03:00 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return attrs
|
|
|
|
}
|
2011-08-10 17:57:58 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype.getAttribute = function (name) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (!name || typeof (name) !== 'string') { throw new TypeError('attribute name (string) required') }
|
2011-08-10 17:57:58 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
name = name.toLowerCase()
|
2011-08-10 17:57:58 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
for (let i = 0; i < this.attributes.length; i++) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (this.attributes[i].type === name) { return this.attributes[i] }
|
2012-02-18 08:15:52 +00:00
|
|
|
}
|
2011-08-10 17:57:58 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return null
|
|
|
|
}
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype.addAttribute = function (attr) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (!(attr instanceof Attribute)) { throw new TypeError('attribute (Attribute) required') }
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return this.attributes.push(attr)
|
|
|
|
}
|
2011-08-12 23:37:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a "pure" JS representation of this object.
|
|
|
|
*
|
|
|
|
* An example object would look like:
|
|
|
|
*
|
|
|
|
* {
|
|
|
|
* "dn": "cn=unit, dc=test",
|
|
|
|
* "attributes": {
|
|
|
|
* "cn": ["unit", "foo"],
|
|
|
|
* "objectclass": ["top", "person"]
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* @return {Object} that looks like the above.
|
|
|
|
*/
|
2012-02-18 08:15:52 +00:00
|
|
|
AddRequest.prototype.toObject = function () {
|
2020-10-31 21:07:32 +00:00
|
|
|
const self = this
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2020-10-31 21:07:32 +00:00
|
|
|
const obj = {
|
2011-08-12 23:37:47 +00:00
|
|
|
dn: self.entry ? self.entry.toString() : '',
|
|
|
|
attributes: {}
|
2019-08-27 21:11:49 +00:00
|
|
|
}
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
if (!this.attributes || !this.attributes.length) { return obj }
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
this.attributes.forEach(function (a) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (!obj.attributes[a.type]) { obj.attributes[a.type] = [] }
|
2011-08-12 23:37:47 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
a.vals.forEach(function (v) {
|
2019-08-27 21:11:49 +00:00
|
|
|
if (obj.attributes[a.type].indexOf(v) === -1) { obj.attributes[a.type].push(v) }
|
|
|
|
})
|
|
|
|
})
|
2015-10-31 17:28:25 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
return obj
|
|
|
|
}
|
2015-10-31 17:28:25 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
/// --- Exports
|
2015-10-31 17:28:25 +00:00
|
|
|
|
2019-08-27 21:11:49 +00:00
|
|
|
module.exports = AddRequest
|