Clash.Meta/rule/common/domain_keyword.go

54 lines
972 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 DomainKeyword struct {
2021-11-17 16:03:47 +08:00
keyword string
adapter string
ruleExtra *C.RuleExtra
2018-06-10 22:50:03 +08:00
}
func (dk *DomainKeyword) RuleType() C.RuleType {
return C.DomainKeyword
}
func (dk *DomainKeyword) 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.Contains(domain, dk.keyword)
}
func (dk *DomainKeyword) Adapter() string {
return dk.adapter
}
2018-06-20 22:41:02 +08:00
func (dk *DomainKeyword) Payload() string {
return dk.keyword
}
func (dk *DomainKeyword) ShouldResolveIP() bool {
return false
}
func (dk *DomainKeyword) ShouldFindProcess() bool {
return false
}
2021-11-17 16:03:47 +08:00
func (dk *DomainKeyword) RuleExtra() *C.RuleExtra {
return dk.ruleExtra
}
2018-06-10 22:50:03 +08:00
func NewDomainKeyword(keyword string, adapter string) *DomainKeyword {
return &DomainKeyword{
2021-11-17 16:03:47 +08:00
keyword: strings.ToLower(keyword),
adapter: adapter,
ruleExtra: ruleExtra,
2018-06-10 22:50:03 +08:00
}
}