ldapts
Version:
LDAP client
57 lines (44 loc) • 1.5 kB
text/typescript
import type { BerReader } from '../ber/index.js';
import { BerWriter } from '../ber/index.js';
import type { ControlOptions } from './Control.js';
import { Control } from './Control.js';
export interface PersistentSearchValue {
changeTypes: number;
changesOnly: boolean;
returnECs: boolean;
}
export interface PersistentSearchControlOptions extends ControlOptions {
value?: PersistentSearchValue;
}
export class PersistentSearchControl extends Control {
public static type = '2.16.840.1.113730.3.4.3';
public value?: PersistentSearchValue;
public constructor(options: PersistentSearchControlOptions = {}) {
super(PersistentSearchControl.type, options);
this.value = options.value;
}
public override parseControl(reader: BerReader): void {
if (reader.readSequence()) {
const changeTypes = reader.readInt() ?? 0;
const changesOnly = reader.readBoolean() ?? false;
const returnECs = reader.readBoolean() ?? false;
this.value = {
changeTypes,
changesOnly,
returnECs,
};
}
}
public override writeControl(writer: BerWriter): void {
if (!this.value) {
return;
}
const controlWriter = new BerWriter();
controlWriter.startSequence();
controlWriter.writeInt(this.value.changeTypes);
controlWriter.writeBoolean(this.value.changesOnly);
controlWriter.writeBoolean(this.value.returnECs);
controlWriter.endSequence();
writer.writeBuffer(controlWriter.buffer, 0x04);
}
}