1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- "use strict";
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
- }) : (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 (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.redactConnectionString = exports.redactValidConnectionString = void 0;
- const index_1 = __importStar(require("./index"));
- function redactValidConnectionString(inputUrl, options) {
- var _a, _b;
- const url = inputUrl.clone();
- const replacementString = (_a = options === null || options === void 0 ? void 0 : options.replacementString) !== null && _a !== void 0 ? _a : '_credentials_';
- const redactUsernames = (_b = options === null || options === void 0 ? void 0 : options.redactUsernames) !== null && _b !== void 0 ? _b : 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;
- }
- exports.redactValidConnectionString = redactValidConnectionString;
- function redactConnectionString(uri, options) {
- var _a, _b;
- const replacementString = (_a = options === null || options === void 0 ? void 0 : options.replacementString) !== null && _a !== void 0 ? _a : '<credentials>';
- const redactUsernames = (_b = options === null || options === void 0 ? void 0 : options.redactUsernames) !== null && _b !== void 0 ? _b : true;
- let parsed;
- try {
- parsed = new index_1.default(uri);
- }
- catch (_c) { }
- if (parsed) {
- options = { ...options, replacementString: '___credentials___' };
- return parsed.redact(options).toString().replace(/___credentials___/g, replacementString);
- }
- const regexes = [
- redactUsernames ? /(?<=\/\/)(.*)(?=@)/g : /(?<=\/\/[^@]+:)(.*)(?=@)/g,
- /(?<=AWS_SESSION_TOKEN(:|%3A))([^,&]+)/gi,
- /(?<=tlsCertificateKeyFilePassword=)([^&]+)/gi,
- redactUsernames ? /(?<=proxyUsername=)([^&]+)/gi : null,
- /(?<=proxyPassword=)([^&]+)/gi
- ];
- for (const r of regexes) {
- if (r !== null) {
- uri = uri.replace(r, replacementString);
- }
- }
- return uri;
- }
- exports.redactConnectionString = redactConnectionString;
- //# sourceMappingURL=redact.js.map
|