Clash.Meta/rule/common/domain_keyword.go

44 lines
769 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 {
2022-03-13 01:21:23 +08:00
*Base
keyword string
adapter string
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
}
2022-03-13 01:21:23 +08:00
func NewDomainKeyword(keyword string, adapter string) *DomainKeyword {
2018-06-10 22:50:03 +08:00
return &DomainKeyword{
2022-03-13 01:21:23 +08:00
Base: &Base{},
keyword: strings.ToLower(keyword),
adapter: adapter,
2018-06-10 22:50:03 +08:00
}
}
2022-03-13 01:21:23 +08:00
var _ C.Rule = (*DomainKeyword)(nil)