node-ldapjs/lib/controls/control.js

62 lines
1.3 KiB
JavaScript
Raw Normal View History

2011-08-04 20:32:01 +00:00
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
var assert = require('assert-plus')
2011-08-04 20:32:01 +00:00
// var asn1 = require('asn1')
2011-08-04 20:32:01 +00:00
// var Protocol = require('../protocol')
2011-08-04 20:32:01 +00:00
/// --- Globals
// var Ber = asn1.Ber
/// --- API
2011-08-04 20:32:01 +00:00
function Control (options) {
assert.optionalObject(options)
options = options || {}
assert.optionalString(options.type)
assert.optionalBool(options.criticality)
if (options.value) {
assert.buffer(options.value)
2011-08-04 20:32:01 +00:00
}
this.type = options.type || ''
this.criticality = options.critical || options.criticality || false
this.value = options.value || null
2011-08-04 20:32:01 +00:00
}
Object.defineProperties(Control.prototype, {
json: {
get: function getJson () {
var obj = {
controlType: this.type,
criticality: this.criticality,
controlValue: this.value
}
return (typeof (this._json) === 'function' ? this._json(obj) : obj)
}
}
})
2011-08-04 20:32:01 +00:00
Control.prototype.toBer = function toBer (ber) {
assert.ok(ber)
2011-09-16 16:06:07 +00:00
ber.startSequence()
ber.writeString(this.type || '')
ber.writeBoolean(this.criticality)
if (typeof (this._toBer) === 'function') {
this._toBer(ber)
} else {
if (this.value) { ber.writeString(this.value) }
}
ber.endSequence()
}
Control.prototype.toString = function toString () {
return this.json
}
/// --- Exports
module.exports = Control