Mongo-Node/node_modules/mongodb-connection-string-url/lib/redact.js
2025-11-21 09:23:11 +01:00

97 lines
No EOL
3.9 KiB
JavaScript

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.redactValidConnectionString = redactValidConnectionString;
exports.redactConnectionString = redactConnectionString;
const index_1 = __importStar(require("./index"));
function redactValidConnectionString(inputUrl, options) {
const url = inputUrl.clone();
const replacementString = options?.replacementString ?? '_credentials_';
const redactUsernames = options?.redactUsernames ?? true;
if ((url.username || url.password) && redactUsernames) {
url.username = replacementString;
url.password = '';
}
else if (url.password) {
url.password = replacementString;
}
if (url.searchParams.has('authMechanismProperties')) {
const props = new index_1.CommaAndColonSeparatedRecord(url.searchParams.get('authMechanismProperties'));
if (props.get('AWS_SESSION_TOKEN')) {
props.set('AWS_SESSION_TOKEN', replacementString);
url.searchParams.set('authMechanismProperties', props.toString());
}
}
if (url.searchParams.has('tlsCertificateKeyFilePassword')) {
url.searchParams.set('tlsCertificateKeyFilePassword', replacementString);
}
if (url.searchParams.has('proxyUsername') && redactUsernames) {
url.searchParams.set('proxyUsername', replacementString);
}
if (url.searchParams.has('proxyPassword')) {
url.searchParams.set('proxyPassword', replacementString);
}
return url;
}
function redactConnectionString(uri, options) {
const replacementString = options?.replacementString ?? '<credentials>';
const redactUsernames = options?.redactUsernames ?? true;
let parsed;
try {
parsed = new index_1.default(uri);
}
catch {
}
if (parsed) {
options = { ...options, replacementString: '___credentials___' };
return parsed
.redact(options)
.toString()
.replace(/___credentials___/g, replacementString);
}
const R = replacementString;
const replacements = [
uri => uri.replace(redactUsernames ? /(\/\/)(.*)(@)/g : /(\/\/[^@]*:)(.*)(@)/g, `$1${R}$3`),
uri => uri.replace(/(AWS_SESSION_TOKEN(:|%3A))([^,&]+)/gi, `$1${R}`),
uri => uri.replace(/(tlsCertificateKeyFilePassword=)([^&]+)/gi, `$1${R}`),
uri => (redactUsernames ? uri.replace(/(proxyUsername=)([^&]+)/gi, `$1${R}`) : uri),
uri => uri.replace(/(proxyPassword=)([^&]+)/gi, `$1${R}`)
];
for (const replacer of replacements) {
uri = replacer(uri);
}
return uri;
}
//# sourceMappingURL=redact.js.map