Commit
This commit is contained in:
commit
d1c8cae2c1
1417 changed files with 326736 additions and 0 deletions
63
node_modules/mongodb-connection-string-url/lib/index.d.ts
generated
vendored
Normal file
63
node_modules/mongodb-connection-string-url/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
import { URL } from 'whatwg-url';
|
||||
import { redactConnectionString, ConnectionStringRedactionOptions } from './redact';
|
||||
export { redactConnectionString, ConnectionStringRedactionOptions };
|
||||
declare class CaseInsensitiveMap<K extends string = string> extends Map<K, string> {
|
||||
delete(name: K): boolean;
|
||||
get(name: K): string | undefined;
|
||||
has(name: K): boolean;
|
||||
set(name: K, value: any): this;
|
||||
_normalizeKey(name: any): K;
|
||||
}
|
||||
declare abstract class URLWithoutHost extends URL {
|
||||
abstract get host(): never;
|
||||
abstract set host(value: never);
|
||||
abstract get hostname(): never;
|
||||
abstract set hostname(value: never);
|
||||
abstract get port(): never;
|
||||
abstract set port(value: never);
|
||||
abstract get href(): string;
|
||||
abstract set href(value: string);
|
||||
}
|
||||
export interface ConnectionStringParsingOptions {
|
||||
looseValidation?: boolean;
|
||||
}
|
||||
export declare class ConnectionString extends URLWithoutHost {
|
||||
_hosts: string[];
|
||||
constructor(uri: string, options?: ConnectionStringParsingOptions);
|
||||
get host(): never;
|
||||
set host(_ignored: never);
|
||||
get hostname(): never;
|
||||
set hostname(_ignored: never);
|
||||
get port(): never;
|
||||
set port(_ignored: never);
|
||||
get href(): string;
|
||||
set href(_ignored: string);
|
||||
get isSRV(): boolean;
|
||||
get hosts(): string[];
|
||||
set hosts(list: string[]);
|
||||
toString(): string;
|
||||
clone(): ConnectionString;
|
||||
redact(options?: ConnectionStringRedactionOptions): ConnectionString;
|
||||
typedSearchParams<T extends Record<string, any>>(): {
|
||||
append(name: keyof T & string, value: any): void;
|
||||
delete(name: keyof T & string): void;
|
||||
get(name: keyof T & string): string | null;
|
||||
getAll(name: keyof T & string): string[];
|
||||
has(name: keyof T & string): boolean;
|
||||
set(name: keyof T & string, value: any): void;
|
||||
keys(): IterableIterator<keyof T & string>;
|
||||
values(): IterableIterator<string>;
|
||||
entries(): IterableIterator<[keyof T & string, string]>;
|
||||
_normalizeKey(name: keyof T & string): string;
|
||||
[Symbol.iterator](): IterableIterator<[keyof T & string, string]>;
|
||||
get size(): number;
|
||||
sort(): void;
|
||||
forEach<THIS_ARG = void>(callback: (this: THIS_ARG, value: string, name: string, searchParams: any) => void, thisArg?: THIS_ARG | undefined): void;
|
||||
readonly [Symbol.toStringTag]: "URLSearchParams";
|
||||
};
|
||||
}
|
||||
export declare class CommaAndColonSeparatedRecord<K extends Record<string, unknown> = Record<string, unknown>> extends CaseInsensitiveMap<keyof K & string> {
|
||||
constructor(from?: string | null);
|
||||
toString(): string;
|
||||
}
|
||||
export default ConnectionString;
|
||||
239
node_modules/mongodb-connection-string-url/lib/index.js
generated
vendored
Normal file
239
node_modules/mongodb-connection-string-url/lib/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CommaAndColonSeparatedRecord = exports.ConnectionString = exports.redactConnectionString = void 0;
|
||||
const whatwg_url_1 = require("whatwg-url");
|
||||
const redact_1 = require("./redact");
|
||||
Object.defineProperty(exports, "redactConnectionString", { enumerable: true, get: function () { return redact_1.redactConnectionString; } });
|
||||
const DUMMY_HOSTNAME = '__this_is_a_placeholder__';
|
||||
function connectionStringHasValidScheme(connectionString) {
|
||||
return connectionString.startsWith('mongodb://') || connectionString.startsWith('mongodb+srv://');
|
||||
}
|
||||
const HOSTS_REGEX = /^(?<protocol>[^/]+):\/\/(?:(?<username>[^:@]*)(?::(?<password>[^@]*))?@)?(?<hosts>(?!:)[^/?@]*)(?<rest>.*)/;
|
||||
class CaseInsensitiveMap extends Map {
|
||||
delete(name) {
|
||||
return super.delete(this._normalizeKey(name));
|
||||
}
|
||||
get(name) {
|
||||
return super.get(this._normalizeKey(name));
|
||||
}
|
||||
has(name) {
|
||||
return super.has(this._normalizeKey(name));
|
||||
}
|
||||
set(name, value) {
|
||||
return super.set(this._normalizeKey(name), value);
|
||||
}
|
||||
_normalizeKey(name) {
|
||||
name = `${name}`;
|
||||
for (const key of this.keys()) {
|
||||
if (key.toLowerCase() === name.toLowerCase()) {
|
||||
name = key;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return name;
|
||||
}
|
||||
}
|
||||
function caseInsenstiveURLSearchParams(Ctor) {
|
||||
return class CaseInsenstiveURLSearchParams extends Ctor {
|
||||
append(name, value) {
|
||||
return super.append(this._normalizeKey(name), value);
|
||||
}
|
||||
delete(name) {
|
||||
return super.delete(this._normalizeKey(name));
|
||||
}
|
||||
get(name) {
|
||||
return super.get(this._normalizeKey(name));
|
||||
}
|
||||
getAll(name) {
|
||||
return super.getAll(this._normalizeKey(name));
|
||||
}
|
||||
has(name) {
|
||||
return super.has(this._normalizeKey(name));
|
||||
}
|
||||
set(name, value) {
|
||||
return super.set(this._normalizeKey(name), value);
|
||||
}
|
||||
keys() {
|
||||
return super.keys();
|
||||
}
|
||||
values() {
|
||||
return super.values();
|
||||
}
|
||||
entries() {
|
||||
return super.entries();
|
||||
}
|
||||
[Symbol.iterator]() {
|
||||
return super[Symbol.iterator]();
|
||||
}
|
||||
_normalizeKey(name) {
|
||||
return CaseInsensitiveMap.prototype._normalizeKey.call(this, name);
|
||||
}
|
||||
};
|
||||
}
|
||||
class URLWithoutHost extends whatwg_url_1.URL {
|
||||
}
|
||||
class MongoParseError extends Error {
|
||||
get name() {
|
||||
return 'MongoParseError';
|
||||
}
|
||||
}
|
||||
class ConnectionString extends URLWithoutHost {
|
||||
_hosts;
|
||||
constructor(uri, options = {}) {
|
||||
const { looseValidation } = options;
|
||||
if (!looseValidation && !connectionStringHasValidScheme(uri)) {
|
||||
throw new MongoParseError('Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://"');
|
||||
}
|
||||
const match = uri.match(HOSTS_REGEX);
|
||||
if (!match) {
|
||||
throw new MongoParseError(`Invalid connection string "${uri}"`);
|
||||
}
|
||||
const { protocol, username, password, hosts, rest } = match.groups ?? {};
|
||||
if (!looseValidation) {
|
||||
if (!protocol || !hosts) {
|
||||
throw new MongoParseError(`Protocol and host list are required in "${uri}"`);
|
||||
}
|
||||
try {
|
||||
decodeURIComponent(username ?? '');
|
||||
decodeURIComponent(password ?? '');
|
||||
}
|
||||
catch (err) {
|
||||
throw new MongoParseError(err.message);
|
||||
}
|
||||
const illegalCharacters = /[:/?#[\]@]/gi;
|
||||
if (username?.match(illegalCharacters)) {
|
||||
throw new MongoParseError(`Username contains unescaped characters ${username}`);
|
||||
}
|
||||
if (!username || !password) {
|
||||
const uriWithoutProtocol = uri.replace(`${protocol}://`, '');
|
||||
if (uriWithoutProtocol.startsWith('@') || uriWithoutProtocol.startsWith(':')) {
|
||||
throw new MongoParseError('URI contained empty userinfo section');
|
||||
}
|
||||
}
|
||||
if (password?.match(illegalCharacters)) {
|
||||
throw new MongoParseError('Password contains unescaped characters');
|
||||
}
|
||||
}
|
||||
let authString = '';
|
||||
if (typeof username === 'string')
|
||||
authString += username;
|
||||
if (typeof password === 'string')
|
||||
authString += `:${password}`;
|
||||
if (authString)
|
||||
authString += '@';
|
||||
try {
|
||||
super(`${protocol.toLowerCase()}://${authString}${DUMMY_HOSTNAME}${rest}`);
|
||||
}
|
||||
catch (err) {
|
||||
if (looseValidation) {
|
||||
new ConnectionString(uri, {
|
||||
...options,
|
||||
looseValidation: false
|
||||
});
|
||||
}
|
||||
if (typeof err.message === 'string') {
|
||||
err.message = err.message.replace(DUMMY_HOSTNAME, hosts);
|
||||
}
|
||||
throw err;
|
||||
}
|
||||
this._hosts = hosts.split(',');
|
||||
if (!looseValidation) {
|
||||
if (this.isSRV && this.hosts.length !== 1) {
|
||||
throw new MongoParseError('mongodb+srv URI cannot have multiple service names');
|
||||
}
|
||||
if (this.isSRV && this.hosts.some(host => host.includes(':'))) {
|
||||
throw new MongoParseError('mongodb+srv URI cannot have port number');
|
||||
}
|
||||
}
|
||||
if (!this.pathname) {
|
||||
this.pathname = '/';
|
||||
}
|
||||
Object.setPrototypeOf(this.searchParams, caseInsenstiveURLSearchParams(this.searchParams.constructor).prototype);
|
||||
}
|
||||
get host() {
|
||||
return DUMMY_HOSTNAME;
|
||||
}
|
||||
set host(_ignored) {
|
||||
throw new Error('No single host for connection string');
|
||||
}
|
||||
get hostname() {
|
||||
return DUMMY_HOSTNAME;
|
||||
}
|
||||
set hostname(_ignored) {
|
||||
throw new Error('No single host for connection string');
|
||||
}
|
||||
get port() {
|
||||
return '';
|
||||
}
|
||||
set port(_ignored) {
|
||||
throw new Error('No single host for connection string');
|
||||
}
|
||||
get href() {
|
||||
return this.toString();
|
||||
}
|
||||
set href(_ignored) {
|
||||
throw new Error('Cannot set href for connection strings');
|
||||
}
|
||||
get isSRV() {
|
||||
return this.protocol.includes('srv');
|
||||
}
|
||||
get hosts() {
|
||||
return this._hosts;
|
||||
}
|
||||
set hosts(list) {
|
||||
this._hosts = list;
|
||||
}
|
||||
toString() {
|
||||
return super.toString().replace(DUMMY_HOSTNAME, this.hosts.join(','));
|
||||
}
|
||||
clone() {
|
||||
return new ConnectionString(this.toString(), {
|
||||
looseValidation: true
|
||||
});
|
||||
}
|
||||
redact(options) {
|
||||
return (0, redact_1.redactValidConnectionString)(this, options);
|
||||
}
|
||||
typedSearchParams() {
|
||||
const _sametype = false && new (caseInsenstiveURLSearchParams(whatwg_url_1.URLSearchParams))();
|
||||
return this.searchParams;
|
||||
}
|
||||
[Symbol.for('nodejs.util.inspect.custom')]() {
|
||||
const { href, origin, protocol, username, password, hosts, pathname, search, searchParams, hash } = this;
|
||||
return {
|
||||
href,
|
||||
origin,
|
||||
protocol,
|
||||
username,
|
||||
password,
|
||||
hosts,
|
||||
pathname,
|
||||
search,
|
||||
searchParams,
|
||||
hash
|
||||
};
|
||||
}
|
||||
}
|
||||
exports.ConnectionString = ConnectionString;
|
||||
class CommaAndColonSeparatedRecord extends CaseInsensitiveMap {
|
||||
constructor(from) {
|
||||
super();
|
||||
for (const entry of (from ?? '').split(',')) {
|
||||
if (!entry)
|
||||
continue;
|
||||
const colonIndex = entry.indexOf(':');
|
||||
if (colonIndex === -1) {
|
||||
this.set(entry, '');
|
||||
}
|
||||
else {
|
||||
this.set(entry.slice(0, colonIndex), entry.slice(colonIndex + 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
toString() {
|
||||
return [...this].map(entry => entry.join(':')).join(',');
|
||||
}
|
||||
}
|
||||
exports.CommaAndColonSeparatedRecord = CommaAndColonSeparatedRecord;
|
||||
exports.default = ConnectionString;
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
node_modules/mongodb-connection-string-url/lib/index.js.map
generated
vendored
Normal file
1
node_modules/mongodb-connection-string-url/lib/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
7
node_modules/mongodb-connection-string-url/lib/redact.d.ts
generated
vendored
Normal file
7
node_modules/mongodb-connection-string-url/lib/redact.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import ConnectionString from './index';
|
||||
export interface ConnectionStringRedactionOptions {
|
||||
redactUsernames?: boolean;
|
||||
replacementString?: string;
|
||||
}
|
||||
export declare function redactValidConnectionString(inputUrl: Readonly<ConnectionString>, options?: ConnectionStringRedactionOptions): ConnectionString;
|
||||
export declare function redactConnectionString(uri: string, options?: ConnectionStringRedactionOptions): string;
|
||||
97
node_modules/mongodb-connection-string-url/lib/redact.js
generated
vendored
Normal file
97
node_modules/mongodb-connection-string-url/lib/redact.js
generated
vendored
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
"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
|
||||
1
node_modules/mongodb-connection-string-url/lib/redact.js.map
generated
vendored
Normal file
1
node_modules/mongodb-connection-string-url/lib/redact.js.map
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"redact.js","sourceRoot":"","sources":["../src/redact.ts"],"names":[],"mappings":"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"}
|
||||
Loading…
Add table
Add a link
Reference in a new issue