mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-20 07:21:26 +02:00
naive implementation of caddy like route rules, dependencies upgrade
This commit is contained in:
28
internal/utils/strutils/glob.go
Normal file
28
internal/utils/strutils/glob.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package strutils
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/gobwas/glob"
|
||||
)
|
||||
|
||||
var (
|
||||
globPatterns = make(map[string]glob.Glob)
|
||||
globPatternsMu sync.Mutex
|
||||
)
|
||||
|
||||
func GlobMatch(pattern string, s string) bool {
|
||||
if glob, ok := globPatterns[pattern]; ok {
|
||||
return glob.Match(s)
|
||||
}
|
||||
|
||||
globPatternsMu.Lock()
|
||||
defer globPatternsMu.Unlock()
|
||||
|
||||
glob, err := glob.Compile(pattern)
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
globPatterns[pattern] = glob
|
||||
return glob.Match(s)
|
||||
}
|
||||
Reference in New Issue
Block a user