Clash.Meta/rules/common/domain_suffix.go

48 lines
921 B
Go
Raw Normal View History

package common
2018-06-10 22:50:03 +08:00
import (
2022-06-18 18:13:54 +08:00
"golang.org/x/net/idna"
2018-06-10 22:50:03 +08:00
"strings"
C "github.com/Dreamacro/clash/constant"
)
type DomainSuffix struct {
2022-03-13 01:21:23 +08:00
*Base
2022-06-18 18:13:54 +08:00
suffix string
adapter string
rawSuffix 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 {
2022-06-18 18:13:54 +08:00
return ds.rawSuffix
2018-06-20 22:41:02 +08:00
}
2022-03-13 01:21:23 +08:00
func NewDomainSuffix(suffix string, adapter string) *DomainSuffix {
2022-06-18 18:13:54 +08:00
actualDomainKeyword, _ := idna.ToASCII(suffix)
2018-06-10 22:50:03 +08:00
return &DomainSuffix{
2022-06-18 18:13:54 +08:00
Base: &Base{},
suffix: strings.ToLower(actualDomainKeyword),
adapter: adapter,
rawSuffix: suffix,
2018-06-10 22:50:03 +08:00
}
}
2022-03-13 01:21:23 +08:00
var _ C.Rule = (*DomainSuffix)(nil)