-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathrename.ts
51 lines (44 loc) · 1.74 KB
/
rename.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { Document } from '../bson';
import { Collection } from '../collection';
import type { Server } from '../sdam/server';
import type { ClientSession } from '../sessions';
import { checkCollectionName, MongoDBNamespace } from '../utils';
import { CommandOperation, type CommandOperationOptions } from './command';
import { Aspect, defineAspects } from './operation';
/** @public */
export interface RenameOptions extends CommandOperationOptions {
/** Drop the target name collection if it previously exists. */
dropTarget?: boolean;
/** Unclear */
new_collection?: boolean;
}
/** @internal */
export class RenameOperation extends CommandOperation<Document> {
constructor(
public collection: Collection,
public newName: string,
public override options: RenameOptions
) {
checkCollectionName(newName);
super(collection, options);
this.ns = new MongoDBNamespace('admin', '$cmd');
}
override async execute(server: Server, session: ClientSession | undefined): Promise<Collection> {
// Build the command
const renameCollection = this.collection.namespace;
const toCollection = this.collection.s.namespace.withCollection(this.newName).toString();
const dropTarget =
typeof this.options.dropTarget === 'boolean' ? this.options.dropTarget : false;
const command = {
renameCollection: renameCollection,
to: toCollection,
dropTarget: dropTarget
};
await super.executeCommand(server, session, command);
return new Collection(this.collection.s.db, this.newName, this.collection.s.options);
}
protected executeCallback(_server: any, _session: any, _callback: any): void {
throw new Error('Method not implemented.');
}
}
defineAspects(RenameOperation, [Aspect.WRITE_OPERATION]);