mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 09:19:21 +02:00
34 lines
558 B
Go
34 lines
558 B
Go
|
package geosite
|
||
|
|
||
|
type AttributeList struct {
|
||
|
matcher []AttributeMatcher
|
||
|
}
|
||
|
|
||
|
func (al *AttributeList) Match(domain *Domain) bool {
|
||
|
for _, matcher := range al.matcher {
|
||
|
if !matcher.Match(domain) {
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
func (al *AttributeList) IsEmpty() bool {
|
||
|
return len(al.matcher) == 0
|
||
|
}
|
||
|
|
||
|
type AttributeMatcher interface {
|
||
|
Match(*Domain) bool
|
||
|
}
|
||
|
|
||
|
type BooleanMatcher string
|
||
|
|
||
|
func (m BooleanMatcher) Match(domain *Domain) bool {
|
||
|
for _, attr := range domain.Attribute {
|
||
|
if attr.Key == string(m) {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|