Clash.Meta/rules/domain_suffix.go

40 lines
720 B
Go
Raw Normal View History

2018-06-10 22:50:03 +08:00
package rules
import (
"strings"
C "github.com/Dreamacro/clash/constant"
)
type DomainSuffix struct {
suffix string
adapter string
}
func (ds *DomainSuffix) RuleType() C.RuleType {
return C.DomainSuffix
}
2018-09-30 12:25:52 +08:00
func (ds *DomainSuffix) IsMatch(metadata *C.Metadata) bool {
if metadata.AddrType != C.AtypDomainName {
2018-06-10 22:50:03 +08:00
return false
}
2018-09-30 12:25:52 +08:00
domain := metadata.Host
2018-06-10 22:50:03 +08:00
return strings.HasSuffix(domain, "."+ds.suffix) || domain == ds.suffix
}
func (ds *DomainSuffix) Adapter() string {
return ds.adapter
}
2018-06-20 22:41:02 +08:00
func (ds *DomainSuffix) Payload() string {
return ds.suffix
}
2018-06-10 22:50:03 +08:00
func NewDomainSuffix(suffix string, adapter string) *DomainSuffix {
return &DomainSuffix{
suffix: strings.ToLower(suffix),
2018-06-10 22:50:03 +08:00
adapter: adapter,
}
}