clash/rules/domain_keyword.go

44 lines
770 B
Go
Raw Normal View History

2018-06-10 14:50:03 +00:00
package rules
import (
"strings"
C "github.com/Dreamacro/clash/constant"
)
type DomainKeyword struct {
keyword string
adapter string
}
func (dk *DomainKeyword) RuleType() C.RuleType {
return C.DomainKeyword
}
func (dk *DomainKeyword) Match(metadata *C.Metadata) bool {
2018-09-30 04:25:52 +00:00
if metadata.AddrType != C.AtypDomainName {
2018-06-10 14:50:03 +00:00
return false
}
2018-09-30 04:25:52 +00:00
domain := metadata.Host
2018-06-10 14:50:03 +00:00
return strings.Contains(domain, dk.keyword)
}
func (dk *DomainKeyword) Adapter() string {
return dk.adapter
}
2018-06-20 14:41:02 +00:00
func (dk *DomainKeyword) Payload() string {
return dk.keyword
}
func (dk *DomainKeyword) ShouldResolveIP() bool {
return false
}
2018-06-10 14:50:03 +00:00
func NewDomainKeyword(keyword string, adapter string) *DomainKeyword {
return &DomainKeyword{
keyword: strings.ToLower(keyword),
2018-06-10 14:50:03 +00:00
adapter: adapter,
}
}