Server IP : 162.213.251.212 / Your IP : 18.222.166.45 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/needapair.com/node_modules/mongodb/src/operations/ |
Upload File : |
import type { Document } from '../bson'; import { Collection } from '../collection'; import type { Server } from '../sdam/server'; import type { ClientSession } from '../sessions'; import { 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 ) { super(collection, options); this.ns = new MongoDBNamespace('admin', '$cmd'); } override get commandName(): string { return 'renameCollection' as const; } 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); } } defineAspects(RenameOperation, [Aspect.WRITE_OPERATION]);