-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl.ts
1294 lines (1158 loc) · 43.5 KB
/
url.ts
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* URL utilities.
*/
import '#@initialize.ts';
import { $fnꓺmemo } from '#@standalone/index.ts';
import { $app, $env, $is, $obj, $str, type $type } from '#index.ts';
/**
* Defines types.
*/
export type CurrentSchemeOptions = { withMark?: boolean };
export type CurrentHostOptions = { withPort?: boolean };
export type CurrentRootHostOptions = { withPort?: boolean };
export type CurrentQueryOptions = { withMark?: boolean };
export type CurrentHashOptions = { withMark?: boolean };
export type RootHostOptions = { withPort?: boolean };
export type ParseOptions = { throwOnError?: boolean };
export type TryParseOptions = Omit<ParseOptions, 'throwOnError'>;
export type AddQueryVarOptions = { replaceExisting?: boolean };
export type QueryVars = { [x: string]: string };
/* ---
* Local utilities.
*/
/**
* Defines standardized local hosts by name.
*
* These can be used as hostnames, or as TLDs; e.g., `local`, `x.local`.
*
* @see https://en.wikipedia.org/wiki/Special-use_domain_name
*/
export const stdLocalHostnames = (): string[] => ['local', 'localhost'];
/**
* Defines local host regular expression patterns.
*
* These match up with the IP/DNS addresses in our SSL certificates for local development.
* `@clevercanyon/skeleton/dev/.files/bin/ssl-certs/generate.bash` has the complete list for review.
*/
export const localHostPatterns = $fnꓺmemo((): Readonly<RegExp[]> => {
return $obj.freeze([
...new Set([
/^\[::\]$/u, // IPv6 null address.
/^0\.0\.0\.0$/u, // IPv4 null address.
/^\[::1\]$/u, // IPv6 loopback address.
/^127\.0\.0\.1$/u, // IPv4 loopback address.
// These can be used as hostnames, or as TLDs; e.g., `local`, `x.local`.
...stdLocalHostnames().map((name) => new RegExp('^(?:.+\\.)?' + $str.escRegExp(name) + '$', 'ui')),
// These can only be used as TLDs; e.g., `x.mac`, `x.loc`, etc.
...['mac', 'loc', 'dkr', 'vm'].map((name) => new RegExp('^(?:.+\\.)' + $str.escRegExp(name) + '$', 'ui')),
]),
]);
});
/* ---
* Current utilities.
*/
/**
* Gets current URL.
*
* @returns Current; i.e., a full URL.
*
* @requiredEnv web
*/
export const current = (): string => {
return location.href;
};
/**
* Gets current referrer.
*
* @returns Current referrer.
*
* @requiredEnv web
*/
export const currentReferrer = (): string => {
return document.referrer;
};
/**
* Gets current scheme.
*
* @param options Optional (all optional); {@see CurrentSchemeOptions}.
*
* @returns Current scheme. By default, without the `:` mark.
*
* @requiredEnv web
*/
export const currentScheme = $fnꓺmemo({ deep: true, maxSize: 2 }, (options?: CurrentSchemeOptions): string => {
const opts = $obj.defaults({}, options || {}, { withMark: false }) as Required<CurrentSchemeOptions>;
return opts.withMark ? location.protocol : location.protocol.slice(0, -1);
});
/**
* Gets current host with or without port number.
*
* @param options Options (all optional); {@see CurrentHostOptions}.
*
* @returns Current host. By default, with possible port number.
*
* @requiredEnv web
*/
export const currentHost = $fnꓺmemo({ deep: true, maxSize: 2 }, (options?: CurrentHostOptions): string => {
const opts = $obj.defaults({}, options || {}, { withPort: true }) as Required<CurrentHostOptions>;
return opts.withPort ? location.host : location.hostname;
});
/**
* Gets current root host with or without port number.
*
* @param options Options (all optional); {@see CurrentRootHostOptions}.
*
* @returns Current root host. By default, with possible port number.
*
* @requiredEnv web
*/
export const currentRootHost = $fnꓺmemo({ deep: true, maxSize: 2 }, (options?: CurrentRootHostOptions): string => {
const opts = $obj.defaults({}, options || {}, { withPort: true }) as Required<CurrentRootHostOptions>;
return rootHost(currentHost(), { withPort: opts.withPort });
});
/**
* Gets current port.
*
* @returns Current port.
*
* @requiredEnv web
*/
export const currentPort = $fnꓺmemo((): string => {
return location.port;
});
/**
* Gets current path.
*
* @returns Current path.
*
* @requiredEnv web
*/
export const currentPath = (): string => {
return location.pathname;
};
/**
* Gets current subpath.
*
* @returns Current subpath.
*
* @requiredEnv web
*/
export const currentSubpath = (): string => {
return location.pathname.replace(/^\/+|\/+$/gu, '');
};
/**
* Gets current query.
*
* @param options Options (all optional); {@see CurrentQueryOptions}.
*
* @returns Current query. By default, w/o leading `?` mark.
*
* @requiredEnv web
*/
export const currentQuery = (options?: CurrentQueryOptions): string => {
const opts = $obj.defaults({}, options || {}, { withMark: false }) as Required<CurrentQueryOptions>;
return opts.withMark ? location.search : location.search.slice(1);
};
/**
* Gets current hash.
*
* @param options Options (all optional); {@see CurrentHashOptions}.
*
* @returns Current hash. By default, w/o leading `#` mark.
*
* @requiredEnv web
*/
export const currentHash = (options?: CurrentHashOptions): string => {
const opts = $obj.defaults({}, options || {}, { withMark: false }) as Required<CurrentHashOptions>;
return opts.withMark ? location.hash : location.hash.slice(1);
};
/**
* Gets current path & query.
*
* @returns Current path & query.
*
* @requiredEnv web
*/
export const currentPathQuery = (): string => {
return location.pathname + location.search;
};
/**
* Gets current path, query, and hash.
*
* @returns Current path, query, and hash.
*
* @requiredEnv web
*/
export const currentPathQueryHash = (): string => {
return location.pathname + location.search + location.hash;
};
/* ---
* Current base utilities.
*/
/**
* Gets current base URL.
*
* @returns Current base URL; i.e., a full URL.
*
* @requiredEnv web
*/
export const currentBase = (): string => {
return document.baseURI;
};
/**
* Gets current base path.
*
* @returns Current base path.
*
* @requiredEnv web
*/
export const currentBasePath = (): string => {
return parse(currentBase()).pathname;
};
/**
* Gets URL from current base.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from current base.
*
* @requiredEnv web
*/
export const fromCurrentBase = (parseable: $type.URL | string): string => {
return parse(parseable, currentBase()).toString();
};
/**
* Gets root-relative path from current base.
*
* @param parseable Parseable URL or string.
*
* @returns `[/base]/path?query#hash` from current base.
*
* @requiredEnv web
*/
export const pathFromCurrentBase = (parseable: $type.URL | string): string => {
return toPathQueryHash(fromCurrentBase(parseable));
};
/**
* Adds current base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string with current base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @requiredEnv web
*
* @see addBasePath()
*/
export function addCurrentBasePath(parseable: $type.URL): $type.URL;
export function addCurrentBasePath(parseable: string): string;
export function addCurrentBasePath(parseable: $type.URL | string): $type.URL | string {
return addBasePath(parseable, currentBase());
}
/**
* Removes current base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string without current base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @requiredEnv web
*
* @see removeBasePath()
*/
export function removeCurrentBasePath(parseable: $type.URL): $type.URL;
export function removeCurrentBasePath(parseable: string): string;
export function removeCurrentBasePath(parseable: $type.URL | string): $type.URL | string {
return removeBasePath(parseable, currentBase());
}
/* ---
* App base utilities.
*/
/**
* Gets app’s base URL.
*
* @returns App’s base URL.
*
* @see $app.baseURL()
*/
/**
* Gets app’s base path.
*
* @returns App’s base path.
*/
export const appBasePath = $fnꓺmemo((): string => {
return parse($app.baseURL()).pathname;
});
/**
* Gets URL from app’s base.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from app’s base.
*/
export const fromAppBase = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return parse(parseable, $app.baseURL()).toString();
});
/**
* Gets root-relative path from app’s base.
*
* @param parseable Parseable URL or string.
*
* @returns `/base/path?query#hash` from app’s base.
*/
export const pathFromAppBase = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return toPathQueryHash(fromAppBase(parseable));
});
/**
* Adds app’s base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string with app’s base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see addBasePath()
*/
function _addAppBasePath(parseable: $type.URL): Readonly<$type.URL>;
function _addAppBasePath(parseable: string): string;
function _addAppBasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return addBasePath(parseable, $app.baseURL());
}
export const addAppBasePath = $fnꓺmemo(24, _addAppBasePath);
/**
* Removes app’s base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string without app’s base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see removeBasePath()
*/
function _removeAppBasePath(parseable: $type.URL): Readonly<$type.URL>;
function _removeAppBasePath(parseable: string): string;
function _removeAppBasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return removeBasePath(parseable, $app.baseURL());
}
export const removeAppBasePath = $fnꓺmemo(24, _removeAppBasePath);
/* ---
* App root R2 origin utilities.
*/
/**
* Gets app’s root R2 origin URL.
*
* @returns App’s root R2 origin URL.
*
* @see $app.rootR2OriginURL()
*/
/**
* Gets URL from app’s root R2 origin.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from app’s root R2 origin.
*/
export const fromAppRootR2Origin = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return parse(parseable, $app.rootR2OriginURL() + '/').toString();
});
/**
* Gets root-relative path from app’s root R2 origin.
*
* @param parseable Parseable URL or string.
*
* @returns `/base/path?query#hash` from app’s root R2 origin.
*/
export const pathFromAppRootR2Origin = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return toPathQueryHash(fromAppRootR2Origin(parseable));
});
/* ---
* App root R2 base utilities.
*/
/**
* Gets app’s root R2 base URL.
*
* @returns App’s root R2 base URL.
*
* @see $app.rootR2BaseURL()
*/
/**
* Gets app’s root R2 base path.
*
* @returns App’s root R2 base path.
*/
export const appRootR2BasePath = $fnꓺmemo((): string => {
return parse($app.rootR2BaseURL()).pathname;
});
/**
* Gets URL from app’s root R2 base.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from app’s root R2 base.
*/
export const fromAppRootR2Base = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return parse(parseable, $app.rootR2BaseURL()).toString();
});
/**
* Gets root-relative path from app’s root R2 base.
*
* @param parseable Parseable URL or string.
*
* @returns `/base/path?query#hash` from app’s root R2 base.
*/
export const pathFromAppRootR2Base = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return toPathQueryHash(fromAppRootR2Base(parseable));
});
/**
* Adds app’s root R2 base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string with app’s root R2 base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see addBasePath()
*/
function _addAppRootR2BasePath(parseable: $type.URL): Readonly<$type.URL>;
function _addAppRootR2BasePath(parseable: string): string;
function _addAppRootR2BasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return addBasePath(parseable, $app.rootR2BaseURL());
}
export const addAppRootR2BasePath = $fnꓺmemo(24, _addAppRootR2BasePath);
/**
* Removes app’s root R2 base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string without app’s root R2 base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see removeBasePath()
*/
function _removeAppRootR2BasePath(parseable: $type.URL): Readonly<$type.URL>;
function _removeAppRootR2BasePath(parseable: string): string;
function _removeAppRootR2BasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return removeBasePath(parseable, $app.rootR2BaseURL());
}
export const removeAppRootR2BasePath = $fnꓺmemo(24, _removeAppRootR2BasePath);
/* ---
* App R2 origin utilities.
*/
/**
* Gets app’s R2 origin URL.
*
* @returns App’s R2 origin URL.
*
* @see $app.r2OriginURL()
*/
/**
* Gets URL from app’s R2 origin.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from app’s R2 origin.
*/
export const fromAppR2Origin = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return parse(parseable, $app.r2OriginURL() + '/').toString();
});
/**
* Gets root-relative path from app’s R2 origin.
*
* @param parseable Parseable URL or string.
*
* @returns `/base/path?query#hash` from app’s R2 origin.
*/
export const pathFromAppR2Origin = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return toPathQueryHash(fromAppR2Origin(parseable));
});
/* ---
* App R2 base utilities.
*/
/**
* Gets app’s R2 base URL.
*
* @returns App’s R2 base URL.
*
* @see $app.r2BaseURL()
*/
/**
* Gets app’s R2 base path.
*
* @returns App’s R2 base path.
*/
export const appR2BasePath = $fnꓺmemo((): string => {
return parse($app.r2BaseURL()).pathname;
});
/**
* Gets URL from app’s R2 base.
*
* @param parseable Parseable URL or string.
*
* @returns A full URL from app’s R2 base.
*/
export const fromAppR2Base = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return parse(parseable, $app.r2BaseURL()).toString();
});
/**
* Gets root-relative path from app’s R2 base.
*
* @param parseable Parseable URL or string.
*
* @returns `/base/path?query#hash` from app’s R2 base.
*/
export const pathFromAppR2Base = $fnꓺmemo(24, (parseable: $type.URL | string): string => {
return toPathQueryHash(fromAppR2Base(parseable));
});
/**
* Adds app’s R2 base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string with app’s R2 base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see addBasePath()
*/
function _addAppR2BasePath(parseable: $type.URL): Readonly<$type.URL>;
function _addAppR2BasePath(parseable: string): string;
function _addAppR2BasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return addBasePath(parseable, $app.r2BaseURL());
}
export const addAppR2BasePath = $fnꓺmemo(24, _addAppR2BasePath);
/**
* Removes app’s R2 base path.
*
* @param parseable Parseable URL or string.
*
* @returns Parseable URL or string without app’s R2 base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*
* @note Unable to deep freeze a URL, but we would do so if possible.
* For now, we just declare it readonly using a TypeScript return type.
*
* @see removeBasePath()
*/
function _removeAppR2BasePath(parseable: $type.URL): Readonly<$type.URL>;
function _removeAppR2BasePath(parseable: string): string;
function _removeAppR2BasePath(parseable: $type.URL | string): Readonly<$type.URL> | string {
return removeBasePath(parseable, $app.r2BaseURL());
}
export const removeAppR2BasePath = $fnꓺmemo(24, _removeAppR2BasePath);
/* ---
* General base utilities.
*/
/**
* Adds base path.
*
* @param parseable Parseable URL or string.
* @param base Base URL with a possible base path.
*
* @returns Parseable URL or string with base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*/
export function addBasePath(parseable: $type.URL, base: $type.URL | string): $type.URL;
export function addBasePath(parseable: string, base: $type.URL | string): string;
export function addBasePath(parseable: $type.URL | string, base: $type.URL | string): $type.URL | string;
export function addBasePath(parseable: $type.URL | string, base: $type.URL | string): $type.URL | string {
base = $is.url(base) ? base : parse(base);
let baseDirPath = base.pathname; // Initialize.
const url = parse(parseable, base.origin + '/');
let pathQueryHash = toPathQueryHash(url);
const rtnURL = $is.url(parseable);
const rtnPathQueryHash = !rtnURL && !isAbsolute(parseable);
if (baseDirPath && !baseDirPath.endsWith('/')) {
// No trailing slash interpreted as file path, not a base directory.
baseDirPath = baseDirPath.replace(/\/[^/]+$/u, '/'); // One up, like {@see URL}.
// e.g., `/page.html` will reduce to `/`, leaving everything else in the final path.
// e.g., `/base/page.html` will reduce to `/base/`, leaving everything else in the final path.
}
if (!['', '/'].includes(baseDirPath) /* Saves time. */) {
pathQueryHash = $str.rTrim(baseDirPath, '/') + pathQueryHash;
}
return rtnURL ? parse(pathQueryHash, url.origin + '/') : rtnPathQueryHash ? pathQueryHash : parse(pathQueryHash, url.origin + '/').toString();
}
/**
* Removes base path.
*
* @param parseable Parseable URL or string.
* @param base Base URL with a possible base path.
*
* @returns Parseable URL or string without base path.
*
* - Returns a {@see URL} if input was a {@see URL}. A string otherwise.
*/
export function removeBasePath(parseable: $type.URL, base: $type.URL | string): $type.URL;
export function removeBasePath(parseable: string, base: $type.URL | string): string;
export function removeBasePath(parseable: $type.URL | string, base: $type.URL | string): $type.URL | string;
export function removeBasePath(parseable: $type.URL | string, base: $type.URL | string): $type.URL | string {
base = $is.url(base) ? base : parse(base);
let baseDirPath = base.pathname; // Initialize.
const url = parse(parseable, base.origin + '/');
let pathQueryHash = toPathQueryHash(url);
const rtnURL = $is.url(parseable);
const rtnPathQueryHash = !rtnURL && !isAbsolute(parseable);
if (baseDirPath && !baseDirPath.endsWith('/')) {
// No trailing slash interpreted as file path, not a base directory.
baseDirPath = baseDirPath.replace(/\/[^/]+$/u, '/'); // One up, like {@see URL}.
// e.g., `/page.html` will reduce to `/`, leaving everything else in the final path.
// e.g., `/base/page.html` will reduce to `/base/`, leaving everything else in the final path.
}
if (!['', '/'].includes(baseDirPath) /* Saves time. */) {
pathQueryHash = pathQueryHash.replace(new RegExp('^' + $str.escRegExp($str.rTrim(baseDirPath, '/')) + '(?:$|/|([?#]))', 'u'), '$1');
}
pathQueryHash = './' + $str.lTrim(pathQueryHash, '/'); // Ensures a relative path with substance; i.e., no empty string.
return rtnURL ? parse(pathQueryHash, url.origin + '/') : rtnPathQueryHash ? pathQueryHash : parse(pathQueryHash, url.origin + '/').toString();
}
/* ---
* Conditional utilities.
*/
/**
* Tests if a URL or string is absolute.
*
* @param parseable Parseable URL or string.
*
* @returns True if URL or string is absolute.
*
* @note Protocol-relative URLs are also considered absolute.
* @note Passing a full URL is allowed, but obviously it is absolute.
*/
export const isAbsolute = $fnꓺmemo(12, (parseable: $type.URL | string): boolean => {
return $is.url(parseable) || /^(?:[^:/?#\s]+:)?\/\//u.test(parseable);
});
/**
* Tests if a URL or string is protocol-relative.
*
* @param parseable Parseable URL or string.
*
* @returns True if URL or string is protocol-relative.
*
* @note Protocol-relative URLs are also considered absolute.
* @note Passing a full URL is allowed, but obviously it’s not protocol-relative.
*/
export const isProtoRelative = $fnꓺmemo(12, (parseable: $type.URL | string): boolean => {
return !$is.url(parseable) && /^\/\//u.test(parseable);
});
/**
* Tests if a URL or string is root-relative.
*
* @param parseable Parseable URL or string.
*
* @returns True if URL or string is root-relative.
*
* @note Distinction: a root-relative path is not a relative path.
* @note Passing a full URL is allowed, but obviously it’s not root-relative.
*/
export const isRootRelative = $fnꓺmemo(12, (parseable: $type.URL | string): boolean => {
return !isAbsolute(parseable) && /^\//u.test(parseable as string);
});
/**
* Tests if a URL or string is relative.
*
* @param parseable Parseable URL or string.
*
* @returns True if URL or string is relative.
*
* @note Distinction: a root-relative path is not a relative path.
* @note Passing a full URL is allowed, but obviously it’s not relative.
* @note An empty string is also considered to be relative; same as {@see URL}.
*/
export const isRelative = $fnꓺmemo(12, (parseable: $type.URL | string): boolean => {
return !isAbsolute(parseable) && !/^\//u.test(parseable as string);
});
/**
* Tests if a URL is potentially trustworthy.
*
* @param parseable Parseable URL or string.
*
* @returns True if URL is potentially trustworthy.
*
* @see https://o5p.me/9talJI for details on spec compliance.
*/
export const isPotentiallyTrustworthy = $fnꓺmemo(12, (parseable: $type.URL | string): boolean => {
if ($is.string(parseable) && ['about:blank', 'about:srcdoc', 'about:client'].includes(parseable.toLowerCase())) {
return true; // Special trustworthy cases.
}
const url = tryParse(parseable);
if (!url) return false; // Invalid URL.
if (['https:', 'wss:', 'data:', 'blob:', 'file:', 'filesystem:'].includes(url.protocol)) {
return true; // Potentially trustworthy protocols.
}
if ($str.test(rootHost(url, { withPort: false }), localHostPatterns())) {
return true; // Potentially trustworthy local hosts.
}
return false;
});
/* ---
* Root host utilities.
*/
/**
* Gets root hostname.
*
* @param host Host to parse. Optional in browser; i.e., default is {@see currentHost()}.
* @param options Options (all optional); {@see RootHostOptions}.
*
* @returns Root hostname. By default, with possible port number.
*
* @requiredEnv web -- When `host` is not given explicitly.
*/
export const rootHost = $fnꓺmemo({ deep: true, maxSize: 12 }, (host?: $type.URL | string, options?: RootHostOptions): string => {
const opts = $obj.defaults({}, options || {}, { withPort: true }) as Required<RootHostOptions>;
if (undefined === host) {
if ($env.isWeb()) {
host = currentHost();
} else throw Error('xWX6jGrg');
}
// `host` becomes a string value; see below.
let hostname: string; // Defined below.
if ($is.url(host)) {
const url = host; // As URL object.
host = url.host; // Extracts URL data.
hostname = url.hostname;
//
} else if ($str.isIPv6Host(host)) {
// e.g., `[::1]:3000`, always in brackets.
hostname = host.replace(/(\])(?::[0-9]+)$/u, '$1');
} else {
// e.g., `:3000`, following a host; e.g., name|IP.
hostname = host.replace(/:[0-9]+$/u, '');
}
host = host.toLowerCase();
hostname = hostname.toLowerCase();
if (!opts.withPort) host = hostname;
if ($str.isIPHost(host)) {
return host; // IPs don’t support subdomains.
}
const localHostnames = stdLocalHostnames(); // Once and use below.
if (localHostnames.includes(hostname) || localHostnames.find((localHostname) => hostname.endsWith('.' + localHostname))) {
// When the TLD itself has no extension; e.g., `local`, `localhost`, `foo.localhost`.
// In the case of `local`, `localhost`, these serve as hosts and also as TLDs.
return host.split('.').slice(-1).join('.');
}
return host.split('.').slice(-2).join('.');
});
/* ---
* Parsing utilities.
*/
/**
* Parses a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute. Bypass with `''` or `undefined`.
* @param options Options (all optional); {@see ParseOptions}.
*
* @returns A {@see URL} instance, else `undefined`.
*
* - On failure this throws an error, or returns `undefined`, depending on `throwOnError` option.
* - `throwOnError` defaults to `true`. {@see tryParse()} for the opposite default behavior.
*
* @note An empty string is also considered to be relative (i.e., not absolute) by {@see isRelative()}, {@see isAbsolute()}, and {@see URL}.
* @note An empty string is not accepted by {@see URL} for the `base` value, so please pass a real base, or `undefined`; e.g., by not passing one.
*
* @requiredEnv web -- When `parseable` is not given explicitly.
*/
export const parse = <Options extends ParseOptions>(
parseable?: $type.URL | string,
base?: $type.URL | string,
options?: Options, // `ParseOptions`.
): Options extends ParseOptions & { throwOnError: false } ? $type.URL | undefined : $type.URL => {
//
const opts = $obj.defaults({}, options || {}, { throwOnError: true }) as Required<ParseOptions>;
if ($is.url(parseable)) return new URL(parseable); // Simply a clone.
if (undefined === parseable) {
if ($env.isWeb()) {
parseable = current();
} else throw Error('jKgRHAUK');
}
let strURL = parseable.toString();
if (strURL && isProtoRelative(strURL)) {
const scheme = $env.isWeb() ? currentScheme() : 'https';
strURL = strURL.replace(/^\/\//u, scheme + '://');
}
let strBase = base ? base.toString() : '';
if (strBase && isProtoRelative(strBase)) {
const scheme = $env.isWeb() ? currentScheme() : 'https';
strBase = strBase.replace(/^\/\//u, scheme + '://');
}
try {
return new URL(strURL, strBase || undefined);
} catch (thrown) {
if (opts.throwOnError) throw thrown;
}
return undefined as ReturnType<typeof parse<Options>>;
};
/**
* Tries to parse a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute. Bypass with `''` or `undefined`.
* @param options Options (all optional); {@see TryParseOptions}.
*
* @returns A {@see URL} instance, else `undefined`.
*
* @someday {@see URL.canParse()} Not well supported at this time; {@see https://o5p.me/hRDw1w}.
*
* @requiredEnv web -- When `parseable` is not given explicitly.
*/
export const tryParse = (parseable?: $type.URL | string, base?: $type.URL | string, options?: TryParseOptions): $type.URL | undefined => {
return parse(parseable, base, { ...options, throwOnError: false });
};
/**
* Extracts hashless from a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute.
*
* @returns Hashless URL; i.e., without `#hash`.
*/
export const toHashless = (parseable?: $type.URL | string, base?: $type.URL | string): string => {
const url = parse(parseable, base);
url.hash = ''; // Removes hash.
return url.toString();
};
/**
* Extracts canonical from a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute.
*
* @returns Canonical URL; i.e., no trailing slash, and without `?query#hash`.
*
* - Note: This does, intentionally, leave a lone trailing slash at the root path.
*/
export const toCanonical = (parseable?: $type.URL | string, base?: $type.URL | string): string => {
const url = parse(parseable, base);
url.pathname = $str.rTrim(url.pathname, '/') || '/';
url.search = url.hash = ''; // We don’t use in canonical URLs.
return url.toString();
};
/**
* Extracts `/path` from a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute.
*
* @returns Extracted `/path`.
*/
export const toPath = (parseable?: $type.URL | string, base?: $type.URL | string): string => {
return parse(parseable, base).pathname;
};
/**
* Extracts `/path?query` from a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute.
*
* @returns Extracted `/path?query`.
*/
export const toPathQuery = (parseable?: $type.URL | string, base?: $type.URL | string): string => {
const url = parse(parseable, base); // Acquires parts to return.
return url.pathname + url.search;
};
/**
* Extracts `/path?query#hash` from a URL.
*
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.
* @param base Base URL. Required when parsing a URL that’s not absolute.
*
* @returns Extracted `/path?query#hash`.
*/
export const toPathQueryHash = (parseable?: $type.URL | string, base?: $type.URL | string): string => {
const url = parse(parseable, base); // Acquires parts to return.
return url.pathname + url.search + url.hash;
};
/* ---
* Query utilities.
*/
/**
* Gets a query variable.
*
* @param name Query variable name.
* @param parseable Parseable URL or string. Optional in browser; i.e., default is {@see current()}.