/var/www/html_us/wp-content/plugins/woocommerce/vendor/opis/uri/src/Uri.php


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
<?php
/* ============================================================================
 * Copyright 2021 Zindex Software
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============================================================================ */

namespace Opis\Uri;

use 
Opis\String\UnicodeString;

class 
Uri
{
    protected const 
URI_REGEX '`^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$`';

    protected const 
SCHEME_REGEX '`^[a-z][a-z0-9-+.]*$`i';

    protected const 
USER_OR_PASS_REGEX '`^(?:(?:%[a-f0-9]{2})+|[a-z0-9-._~!$&\'()*+,:;=]+)*$`i';

    protected const 
USERINFO_REGEX '`^(?<user>[^:]+)(?::(?<pass>.*))?$`';

    protected const 
HOST_LABEL_REGEX '`^(?:(?:%[a-f0-9]{2})+|[a-z0-9-]+)*$`i';

    protected const 
AUTHORITY_REGEX '`^(?:(?<userinfo>[^@]+)\@)?(?<host>(\[[a-f0-9:]+\]|[^:]+))(?::(?<port>\d+))?$`i';

    protected const 
PATH_REGEX '`^(?:(?:%[a-f0-9]{2})+|[a-z0-9-._~!$&\'()*+,;=:@/]+)*$`i';

    protected const 
QUERY_OR_FRAGMENT_REGEX '`^(?:(?:%[a-f0-9]{2})+|[a-z0-9-._~!$&\'"()\[\]*+,;=:@?/%]+)*$`i';

    protected array 
$components;

    protected ?
string $str null;

    
/**
     * @param array $components An array of normalized components
     */
    
public function __construct(array $components)
    {
        
$this->components $components + [
                
'scheme' => null,
                
'user' => null,
                
'pass' => null,
                
'host' => null,
                
'port' => null,
                
'path' => null,
                
'query' => null,
                
'fragment' => null,
            ];
    }

    
/**
     * @return string|null
     */
    
public function scheme(): ?string
    
{
        return 
$this->components['scheme'];
    }

    
/**
     * @return string|null
     */
    
public function user(): ?string
    
{
        return 
$this->components['user'];
    }

    
/**
     * @return string|null
     */
    
public function pass(): ?string
    
{
        return 
$this->components['pass'];
    }

    
/**
     * @return string|null
     */
    
public function userInfo(): ?string
    
{
        if (
$this->components['user'] === null) {
            return 
null;
        }

        if (
$this->components['pass'] === null) {
            return 
$this->components['user'];
        }

        return 
$this->components['user'] . ':' $this->components['pass'];
    }

    
/**
     * @return string|null
     */
    
public function host(): ?string
    
{
        return 
$this->components['host'];
    }

    
/**
     * @return int|null
     */
    
public function port(): ?int
    
{
        return 
$this->components['port'];
    }

    
/**
     * @return string|null
     */
    
public function authority(): ?string
    
{
        if (
$this->components['host'] === null) {
            return 
null;
        }

        
$authority $this->userInfo();
        if (
$authority !== null) {
            
$authority .= '@';
        }

        
$authority .= $this->components['host'];

        if (
$this->components['port'] !== null) {
            
$authority .= ':' $this->components['port'];
        }

        return 
$authority;
    }

    
/**
     * @return string|null
     */
    
public function path(): ?string
    
{
        return 
$this->components['path'];
    }

    
/**
     * @return string|null
     */
    
public function query(): ?string
    
{
        return 
$this->components['query'];
    }

    
/**
     * @return string|null
     */
    
public function fragment(): ?string
    
{
        return 
$this->components['fragment'];
    }

    
/**
     * @return array|null[]
     */
    
public function components(): array
    {
        return 
$this->components;
    }

    
/**
     * @return bool
     */
    
public function isAbsolute(): bool
    
{
        return 
$this->components['scheme'] !== null;
    }

    
/**
     * Use this URI as base to resolve the reference
     * @param static|string|array $ref
     * @param bool $normalize
     * @return $this|null
     */
    
public function resolveRef($refbool $normalize false): ?self
    
{
        
$ref self::resolveComponents($ref);
        if (
$ref === null) {
            return 
$this;
        }

        return new static(
self::mergeComponents($ref$this->components$normalize));
    }

    
/**
     * Resolve this URI reference using a base URI
     * @param static|string|array $base
     * @param bool $normalize
     * @return static
     */
    
public function resolve($basebool $normalize false): self
    
{
        if (
$this->isAbsolute()) {
            return 
$this;
        }

        
$base self::resolveComponents($base);

        if (
$base === null) {
            return 
$this;
        }

        return new static(
self::mergeComponents($this->components$base$normalize));
    }

    
/**
     * @return string
     */
    
public function __toString(): string
    
{
        if (
$this->str !== null) {
            return 
$this->str;
        }

        
$str '';

        if (
$this->components['scheme'] !== null) {
            
$str .= $this->components['scheme'] . ':';
        }

        if (
$this->components['host'] !== null) {
            
$str .= '//' $this->authority();
        }

        
$str .= $this->components['path'];

        if (
$this->components['query'] !== null) {
            
$str .= '?' $this->components['query'];
        }

        if (
$this->components['fragment'] !== null) {
            
$str .= '#' $this->components['fragment'];
        }

        return 
$this->str $str;
    }

    
/**
     * @param string $uri
     * @param bool $normalize
     * @return static|null
     */
    
public static function create(string $uribool $normalize false): ?self
    
{
        
$comp self::parseComponents($uri);
        if (!
$comp) {
            return 
null;
        }

        if (
$normalize) {
            
$comp self::normalizeComponents($comp);
        }

        return new static(
$comp);
    }

    
/**
     * Checks if the scheme contains valid chars
     * @param string $scheme
     * @return bool
     */
    
public static function isValidScheme(string $scheme): bool
    
{
        return (bool)
preg_match(self::SCHEME_REGEX$scheme);
    }

    
/**
     * Checks if user contains valid chars
     * @param string $user
     * @return bool
     */
    
public static function isValidUser(string $user): bool
    
{
        return (bool)
preg_match(self::USER_OR_PASS_REGEX$user);
    }

    
/**
     * Checks if pass contains valid chars
     * @param string $pass
     * @return bool
     */
    
public static function isValidPass(string $pass): bool
    
{
        return (bool)
preg_match(self::USER_OR_PASS_REGEX$pass);
    }

    
/**
     * @param string $userInfo
     * @return bool
     */
    
public static function isValidUserInfo(string $userInfo): bool
    
{
        
/** @var array|string $userInfo */

        
if (!preg_match(self::USERINFO_REGEX$userInfo$userInfo)) {
            return 
false;
        }

        if (!
self::isValidUser($userInfo['user'])) {
            return 
false;
        }

        if (isset(
$userInfo['pass'])) {
            return 
self::isValidPass($userInfo['pass']);
        }

        return 
true;
    }

    
/**
     * Checks if host is valid
     * @param string $host
     * @return bool
     */
    
public static function isValidHost(string $host): bool
    
{
        
// min and max length
        
if ($host === '' || isset($host[253])) {
            return 
false;
        }

        
// check ipv6
        
if ($host[0] === '[') {
            if (
$host[-1] !== ']') {
                return 
false;
            }

            return 
filter_var(
                    
substr($host1, -1),
                    
\FILTER_VALIDATE_IP,
                    
\FILTER_FLAG_IPV6
                
) !== false;
        }

        
// check ipv4
        
if (preg_match('`^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\$`'$host)) {
            return 
\filter_var($host\FILTER_VALIDATE_IP\FILTER_FLAG_IPV4) !== false;
        }

        foreach (
explode('.'$host) as $host) {
            
// empty or too long label
            
if ($host === '' || isset($host[63])) {
                return 
false;
            }
            if (
$host[0] === '-' || $host[-1] === '-') {
                return 
false;
            }
            if (!
preg_match(self::HOST_LABEL_REGEX$host)) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * Checks if the port is valid
     * @param int $port
     * @return bool
     */
    
public static function isValidPort(int $port): bool
    
{
        return 
$port >= && $port <= 65535;
    }

    
/**
     * Checks if authority contains valid chars
     * @param string $authority
     * @return bool
     */
    
public static function isValidAuthority(string $authority): bool
    
{
        if (
$authority === '') {
            return 
true;
        }

        
/** @var array|string $authority */

        
if (!preg_match(self::AUTHORITY_REGEX$authority$authority)) {
            return 
false;
        }

        if (isset(
$authority['port']) && !self::isValidPort((int)$authority['port'])) {
            return 
false;
        }

        if (isset(
$authority['userinfo']) && !self::isValidUserInfo($authority['userinfo'])) {
            return 
false;
        }

        return 
self::isValidHost($authority['host']);
    }

    
/**
     * Checks if the path contains valid chars
     * @param string $path
     * @return bool
     */
    
public static function isValidPath(string $path): bool
    
{
        return 
$path === '' || (bool)preg_match(self::PATH_REGEX$path);
    }

    
/**
     * Checks if the query string contains valid chars
     * @param string $query
     * @return bool
     */
    
public static function isValidQuery(string $query): bool
    
{
        return 
$query === '' || (bool)preg_match(self::QUERY_OR_FRAGMENT_REGEX$query);
    }

    
/**
     * Checks if the fragment contains valid chars
     * @param string $fragment
     * @return bool
     */
    
public static function isValidFragment(string $fragment): bool
    
{
        return 
$fragment === '' || (bool)preg_match(self::QUERY_OR_FRAGMENT_REGEX$fragment);
    }

    
/**
     * @param string $uri
     * @param bool $expand_authority
     * @param bool $validate
     * @return array|null
     */
    
public static function parseComponents(string $uribool $expand_authority truebool $validate true): ?array
    {
        if (!
preg_match(self::URI_REGEX$uri$uri)) {
            return 
null;
        }

        
$comp = [];

        
// scheme
        
if (isset($uri[2]) && $uri[2] !== '') {
            if (
$validate && !self::isValidScheme($uri[2])) {
                return 
null;
            }
            
$comp['scheme'] = $uri[2];
        }

        
// authority
        
if (isset($uri[4]) && isset($uri[3][0])) {
            if (
$uri[4] === '') {
                if (
$expand_authority) {
                    
$comp['host'] = '';
                } else {
                    
$comp['authority'] = '';
                }
            } elseif (
$expand_authority) {
                
$au self::parseAuthorityComponents($uri[4], $validate);
                if (
$au === null) {
                    return 
null;
                }
                
$comp += $au;
                unset(
$au);
            } else {
                if (
$validate && !self::isValidAuthority($uri[4])) {
                    return 
null;
                }
                
$comp['authority'] = $uri[4];
            }
        }

        
// path
        
if (isset($uri[5])) {
            if (
$validate && !self::isValidPath($uri[5])) {
                return 
null;
            }
            
$comp['path'] = $uri[5];
            
// not a relative uri, remove dot segments
            
if (isset($comp['scheme']) || isset($comp['authority']) || isset($comp['host'])) {
                
$comp['path'] = self::removeDotSegmentsFromPath($comp['path']);
            }
        }

        
// query
        
if (isset($uri[7]) && isset($uri[6][0])) {
            if (
$validate && !self::isValidQuery($uri[7])) {
                return 
null;
            }
            
$comp['query'] = $uri[7];
        }

        
// fragment
        
if (isset($uri[9]) && isset($uri[8][0])) {
            if (
$validate && !self::isValidFragment($uri[9])) {
                return 
null;
            }
            
$comp['fragment'] = $uri[9];
        }

        return 
$comp;
    }

    
/**
     * @param self|string|array $uri
     * @return array|null
     */
    
public static function resolveComponents($uri): ?array
    {
        if (
$uri instanceof self) {
            return 
$uri->components;
        }

        if (
is_string($uri)) {
            return 
self::parseComponents($uri);
        }

        if (
is_array($uri)) {
            if (isset(
$uri['host'])) {
                unset(
$uri['authority']);
            } elseif (isset(
$uri['authority'])) {
                
$au self::parseAuthorityComponents($uri['authority']);
                unset(
$uri['authority']);
                if (
$au !== null) {
                    unset(
$uri['user'], $uri['pass'], $uri['host'], $uri['port']);
                    
$uri += $au;
                }
            }
            return 
$uri;
        }

        return 
null;
    }

    
/**
     * @param string $authority
     * @param bool $validate
     * @return array|null
     */
    
public static function parseAuthorityComponents(string $authoritybool $validate true): ?array
    {
        
/** @var array|string $authority */

        
if (!preg_match(self::AUTHORITY_REGEX$authority$authority)) {
            return 
null;
        }

        
$comp = [];

        
// userinfo
        
if (isset($authority['userinfo']) && $authority['userinfo'] !== '') {
            if (!
preg_match(self::USERINFO_REGEX$authority['userinfo'], $ui)) {
                return 
null;
            }

            
// user
            
if ($validate && !self::isValidUser($ui['user'])) {
                return 
null;
            }
            
$comp['user'] = $ui['user'];

            
// pass
            
if (isset($ui['pass']) && $ui['pass'] !== '') {
                if (
$validate && !self::isValidPass($ui['pass'])) {
                    return 
null;
                }
                
$comp['pass'] = $ui['pass'];
            }

            unset(
$ui);
        }

        
// host
        
if ($validate && !self::isValidHost($authority['host'])) {
            return 
null;
        }
        
$comp['host'] = $authority['host'];


        
// port
        
if (isset($authority['port'])) {
            
$authority['port'] = (int)$authority['port'];
            if (!
self::isValidPort($authority['port'])) {
                return 
null;
            }
            
$comp['port'] = $authority['port'];
        }

        return 
$comp;
    }

    
/**
     * @param array $ref
     * @param array $base
     * @param bool $normalize
     * @return array
     */
    
public static function mergeComponents(array $ref, array $basebool $normalize false): array
    {
        if (isset(
$ref['scheme'])) {
            
$dest $ref;
        } else {
            
$dest = [];

            
$dest['scheme'] = $base['scheme'] ?? null;

            if (isset(
$ref['authority']) || isset($ref['host'])) {
                
$dest += $ref;
            } else {
                if (isset(
$base['authority'])) {
                    
$dest['authority'] = $base['authority'];
                } else {
                    
$dest['user'] = $base['user'] ?? null;
                    
$dest['pass'] = $base['pass'] ?? null;
                    
$dest['host'] = $base['host'] ?? null;
                    
$dest['port'] = $base['port'] ?? null;
                }

                if (!isset(
$ref['path'])) {
                    
$ref['path'] = '';
                }
                if (!isset(
$base['path'])) {
                    
$base['path'] = '';
                }

                if (
$ref['path'] === '') {
                    
$dest['path'] = $base['path'];
                    
$dest['query'] = $ref['query'] ?? $base['query'] ?? null;
                } else {
                    if (
$ref['path'][0] === '/') {
                        
$dest['path'] = $ref['path'];
                    } else {
                        if ((isset(
$base['authority']) || isset($base['host'])) && $base['path'] === '') {
                            
$dest['path'] = '/' $ref['path'];
                        } else {
                            
$dest['path'] = $base['path'];

                            if (
$dest['path'] !== '') {
                                
$pos strrpos($dest['path'], '/');
                                if (
$pos === false) {
                                    
$dest['path'] = '';
                                } else {
                                    
$dest['path'] = substr($dest['path'], 0$pos);
                                }

                                unset(
$pos);
                            }
                            
$dest['path'] .= '/' $ref['path'];
                        }
                    }

                    
$dest['query'] = $ref['query'] ?? null;
                }
            }
        }

        
$dest['fragment'] = $ref['fragment'] ?? null;

        if (
$normalize) {
            return 
self::normalizeComponents($dest);
        }

        if (isset(
$dest['path'])) {
            
$dest['path'] = self::removeDotSegmentsFromPath($dest['path']);
        }

        return 
$dest;
    }

    public static function 
normalizeComponents(array $components): array
    {
        if (isset(
$components['scheme'])) {
            
$components['scheme'] = strtolower($components['scheme']);
            
// Remove default port
            
if (isset($components['port']) && self::getSchemePort($components['scheme']) === $components['port']) {
                
$components['port'] = null;
            }
        }

        if (isset(
$components['host'])) {
            
$components['host'] = strtolower($components['host']);
        }

        if (isset(
$components['path'])) {
            
$components['path'] = self::removeDotSegmentsFromPath($components['path']);
        }

        if (isset(
$components['query'])) {
            
$components['query'] = self::normalizeQueryString($components['query']);
        }

        return 
$components;
    }

    
/**
     * Removes dot segments from path
     * @param string $path
     * @return string
     */
    
public static function removeDotSegmentsFromPath(string $path): string
    
{
        
// Fast check common simple paths
        
if ($path === '' || $path === '/') {
            return 
$path;
        }

        
$output '';
        
$last_slash 0;

        
$len strlen($path);
        
$i 0;

        while (
$i $len) {
            if (
$path[$i] === '.') {
                
$j $i 1;
                
// search for .
                
if ($j >= $len) {
                    break;
                }

                
// search for ./
                
if ($path[$j] === '/') {
                    
$i $j 1;
                    continue;
                }

                
// search for ../
                
if ($path[$j] === '.') {
                    
$k $j 1;
                    if (
$k >= $len) {
                        break;
                    }
                    if (
$path[$k] === '/') {
                        
$i $k 1;
                        continue;
                    }
                }
            } elseif (
$path[$i] === '/') {
                
$j $i 1;
                if (
$j >= $len) {
                    
$output .= '/';
                    break;
                }

                
// search for /.
                
if ($path[$j] === '.') {
                    
$k $j 1;
                    if (
$k >= $len) {
                        
$output .= '/';
                        break;
                    }
                    
// search for /./
                    
if ($path[$k] === '/') {
                        
$i $k;
                        continue;
                    }
                    
// search for /..
                    
if ($path[$k] === '.') {
                        
$n $k 1;
                        if (
$n >= $len) {
                            
// keep the slash
                            
$output substr($output0$last_slash 1);
                            break;
                        }
                        
// search for /../
                        
if ($path[$n] === '/') {
                            
$output substr($output0$last_slash);
                            
$last_slash = (int)strrpos($output'/');
                            
$i $n;
                            continue;
                        }
                    }
                }
            }

            
$pos strpos($path'/'$i 1);

            if (
$pos === false) {
                
$output .= substr($path$i);
                break;
            }

            
$last_slash strlen($output);
            
$output .= substr($path$i$pos $i);

            
$i $pos;
        }

        return 
$output;
    }

    
/**
     * @param string|null $query
     * @return array
     */
    
public static function parseQueryString(?string $query): array
    {
        if (
$query === null) {
            return [];
        }

        
$list = [];

        foreach (
explode('&'$query) as $name) {
            
$value null;
            if ((
$pos strpos($name'=')) !== false) {
                
$value self::decodeComponent(substr($name$pos 1));
                
$name self::decodeComponent(substr($name0$pos));
            } else {
                
$name self::decodeComponent($name);
            }
            
$list[$name] = $value;
        }

        return 
$list;
    }

    
/**
     * @param array $qs
     * @param string|null $prefix
     * @param string $separator
     * @param bool $sort
     * @return string
     */
    
public static function buildQueryString(array $qs, ?string $prefix null,
                                 
string $separator '&'bool $sort false): string
    
{
        
$isIndexed = static function (array $array): bool {
            for (
$i 0$max count($array); $i $max$i++) {
                if (!
array_key_exists($i$array)) {
                    return 
false;
                }
            }
            return 
true;
        };

        
$f = static function (array $arr, ?string $prefix null) use (&$f, &$isIndexed): iterable {
            
$indexed $prefix !== null && $isIndexed($arr);

            foreach (
$arr as $key => $value) {
                if (
$prefix !== null) {
                    
$key $prefix . ($indexed "[]" "[{$key}]");
                }
                if (
is_array($value)) {
                    yield from 
$f($value$key);
                } else {
                    yield 
$key => $value;
                }
            }
        };

        
$data = [];

        foreach (
$f($qs$prefix) as $key => $value) {
            
$item is_string($key) ? self::encodeComponent($key) : $key;
            if (
$value !== null) {
                
$item .= '=';
                
$item .= is_string($value) ? self::encodeComponent($value) : $value;
            }
            if (
$item === '' || $item === '=') {
                continue;
            }
            
$data[] = $item;
        }

        if (!
$data) {
            return 
'';
        }

        if (
$sort) {
            
sort($data);
        }

        return 
implode($separator$data);
    }

    
/**
     * @param string $query
     * @return string
     */
    
public static function normalizeQueryString(string $query): string
    
{
        return static::
buildQueryString(self::parseQueryString($query), null'&'true);
    }

    public static function 
decodeComponent(string $component): string
    
{
        return 
rawurldecode($component);
    }

    public static function 
encodeComponent(string $component, ?array $skip null): string
    
{
        if (!
$skip) {
            return 
rawurlencode($component);
        }

        
$str '';

        foreach (
UnicodeString::walkString($component) as [$cp$chars]) {
            if (
$cp 0x80) {
                if (
$cp === 0x2D || $cp === 0x2E ||
                    
$cp === 0x5F || $cp === 0x7E ||
                    (
$cp >= 0x41 && $cp <= 0x5A) ||
                    (
$cp >= 0x61 && $cp <= 0x7A) ||
                    (
$cp >= 0x30 && $cp <= 0x39) ||
                    
in_array($cp$skiptrue)
                ) {
                    
$str .= chr($cp);
                } else {
                    
$str .= '%' strtoupper(dechex($cp));
                }
            } else {
                
$i 0;
                while (isset(
$chars[$i])) {
                    
$str .= '%' strtoupper(dechex($chars[$i++]));
                }
            }
        }

        return 
$str;
    }

    public static function 
setSchemePort(string $scheme, ?int $port): void
    
{
        
$scheme strtolower($scheme);

        if (
$port === null) {
            unset(
self::$KNOWN_PORTS[$scheme]);
        } else {
            
self::$KNOWN_PORTS[$scheme] = $port;
        }
    }

    public static function 
getSchemePort(string $scheme): ?int
    
{
        return 
self::$KNOWN_PORTS[strtolower($scheme)] ?? null;
    }

    protected static array 
$KNOWN_PORTS = [
        
'ftp' => 21,
        
'ssh' => 22,
        
'telnet' => 23,
        
'smtp' => 25,
        
'tftp' => 69,
        
'http' => 80,
        
'pop' => 110,
        
'sftp' => 115,
        
'imap' => 143,
        
'irc' => 194,
        
'ldap' => 389,
        
'https' => 443,
        
'ldaps' => 636,
        
'telnets' => 992,
        
'imaps' => 993,
        
'ircs' => 994,
        
'pops' => 995,
    ];
}