Server IP : 162.213.251.212 / Your IP : 18.220.70.133 [ 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/cmap/auth/ |
Upload File : |
import type { Document } from '../../bson'; import { MongoMissingCredentialsError } from '../../error'; import { ns } from '../../utils'; import type { HandshakeDocument } from '../connect'; import { type AuthContext, AuthProvider } from './auth_provider'; import type { MongoCredentials } from './mongo_credentials'; export class X509 extends AuthProvider { override async prepare( handshakeDoc: HandshakeDocument, authContext: AuthContext ): Promise<HandshakeDocument> { const { credentials } = authContext; if (!credentials) { throw new MongoMissingCredentialsError('AuthContext must provide credentials.'); } return { ...handshakeDoc, speculativeAuthenticate: x509AuthenticateCommand(credentials) }; } override async auth(authContext: AuthContext) { const connection = authContext.connection; const credentials = authContext.credentials; if (!credentials) { throw new MongoMissingCredentialsError('AuthContext must provide credentials.'); } const response = authContext.response; if (response?.speculativeAuthenticate) { return; } await connection.command(ns('$external.$cmd'), x509AuthenticateCommand(credentials), undefined); } } function x509AuthenticateCommand(credentials: MongoCredentials) { const command: Document = { authenticate: 1, mechanism: 'MONGODB-X509' }; if (credentials.username) { command.user = credentials.username; } return command; }