Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/mongodb/lib/cmap/auth/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthProvider = exports.AuthContext = void 0; const error_1 = require("../../error"); /** * Context used during authentication * @internal */ class AuthContext { constructor(connection, credentials, options) { /** If the context is for reauthentication. */ this.reauthenticating = false; this.connection = connection; this.credentials = credentials; this.options = options; } } exports.AuthContext = AuthContext; class AuthProvider { /** * Prepare the handshake document before the initial handshake. * * @param handshakeDoc - The document used for the initial handshake on a connection * @param authContext - Context for authentication flow */ async prepare(handshakeDoc, _authContext) { return handshakeDoc; } /** * Reauthenticate. * @param context - The shared auth context. */ async reauth(context) { if (context.reauthenticating) { throw new error_1.MongoRuntimeError('Reauthentication already in progress.'); } try { context.reauthenticating = true; await this.auth(context); } finally { context.reauthenticating = false; } } } exports.AuthProvider = AuthProvider; //# sourceMappingURL=auth_provider.js.map