Xray-core/common/matcher/geosite/attribute.go

36 lines
598 B
Go
Raw Normal View History

2021-03-24 17:01:20 +02:00
package geosite
2021-04-08 08:19:25 +03:00
import "strings"
2021-03-24 17:01:20 +02:00
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 {
2021-04-08 08:19:25 +03:00
if strings.EqualFold(attr.GetKey(), string(m)) {
2021-03-24 17:01:20 +02:00
return true
}
}
return false
}