-
Notifications
You must be signed in to change notification settings - Fork 0
/
match.go
98 lines (85 loc) · 2.33 KB
/
match.go
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
// Copyright (c) 2022 The Go-Enjin Authors
//
// 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.
package page
import (
"strings"
"sync"
"github.com/go-enjin/be/pkg/pageql"
beStrings "github.com/go-enjin/be/pkg/strings"
)
type MatcherFn func(path string, pg *Page) (found string, ok bool)
var (
_knownMatcherFns []MatcherFn
_knownMatcherFnMutex = sync.RWMutex{}
)
func RegisterMatcherFn(matcher MatcherFn) {
_knownMatcherFnMutex.Lock()
defer _knownMatcherFnMutex.Unlock()
_knownMatcherFns = append(_knownMatcherFns, matcher)
}
func (p *Page) Match(path string) (found string, ok bool) {
if ok = p.Url == path; ok {
found = p.Url
} else if ok = p.IsTranslation(path); ok {
found = p.Translates
} else if ok = p.IsRedirection(path); ok {
found = p.Url
} else {
_knownMatcherFnMutex.RLock()
defer _knownMatcherFnMutex.RUnlock()
for _, matcher := range _knownMatcherFns {
if found, ok = matcher(path, p); ok {
return
}
}
}
return
}
func (p *Page) MatchPrefix(prefix string) (found string, ok bool) {
if ok = strings.HasPrefix(p.Url, prefix); ok {
found = p.Url
}
return
}
func (p *Page) Redirections() (redirects []string) {
if redirect := p.Context.Get("Redirect"); redirect != nil {
switch t := redirect.(type) {
case string:
redirects = append(redirects, t)
case []interface{}:
for _, v := range t {
if r, ok := v.(string); ok {
redirects = append(redirects, r)
}
}
}
}
return
}
func (p *Page) IsRedirection(path string) (ok bool) {
ok = beStrings.StringInStrings(path, p.Redirections()...)
return
}
func (p *Page) IsTranslation(path string) (ok bool) {
ok = p.Translates == path
return
}
func (p *Page) HasTranslation() (ok bool) {
ok = p.Translates != ""
return
}
func (p *Page) MatchQL(query string) (ok bool, err error) {
ok, err = pageql.Match(query, p.Context.Copy())
return
}