forked from mongolab/mongodb-uri-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongodb-uri.js
More file actions
291 lines (258 loc) · 8.95 KB
/
mongodb-uri.js
File metadata and controls
291 lines (258 loc) · 8.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
* Copyright (c) 2013 ObjectLabs Corporation
* Distributed under the MIT license - http://opensource.org/licenses/MIT
*/
/**
* Creates a parser.
*
* @param {Object=} options
* @constructor
*/
function MongodbUriParser(options) {
if (options && options.scheme) {
this.scheme = options.scheme;
}
}
/**
* Takes a URI of the form:
*
* mongodb://[username[:password]@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database]][?options]
*
* and returns an object of the form:
*
* {
* scheme: !String,
* username: String=,
* password: String=,
* hosts: [ { host: !String, port: Number= }, ... ],
* database: String=,
* options: Object=
* }
*
* scheme and hosts will always be present. Other fields will only be present in the result if they were
* present in the input.
*
* @param {!String} uri
* @return {Object}
*/
MongodbUriParser.prototype.parse = function parse(uri) {
var uriObject = {};
var i = uri.indexOf('://');
if (i < 0) {
throw new Error('No scheme found in URI ' + uri);
}
uriObject.scheme = uri.substring(0, i);
if (this.scheme && this.scheme !== uriObject.scheme) {
throw new Error('URI must begin with ' + this.scheme + '://');
}
var rest = uri.substring(i + 3);
i = rest.indexOf('@');
if (i >= 0) {
var credentials = rest.substring(0, i);
rest = rest.substring(i + 1);
i = credentials.indexOf(':');
if (i >= 0) {
uriObject.username = decodeURIComponent(credentials.substring(0, i));
uriObject.password = decodeURIComponent(credentials.substring(i + 1));
} else {
uriObject.username = decodeURIComponent(credentials);
}
}
i = rest.indexOf('?');
if (i >= 0) {
var options = rest.substring(i + 1);
rest = rest.substring(0, i);
uriObject.options = {};
options.split('&').forEach(function (o) {
var iEquals = o.indexOf('=');
uriObject.options[decodeURIComponent(o.substring(0, iEquals))] = decodeURIComponent(o.substring(iEquals + 1));
});
}
i = rest.indexOf('/');
if (i >= 0) {
// Make sure the database name isn't the empty string
if (i < rest.length - 1) {
uriObject.database = decodeURIComponent(rest.substring(i + 1));
}
rest = rest.substring(0, i);
}
this._parseAddress(rest, uriObject);
return uriObject;
};
/**
* Parses the address into the uriObject, mutating it.
*
* @param {!String} address
* @param {!Object} uriObject
* @private
*/
MongodbUriParser.prototype._parseAddress = function _parseAddress(address, uriObject) {
uriObject.hosts = [];
address.split(',').forEach(function (h) {
if (h.includes(':')) {
let _host = h.split(':');
if (_host.length == 2) {
// IPv4 address or hostname with port
uriObject.hosts.push({
host: decodeURIComponent(_host[0]),
port: parseInt(_host[1])
});
} else {
// IPv6 address
if (_host[0].startsWith('[')) {
if (_host[_host.length - 1].endsWith(']')) {
// IPv6 address without port
uriObject.hosts.push({ host: decodeURIComponent(_host.join(':')) });
} else if (_host[_host.length - 2].endsWith(']')) {
// IPv6 address with port
let p = _host.pop();
uriObject.hosts.push({
host: decodeURIComponent(_host.join(':')),
port: parseInt(p)
});
} else {
throw new Error(`Invalid format for IPv6 address '${h}', surounding brackets "[]" are required`);
}
} else {
throw new Error(`Invalid format for IPv6 address ${h}, surounding brackets "[]" are required`);
}
}
} else {
// IPv4 address or hostname without port
uriObject.hosts.push({ host: decodeURIComponent(h) });
}
});
};
/**
* Takes a URI object and returns a URI string of the form:
*
* mongodb://[username[:password]@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database]][?options]
*
* @param {Object=} uriObject
* @return {String}
*/
MongodbUriParser.prototype.format = function format(uriObject) {
if (!uriObject) {
return (this.scheme || 'mongodb') + '://localhost';
}
if (this.scheme && uriObject.scheme && this.scheme !== uriObject.scheme) {
throw new Error('Scheme not supported: ' + uriObject.scheme);
}
var uri = (this.scheme || uriObject.scheme || 'mongodb') + '://';
if (uriObject.username) {
uri += encodeURIComponent(uriObject.username);
// While it's not to the official spec, we allow empty passwords
if (uriObject.password) {
uri += ':' + encodeURIComponent(uriObject.password);
}
uri += '@';
}
uri += this._formatAddress(uriObject);
// While it's not to the official spec, we only put a slash if there's a database, independent of whether there are options
if (uriObject.database) {
uri += '/' + encodeURIComponent(uriObject.database);
}
if (uriObject.options) {
Object.keys(uriObject.options).forEach(function (k, i) {
uri += i === 0 ? '?' : '&';
uri += encodeURIComponent(k) + '=' + encodeURIComponent(uriObject.options[k]);
});
}
return uri;
};
/**
* Takes a URI object and returns a URI string of the form:
*
* mongodb://[username[:password]@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database]][?options]
*
* Intended for debugging. Password will be redacted and HTML entities in URI are not encoded
* @param {Object=} uriObject
* @return {String}
*/
MongodbUriParser.prototype.debug = function debug(uriObject) {
if (!uriObject) {
return (this.scheme || 'mongodb') + '://localhost';
}
if (this.scheme && uriObject.scheme && this.scheme !== uriObject.scheme) {
throw new Error('Scheme not supported: ' + uriObject.scheme);
}
var uri = (this.scheme || uriObject.scheme || 'mongodb') + '://';
if (uriObject.username) {
uri += uriObject.username;
if (uriObject.password)
uri += ':[**REDACTED**]';
uri += '@';
}
let addresses = [];
for (const h of uriObject.hosts)
addresses.push(h.port ? `${h.host}:${h.port}` : h.host);
uri += addresses.join(',');
// While it's not to the official spec, we only put a slash if there's a database, independent of whether there are options
if (uriObject.database) {
uri += '/' + uriObject.database;
}
if (uriObject.options) {
Object.keys(uriObject.options).forEach(function (k, i) {
uri += i === 0 ? '?' : '&';
uri += k + '=' + uriObject.options[k];
});
}
return uri;
};
/**
* Formats the address portion of the uriObject, returning it.
*
* @param {!Object} uriObject
* @return {String}
* @private
*/
MongodbUriParser.prototype._formatAddress = function _formatAddress(uriObject) {
var address = '';
uriObject.hosts.forEach(function (h, i) {
if (i > 0) {
address += ',';
}
address += encodeURIComponent(h.host);
if (h.port) {
address += ':' + encodeURIComponent(h.port);
}
});
return address;
};
/**
* Takes either a URI object or string and returns a Mongoose connection string. Specifically, instead of listing all
* hosts and ports in a single URI, a Mongoose connection string contains a list of URIs each with a single host and
* port pair.
*
* Useful in environments where a MongoDB URI environment variable is provided, but needs to be programmatically
* transformed into a string digestible by mongoose.connect()--for example, when deploying to a PaaS like Heroku
* using a MongoDB add-on like MongoLab.
*
* @param {!Object|String} uri
* @return {String}
*/
MongodbUriParser.prototype.formatMongoose = function formatMongoose(uri) {
var parser = this;
if (typeof uri === 'string') {
uri = parser.parse(uri);
}
if (!uri) {
return parser.format(uri);
}
var connectionString = '';
uri.hosts.forEach(function (h, i) {
if (i > 0) {
connectionString += ',';
}
// This trick is okay because format() never dynamically inspects the keys in its argument
var singleUriObject = Object.create(uri);
singleUriObject.hosts = [h];
connectionString += parser.format(singleUriObject);
});
return connectionString;
};
exports.MongodbUriParser = MongodbUriParser;
var defaultParser = new MongodbUriParser();
['parse', 'format', 'debug', 'formatMongoose'].forEach(function (f) {
exports[f] = defaultParser[f].bind(defaultParser);
});