mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 12:42:27 +08:00
44 lines
808 B
Go
44 lines
808 B
Go
package provider
|
|
|
|
import (
|
|
"github.com/metacubex/mihomo/component/trie"
|
|
C "github.com/metacubex/mihomo/constant"
|
|
)
|
|
|
|
type DomainSet struct {
|
|
*domainStrategy
|
|
adapter string
|
|
}
|
|
|
|
func (d *DomainSet) ProviderNames() []string {
|
|
return nil
|
|
}
|
|
|
|
func (d *DomainSet) RuleType() C.RuleType {
|
|
return C.DomainSet
|
|
}
|
|
|
|
func (d *DomainSet) Match(metadata *C.Metadata) (bool, string) {
|
|
if d.domainSet == nil {
|
|
return false, ""
|
|
}
|
|
return d.domainSet.Has(metadata.RuleHost()), d.adapter
|
|
}
|
|
|
|
func (d *DomainSet) Adapter() string {
|
|
return d.adapter
|
|
}
|
|
|
|
func (d *DomainSet) Payload() string {
|
|
return ""
|
|
}
|
|
|
|
func NewDomainSet(domainSet *trie.DomainSet, adapter string) *DomainSet {
|
|
return &DomainSet{
|
|
domainStrategy: &domainStrategy{domainSet: domainSet},
|
|
adapter: adapter,
|
|
}
|
|
}
|
|
|
|
var _ C.Rule = (*DomainSet)(nil)
|