-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurlpattern.go
More file actions
723 lines (588 loc) · 18.6 KB
/
urlpattern.go
File metadata and controls
723 lines (588 loc) · 18.6 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
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
// Package urlpattern implements the URLPattern web API.
//
// The specification is available at https://urlpattern.spec.whatwg.org/.
package urlpattern
import (
"errors"
"regexp"
"strings"
"github.com/nlnwa/whatwg-url/url"
)
var (
NoBaseURLError = errors.New("relative URL and no baseURL provided")
UnexpectedEmptyStringError = errors.New("unexpected empty string")
)
// https://url.spec.whatwg.org/#special-scheme
var specialSchemeList = []string{"ftp", "http", "https", "ws", "wss"}
type URLPatternResult struct {
Inputs []string
InitInputs []*URLPatternInit
Protocol URLPatternComponentResult
Username URLPatternComponentResult
Password URLPatternComponentResult
Hostname URLPatternComponentResult
Port URLPatternComponentResult
Pathname URLPatternComponentResult
Search URLPatternComponentResult
Hash URLPatternComponentResult
}
type URLPatternComponentResult struct {
Input string
Groups map[string]string
}
// https://urlpattern.spec.whatwg.org/#url-pattern-struct
type URLPattern struct {
protocol *component
username *component
password *component
hostname *component
port *component
pathname *component
search *component
hash *component
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-protocol
func (u *URLPattern) Protocol() string {
return u.protocol.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-username
func (u *URLPattern) Username() string {
return u.username.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-password
func (u *URLPattern) Password() string {
return u.password.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-hostname
func (u *URLPattern) Hostname() string {
return u.hostname.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-port
func (u *URLPattern) Port() string {
return u.port.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-pathname
func (u *URLPattern) Pathname() string {
return u.pathname.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-search
func (u *URLPattern) Search() string {
return u.search.patternString
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-hash
func (u *URLPattern) Hash() string {
return u.hash.patternString
}
// https://urlpattern.spec.whatwg.org/#component
type component struct {
patternString string
regularExpression *regexp.Regexp
groupNameList []string
hasRegexpGroups bool
}
// https://urlpattern.spec.whatwg.org/#protocol-component-matches-a-special-scheme
func (c *component) protocolComponentMatchesSpecialScheme() bool {
for _, scheme := range specialSchemeList {
if c.regularExpression.MatchString(scheme) {
return true
}
}
return false
}
// https://urlpattern.spec.whatwg.org/#url-pattern-create
func New(input string, baseURL string, options *Options) (*URLPattern, error) {
init, err := parseConstructorString(input)
if err != nil {
return nil, err
}
if baseURL == "" && init.Protocol == nil {
return nil, NoBaseURLError
}
if baseURL != "" {
init.BaseURL = &baseURL
}
return init.New(options)
}
// https://urlpattern.spec.whatwg.org/#url-pattern-create
func (init *URLPatternInit) New(opt *Options) (*URLPattern, error) {
if opt == nil {
opt = &Options{}
}
processedInit, err := init.process("pattern", nil, nil, nil, nil, nil, nil, nil, nil)
if err != nil {
return nil, err
}
star := "*"
if processedInit.Protocol == nil {
processedInit.Protocol = &star
}
if processedInit.Username == nil {
processedInit.Username = &star
}
if processedInit.Password == nil {
processedInit.Password = &star
}
if processedInit.Hostname == nil {
processedInit.Hostname = &star
}
if processedInit.Port == nil {
processedInit.Port = &star
}
if processedInit.Pathname == nil {
processedInit.Pathname = &star
}
if processedInit.Search == nil {
processedInit.Search = &star
}
if processedInit.Hash == nil {
processedInit.Hash = &star
}
var emptyString string
for _, s := range specialSchemeList {
if *processedInit.Protocol == s && *processedInit.Port == DefaultPorts[s] {
processedInit.Port = &emptyString
break
}
}
defaultOptions := options{}
urlPattern := &URLPattern{}
urlPattern.protocol, err = compileComponent(*processedInit.Protocol, canonicalizeProtocol, defaultOptions)
if err != nil {
return nil, err
}
urlPattern.username, err = compileComponent(*processedInit.Username, canonicalizeUsername, defaultOptions)
if err != nil {
return nil, err
}
urlPattern.password, err = compileComponent(*processedInit.Password, canonicalizePassword, defaultOptions)
if err != nil {
return nil, err
}
// If the result running hostname pattern is an IPv6 address given processedInit["hostname"] is true, then set urlPattern’s hostname component to the result of compiling a component given processedInit["hostname"], canonicalize an IPv6 hostname, and hostname options.
hostnameOptions := options{delimiterCodePoint: '.'}
if hostnamePatternIsIPv6Address(*processedInit.Hostname) {
urlPattern.hostname, err = compileComponent(*processedInit.Hostname, canonicalizeIPv6Hostname, hostnameOptions)
if err != nil {
return nil, err
}
} else if urlPattern.protocol.protocolComponentMatchesSpecialScheme() || *processedInit.Protocol == "*" {
urlPattern.hostname, err = compileComponent(*processedInit.Hostname, canonicalizeDomainName, hostnameOptions)
if err != nil {
return nil, err
}
} else {
urlPattern.hostname, err = compileComponent(*processedInit.Hostname, func(s string) (string, error) { return canonicalizeHostname(s, "") }, hostnameOptions)
if err != nil {
return nil, err
}
}
urlPattern.port, err = compileComponent(*processedInit.Port, func(s string) (string, error) { return canonicalizePort(s, "") }, defaultOptions)
if err != nil {
return nil, err
}
compileOptions := defaultOptions
compileOptions.ignoreCase = opt.IgnoreCase
pathnameOptions := options{'/', '/', false}
if urlPattern.protocol.protocolComponentMatchesSpecialScheme() {
pathCompileOptions := pathnameOptions
pathCompileOptions.ignoreCase = opt.IgnoreCase
urlPattern.pathname, err = compileComponent(*processedInit.Pathname, canonicalizePathname, pathCompileOptions)
if err != nil {
return nil, err
}
} else {
urlPattern.pathname, err = compileComponent(*processedInit.Pathname, canonicalizeOpaquePathname, compileOptions)
if err != nil {
return nil, err
}
}
urlPattern.search, err = compileComponent(*processedInit.Search, canonicalizeSearch, compileOptions)
if err != nil {
return nil, err
}
urlPattern.hash, err = compileComponent(*processedInit.Hash, canonicalizeHash, compileOptions)
if err != nil {
return nil, err
}
return urlPattern, nil
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec
func (u *URLPattern) ExecInit(input *URLPatternInit) *URLPatternResult {
protocol := ""
username := ""
password := ""
hostname := ""
port := ""
pathname := ""
search := ""
hash := ""
inputs := []*URLPatternInit{input}
applyResult, err := input.process("url", &protocol, &username, &password, &hostname, &port, &pathname, &search, &hash)
if err != nil {
return nil
}
protocol = *applyResult.Protocol
username = *applyResult.Username
password = *applyResult.Password
hostname = *applyResult.Hostname
port = *applyResult.Port
pathname = *applyResult.Pathname
search = *applyResult.Search
hash = *applyResult.Hash
r := u.match(protocol, username, password, hostname, port, pathname, search, hash)
if r != nil {
r.InitInputs = inputs
}
return r
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-exec
func (u *URLPattern) Exec(input, baseURLString string) *URLPatternResult {
protocol := ""
username := ""
password := ""
hostname := ""
port := ""
pathname := ""
search := ""
hash := ""
inputs := []string{input}
var baseURL *url.Url
var err error
if baseURLString != "" {
baseURL, err = url.Parse(baseURLString)
if err != nil {
return nil
}
inputs = append(inputs, baseURLString)
}
ur, err := urlParser.BasicParser(input, baseURL, nil, url.NoState)
if err != nil {
return nil
}
protocol = ur.Scheme()
username = ur.Username()
password = ur.Password()
hostname = ur.Hostname()
port = ur.Port()
pathname = ur.Pathname()
search = ur.Query()
hash = ur.Fragment()
r := u.match(protocol, username, password, hostname, port, pathname, search, hash)
if r != nil {
r.Inputs = inputs
}
return r
}
// https://urlpattern.spec.whatwg.org/#url-pattern-match
func (u *URLPattern) match(protocol, username, password, hostname, port, pathname, search, hash string) *URLPatternResult {
protocolExecResult := u.protocol.regularExpression.FindStringSubmatch(protocol)
usernameExecResult := u.username.regularExpression.FindStringSubmatch(username)
passwordExecResult := u.password.regularExpression.FindStringSubmatch(password)
hostnameExecResult := u.hostname.regularExpression.FindStringSubmatch(hostname)
portExecResult := u.port.regularExpression.FindStringSubmatch(port)
pathnameExecResult := u.pathname.regularExpression.FindStringSubmatch(pathname)
searchExecResult := u.search.regularExpression.FindStringSubmatch(search)
hashExecResult := u.hash.regularExpression.FindStringSubmatch(hash)
if protocolExecResult == nil ||
usernameExecResult == nil ||
passwordExecResult == nil ||
hostnameExecResult == nil ||
portExecResult == nil ||
pathnameExecResult == nil ||
searchExecResult == nil ||
hashExecResult == nil {
return nil
}
result := &URLPatternResult{}
result.Protocol = createComponentMatchResult(*u.protocol, protocol, protocolExecResult)
result.Username = createComponentMatchResult(*u.username, username, usernameExecResult)
result.Password = createComponentMatchResult(*u.password, password, passwordExecResult)
result.Hostname = createComponentMatchResult(*u.hostname, hostname, hostnameExecResult)
result.Port = createComponentMatchResult(*u.port, port, portExecResult)
result.Pathname = createComponentMatchResult(*u.pathname, pathname, pathnameExecResult)
result.Search = createComponentMatchResult(*u.search, search, searchExecResult)
result.Hash = createComponentMatchResult(*u.hash, hash, hashExecResult)
return result
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-test
func (u *URLPattern) Test(input, baseURL string) bool {
return u.Exec(input, baseURL) != nil
}
// https://urlpattern.spec.whatwg.org/#dom-urlpattern-test
func (u *URLPattern) TestInit(input *URLPatternInit) bool {
return u.ExecInit(input) != nil
}
// https://urlpattern.spec.whatwg.org/#url-pattern-has-regexp-groups
func (u *URLPattern) HasRegexpGroups() bool {
return u.protocol.hasRegexpGroups ||
u.username.hasRegexpGroups ||
u.password.hasRegexpGroups ||
u.hostname.hasRegexpGroups ||
u.port.hasRegexpGroups ||
u.pathname.hasRegexpGroups ||
u.search.hasRegexpGroups ||
u.hash.hasRegexpGroups
}
// https://urlpattern.spec.whatwg.org/#create-a-component-match-result
func createComponentMatchResult(component component, input string, execResult []string) URLPatternComponentResult {
result := URLPatternComponentResult{Input: input}
if len(execResult)-1 == 0 || (len(execResult) == 2 && execResult[0] == "" && execResult[1] == "") {
return result
}
result.Groups = make(map[string]string, len(execResult)-1)
for index := 1; index < len(execResult); index++ {
name := component.groupNameList[index-1]
value := execResult[index]
result.Groups[name] = value
}
return result
}
type Options struct {
IgnoreCase bool
}
// https://urlpattern.spec.whatwg.org/#dictdef-urlpatterninit
type URLPatternInit struct {
Protocol *string
Username *string
Password *string
Hostname *string
Port *string
Pathname *string
Search *string
Hash *string
BaseURL *string
}
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
func (init *URLPatternInit) process(iType string, protocol, username, password, hostname, port, pathname, search, hash *string) (*URLPatternInit, error) {
result := &URLPatternInit{protocol, username, password, hostname, port, pathname, search, hash, nil}
var (
baseURL *url.Url
err error
)
if init.BaseURL != nil {
baseURL, err = url.Parse(*init.BaseURL)
if err != nil {
return nil, err
}
if init.Protocol == nil {
p := processBaseURLString(baseURL.Scheme(), iType)
result.Protocol = &p
}
// TODO: the end of this block can be simplified, but let's be as close as possible from the standard algorithm for now
if iType != "pattern" && init.Protocol == nil && init.Hostname == nil && init.Port == nil && init.Username == nil {
u := processBaseURLString(baseURL.Username(), iType)
result.Username = &u
}
if iType != "pattern" && init.Protocol == nil && init.Hostname == nil && init.Port == nil && init.Username == nil && init.Password == nil {
password := baseURL.Password()
p := processBaseURLString(password, iType)
result.Password = &p
}
if init.Protocol == nil && init.Hostname == nil {
baseHost := baseURL.Hostname()
h := processBaseURLString(baseHost, iType)
result.Hostname = &h
}
if init.Protocol == nil && init.Hostname == nil && init.Port == nil {
p := baseURL.Port()
result.Port = &p
}
if init.Protocol == nil && init.Hostname == nil && init.Port == nil && init.Pathname == nil {
p := processBaseURLString(baseURL.Pathname(), iType)
result.Pathname = &p
}
if init.Protocol == nil && init.Hostname == nil && init.Port == nil && init.Pathname == nil && init.Search == nil {
s := processBaseURLString(baseURL.Query(), iType)
result.Search = &s
}
if init.Protocol == nil && init.Hostname == nil && init.Port == nil && init.Pathname == nil && init.Search == nil && init.Hash == nil {
h := processBaseURLString(baseURL.Fragment(), iType)
result.Hash = &h
}
}
if init.Protocol != nil {
p, err := processProtocolForInit(*init.Protocol, iType)
if err != nil {
return nil, err
}
result.Protocol = &p
}
if init.Username != nil {
u, err := processUsernameForInit(*init.Username, iType)
if err != nil {
return nil, err
}
result.Username = &u
}
if init.Password != nil {
p, err := processPasswordForInit(*init.Password, iType)
if err != nil {
return nil, err
}
result.Password = &p
}
var proto string
if result.Protocol == nil {
proto = ""
} else {
proto = *result.Protocol
}
if init.Hostname != nil {
h, err := processHostnameForInit(*init.Hostname, proto, iType)
if err != nil {
return nil, err
}
result.Hostname = &h
}
if init.Port != nil {
p, err := processPortForInit(*init.Port, proto, iType)
if err != nil {
return nil, err
}
result.Port = &p
}
if init.Pathname != nil {
result.Pathname = init.Pathname
// TODO: according to the spec, we should check that he path is opaque, but it's illogical and breaks the tests
if baseURL != nil && !baseURL.OpaquePath() && !isAbsolutePathname(*result.Pathname, iType) {
baseURLPath := processBaseURLString(baseURL.Pathname(), iType)
slashIndex := strings.LastIndex(baseURLPath, "/")
if slashIndex != -1 {
newPathname := baseURLPath[0:slashIndex+1] + *result.Pathname
result.Pathname = &newPathname
}
}
p, err := processPathnameForInit(*result.Pathname, proto, iType)
if err != nil {
return nil, err
}
result.Pathname = &p
}
if init.Search != nil {
s, err := processSearchForInit(*init.Search, iType)
if err != nil {
return nil, err
}
result.Search = &s
}
if init.Hash != nil {
h, err := processHashForInit(*init.Hash, iType)
if err != nil {
return nil, err
}
result.Hash = &h
}
return result, nil
}
// https://urlpattern.spec.whatwg.org/#process-a-base-url-string
func processBaseURLString(input, uType string) string {
if uType != "pattern" {
return input
}
return escapePatternString(input)
}
// https://urlpattern.spec.whatwg.org/#process-protocol-for-init
func processProtocolForInit(value, pType string) (string, error) {
strippedValue := strings.TrimSuffix(value, ":")
if pType == "pattern" {
return strippedValue, nil
}
return canonicalizeProtocol(strippedValue)
}
// https://urlpattern.spec.whatwg.org/#process-username-for-init
func processUsernameForInit(value, uType string) (string, error) {
if uType == "pattern" {
return value, nil
}
return canonicalizeUsername(value)
}
// https://urlpattern.spec.whatwg.org/#process-password-for-init
func processPasswordForInit(value, uType string) (string, error) {
if uType == "pattern" {
return value, nil
}
return canonicalizePassword(value)
}
// https://urlpattern.spec.whatwg.org/#process-hostname-for-init
func processHostnameForInit(value, protocolValue, uType string) (string, error) {
if uType == "pattern" {
return value, nil
}
if protocolValue == "" {
return canonicalizeDomainName(value)
}
for _, s := range specialSchemeList {
if protocolValue == s {
return canonicalizeDomainName(value)
}
}
return canonicalizeHostname(value, protocolValue)
}
// https://urlpattern.spec.whatwg.org/#process-port-for-init
func processPortForInit(portValue, protocolValue, pType string) (string, error) {
if pType == "pattern" {
return portValue, nil
}
return canonicalizePort(portValue, protocolValue)
}
// https://urlpattern.spec.whatwg.org/#process-pathname-for-init
func processPathnameForInit(pathnameValue, protocolValue, ptype string) (string, error) {
if ptype == "pattern" {
return pathnameValue, nil
}
if protocolValue == "" {
return canonicalizePathname(pathnameValue)
}
for _, ss := range specialSchemeList {
if protocolValue == ss {
return canonicalizePathname(pathnameValue)
}
}
return canonicalizeOpaquePathname(pathnameValue)
}
// https://urlpattern.spec.whatwg.org/#process-search-for-init
func processSearchForInit(value, sType string) (string, error) {
strippedValue := strings.TrimPrefix(value, "?")
if sType == "pattern" {
return strippedValue, nil
}
return canonicalizeSearch(strippedValue)
}
// https://urlpattern.spec.whatwg.org/#process-hash-for-init
func processHashForInit(value, hType string) (string, error) {
strippedValue := strings.TrimPrefix(value, "#")
if hType == "pattern" {
return strippedValue, nil
}
return canonicalizeHash(value)
}
// https://urlpattern.spec.whatwg.org/#is-an-absolute-pathname
func isAbsolutePathname(input, pType string) bool {
if input == "" {
return false
}
if input[0] == '/' {
return true
}
if pType == "url" {
return false
}
return strings.HasPrefix(input, "\\/") || strings.HasPrefix(input, "{/")
}
// https://urlpattern.spec.whatwg.org/#hostname-pattern-is-an-ipv6-address
func hostnamePatternIsIPv6Address(input string) bool {
if len(input) < 2 {
return false
}
i := []rune(input)
if i[0] == '[' {
return true
}
if i[0] == '{' && i[1] == '[' {
return true
}
if i[0] == '\\' && i[1] == '[' {
return true
}
return false
}