Clash.Meta/rules/common/domain_suffix.go

44 lines
783 B
Go
Raw Normal View History

package common
2018-06-10 22:50:03 +08:00
import (
"strings"
C "github.com/Dreamacro/clash/constant"
)
type DomainSuffix struct {
2022-03-13 01:21:23 +08:00
*Base
suffix string
adapter string
2018-06-10 22:50:03 +08:00
}
func (ds *DomainSuffix) RuleType() C.RuleType {
return C.DomainSuffix
}
func (ds *DomainSuffix) Match(metadata *C.Metadata) bool {
2018-09-30 12:25:52 +08:00
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
}
2022-03-13 01:21:23 +08:00
func NewDomainSuffix(suffix string, adapter string) *DomainSuffix {
2018-06-10 22:50:03 +08:00
return &DomainSuffix{
2022-03-13 01:21:23 +08:00
Base: &Base{},
suffix: strings.ToLower(suffix),
adapter: adapter,
2018-06-10 22:50:03 +08:00
}
}
2022-03-13 01:21:23 +08:00
var _ C.Rule = (*DomainSuffix)(nil)