node-ldapjs/lib/messages/compare_request.js

75 lines
1.6 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')
var util = require('util')
2011-08-04 20:32:01 +00:00
var LDAPMessage = require('./message')
var Protocol = require('../protocol')
var lassert = require('../assert')
/// --- API
function CompareRequest (options) {
options = options || {}
assert.object(options)
assert.optionalString(options.attribute)
assert.optionalString(options.value)
lassert.optionalStringDN(options.entry)
2011-08-04 20:32:01 +00:00
options.protocolOp = Protocol.LDAP_REQ_COMPARE
LDAPMessage.call(this, options)
2011-08-04 20:32:01 +00:00
this.entry = options.entry || null
this.attribute = options.attribute || ''
this.value = options.value || ''
2011-08-04 20:32:01 +00:00
}
util.inherits(CompareRequest, LDAPMessage)
Object.defineProperties(CompareRequest.prototype, {
type: {
get: function getType () { return 'CompareRequest' },
configurable: false
},
_dn: {
get: function getDN () { return this.entry },
configurable: false
}
})
2011-08-04 20:32:01 +00:00
CompareRequest.prototype._parse = function (ber) {
assert.ok(ber)
2011-08-04 20:32:01 +00:00
this.entry = ber.readString()
2011-08-04 20:32:01 +00:00
ber.readSequence()
this.attribute = ber.readString().toLowerCase()
this.value = ber.readString()
2011-08-04 20:32:01 +00:00
return true
}
2011-08-04 20:32:01 +00:00
CompareRequest.prototype._toBer = function (ber) {
assert.ok(ber)
2011-08-04 20:32:01 +00:00
ber.writeString(this.entry.toString())
ber.startSequence()
ber.writeString(this.attribute)
ber.writeString(this.value)
ber.endSequence()
2011-08-04 20:32:01 +00:00
return ber
}
2011-08-04 20:32:01 +00:00
CompareRequest.prototype._json = function (j) {
assert.ok(j)
2011-08-04 20:32:01 +00:00
j.entry = this.entry.toString()
j.attribute = this.attribute
j.value = this.value
return j
}
/// --- Exports
module.exports = CompareRequest