forked from Mikhus/domurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
url.js
440 lines (367 loc) · 11.5 KB
/
url.js
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
/*!
* Lightweight URL manipulation with JavaScript
* This library is independent of any other libraries and has pretty simple
* interface and lightweight code-base.
* Some ideas of query string parsing had been taken from Jan Wolter
* @see http://unixpapa.com/js/querystring.html
*
* @license MIT
* @author Mykhailo Stadnyk <[email protected]>
*/
(function (ns) {
'use strict';
var RX_PROTOCOL = /^[a-z]+:/;
var RX_PORT = /[-a-z0-9]+(\.[-a-z0-9])*:\d+/i;
var RX_CREDS = /\/\/(.*?)(?::(.*?))?@/;
var RX_WIN = /^win/i;
var RX_PROTOCOL_REPL = /:$/;
var RX_QUERY_REPL = /^\?/;
var RX_HASH_REPL = /^#/;
var RX_PATH = /(.*\/)/;
var RX_PATH_FIX = /^\/{2,}/;
var RX_SINGLE_QUOTE = /'/g;
var RX_DECODE_1 = /%([ef][0-9a-f])%([89ab][0-9a-f])%([89ab][0-9a-f])/gi;
var RX_DECODE_2 = /%([cd][0-9a-f])%([89ab][0-9a-f])/gi;
var RX_DECODE_3 = /%([0-7][0-9a-f])/gi;
var RX_PLUS = /\+/g;
var RX_PATH_SEMI = /^\w:$/;
var RX_URL_TEST = /[^/#?]/;
// configure given url options
function urlConfig (url) {
var config = {
path: true,
query: true,
hash: true
};
if (!url) {
return config;
}
if (RX_PROTOCOL.test(url)) {
config.protocol = true;
config.host = true;
if (RX_PORT.test(url)) {
config.port = true;
}
if (RX_CREDS.test(url)) {
config.user = true;
config.pass = true;
}
}
return config;
}
var isNode = typeof window === 'undefined' &&
typeof global !== 'undefined' &&
typeof require === 'function';
// Trick to bypass Webpack's require at compile time
var nodeRequire = isNode ? ns['require'] : null;
// mapping between what we want and <a> element properties
var map = {
protocol: 'protocol',
host: 'hostname',
port: 'port',
path: 'pathname',
query: 'search',
hash: 'hash'
};
// jscs: disable
/**
* default ports as defined by http://url.spec.whatwg.org/#default-port
* We need them to fix IE behavior, @see https://github.com/Mikhus/jsurl/issues/2
*/
// jscs: enable
var defaultPorts = {
ftp: 21,
gopher: 70,
http: 80,
https: 443,
ws: 80,
wss: 443
};
var _currNodeUrl;
function getCurrUrl() {
if (isNode) {
if (!_currNodeUrl) {
_currNodeUrl = ('file://' +
(process.platform.match(RX_WIN) ? '/' : '') +
nodeRequire('fs').realpathSync('.')
);
}
return _currNodeUrl;
} else {
return document.location.href;
}
}
function parse (self, url, absolutize) {
var link, i, auth;
if (!url) {
url = getCurrUrl();
}
if (isNode) {
link = nodeRequire('url').parse(url);
}
else {
link = document.createElement('a');
link.href = url;
}
var config = urlConfig(url);
auth = url.match(RX_CREDS) || [];
for (i in map) {
if (config[i]) {
self[i] = link[map[i]] || '';
}
else {
self[i] = '';
}
}
// fix-up some parts
self.protocol = self.protocol.replace(RX_PROTOCOL_REPL, '');
self.query = self.query.replace(RX_QUERY_REPL, '');
self.hash = decode(self.hash.replace(RX_HASH_REPL, ''));
self.user = decode(auth[1] || '');
self.pass = decode(auth[2] || '');
/* jshint ignore:start */
self.port = (
// loosely compare because port can be a string
defaultPorts[self.protocol] == self.port || self.port == 0
) ? '' : self.port; // IE fix, Android browser fix
/* jshint ignore:end */
if (!config.protocol && RX_URL_TEST.test(url.charAt(0))) {
self.path = url.split('?')[0].split('#')[0];
}
if (!config.protocol && absolutize) {
// is IE and path is relative
var base = new Url(getCurrUrl().match(RX_PATH)[0]);
var basePath = base.path.split('/');
var selfPath = self.path.split('/');
var props = ['protocol', 'user', 'pass', 'host', 'port'];
var s = props.length;
basePath.pop();
for (i = 0; i < s; i++) {
self[props[i]] = base[props[i]];
}
while (selfPath[0] === '..') { // skip all "../
basePath.pop();
selfPath.shift();
}
self.path =
(url.charAt(0) !== '/' ? basePath.join('/') : '') +
'/' + selfPath.join('/')
;
}
self.path = self.path.replace(RX_PATH_FIX, '/');
self.paths(self.paths());
self.query = new QueryString(self.query);
}
function encode (s) {
return encodeURIComponent(s).replace(RX_SINGLE_QUOTE, '%27');
}
function decode (s) {
s = s.replace(RX_PLUS, ' ');
s = s.replace(RX_DECODE_1, function (code, hex1, hex2, hex3) {
var n1 = parseInt(hex1, 16) - 0xE0;
var n2 = parseInt(hex2, 16) - 0x80;
if (n1 === 0 && n2 < 32) {
return code;
}
var n3 = parseInt(hex3, 16) - 0x80;
var n = (n1 << 12) + (n2 << 6) + n3;
if (n > 0xFFFF) {
return code;
}
return String.fromCharCode(n);
});
s = s.replace(RX_DECODE_2, function (code, hex1, hex2) {
var n1 = parseInt(hex1, 16) - 0xC0;
if (n1 < 2) {
return code;
}
var n2 = parseInt(hex2, 16) - 0x80;
return String.fromCharCode((n1 << 6) + n2);
});
return s.replace(RX_DECODE_3, function (code, hex) {
return String.fromCharCode(parseInt(hex, 16));
});
}
/**
* Class QueryString
*
* @param {string} qs - string representation of QueryString
* @constructor
*/
function QueryString (qs) {
var parts = qs.split('&');
for (var i = 0, s = parts.length; i < s; i++) {
var keyVal = parts[i].split('=');
var key = decodeURIComponent(keyVal[0].replace(RX_PLUS, ' '));
if (!key) {
continue;
}
var value = keyVal[1] !== undefined ? decode(keyVal[1]) : null;
if (this[key] === undefined) {
this[key] = value;
} else {
if (!(this[key] instanceof Array)) {
this[key] = [this[key]];
}
this[key].push(value);
}
}
}
/**
* Converts QueryString object back to string representation
*
* @returns {string}
*/
QueryString.prototype.toString = function () {
var s = '';
var e = encode;
var i, ii;
for (i in this) {
var w = this[i];
if (w instanceof Function || w === undefined) {
continue;
}
if (w instanceof Array) {
var len = w.length;
if (!len) {
// Parameter is an empty array, so treat as
// an empty argument
s += (s ? '&' : '') + e(i) + '=';
continue;
}
for (ii = 0; ii < len; ii++) {
var v = w[ii];
if (v === undefined) {
continue;
}
s += s ? '&' : '';
s += e(i) + (v === null
? ''
: '=' + e(v));
}
continue;
}
// Plain value
s += s ? '&' : '';
s += e(i) + (w === null ? '' : '=' + e(w));
}
return s;
};
/**
* Class Url
*
* @param {string} [url] - string URL representation
* @param {boolean} [noTransform] - do not transform to absolute URL
* @constructor
*/
function Url (url, noTransform) {
parse(this, url, !noTransform);
}
/**
* Clears QueryString, making it contain no params at all
*
* @returns {Url}
*/
Url.prototype.clearQuery = function () {
for (var key in this.query) {
if (!(this.query[key] instanceof Function)) {
delete this.query[key];
}
}
return this;
};
/**
* Returns total number of parameters in QueryString
*
* @returns {number}
*/
Url.prototype.queryLength = function () {
var count = 0;
for (var key in this.query) {
if (!(this.query[key] instanceof Function)) {
count++;
}
}
return count;
};
/**
* Returns true if QueryString contains no parameters, false otherwise
*
* @returns {boolean}
*/
Url.prototype.isEmptyQuery = function () {
return this.queryLength() === 0;
};
/**
*
* @param {Array} [paths] - an array pf path parts (if given will modify
* Url.path property
* @returns {Array} - an array representation of the Url.path property
*/
Url.prototype.paths = function (paths) {
var prefix = '';
var i = 0;
var s;
if (paths && paths.length && paths + '' !== paths) {
if (this.isAbsolute()) {
prefix = '/';
}
for (s = paths.length; i < s; i++) {
paths[i] = !i && RX_PATH_SEMI.test(paths[i])
? paths[i]
: encode(paths[i]);
}
this.path = prefix + paths.join('/');
}
paths = (this.path.charAt(0) === '/' ?
this.path.slice(1) : this.path).split('/');
for (i = 0, s = paths.length; i < s; i++) {
paths[i] = decode(paths[i]);
}
return paths;
};
/**
* Performs URL-specific encoding of the given string
*
* @method Url#encode
* @param {string} s - string to encode
* @returns {string}
*/
Url.prototype.encode = encode;
/**
* Performs URL-specific decoding of the given encoded string
*
* @method Url#decode
* @param {string} s - string to decode
* @returns {string}
*/
Url.prototype.decode = decode;
/**
* Checks if current URL is an absolute resource locator (globally absolute
* or absolute path to current server)
*
* @returns {boolean}
*/
Url.prototype.isAbsolute = function () {
return this.protocol || this.path.charAt(0) === '/';
};
/**
* Returns string representation of current Url object
*
* @returns {string}
*/
Url.prototype.toString = function () {
return (
(this.protocol && (this.protocol + '://')) +
(this.user && (
encode(this.user) + (this.pass && (':' + encode(this.pass))
) + '@')) +
(this.host && this.host) +
(this.port && (':' + this.port)) +
(this.path && this.path) +
(this.query.toString() && ('?' + this.query)) +
(this.hash && ('#' + encode(this.hash)))
);
};
ns[ns.exports ? 'exports' : 'Url'] = Url;
}(typeof module !== 'undefined' && module.exports ? module : window));