import { Aspect, defineAspects } from './operation'; import { CommandOperation, CommandOperationOptions } from './command'; import type { Callback } from '../utils'; import type { Server } from '../sdam/server'; import type { Db } from '../db'; import type { ClientSession } from '../sessions'; /** @public */ export type RemoveUserOptions = CommandOperationOptions; /** @internal */ export class RemoveUserOperation extends CommandOperation { options: RemoveUserOptions; username: string; constructor(db: Db, username: string, options: RemoveUserOptions) { super(db, options); this.options = options; this.username = username; } execute(server: Server, session: ClientSession, callback: Callback): void { super.executeCommand(server, session, { dropUser: this.username }, err => { callback(err, err ? false : true); }); } } defineAspects(RemoveUserOperation, [Aspect.WRITE_OPERATION]);