mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
46 lines
845 B
Go
46 lines
845 B
Go
package common
|
|
|
|
import (
|
|
C "github.com/metacubex/mihomo/constant"
|
|
|
|
"github.com/dlclark/regexp2"
|
|
)
|
|
|
|
type DomainRegex struct {
|
|
*Base
|
|
regex *regexp2.Regexp
|
|
adapter string
|
|
}
|
|
|
|
func (dr *DomainRegex) RuleType() C.RuleType {
|
|
return C.DomainRegex
|
|
}
|
|
|
|
func (dr *DomainRegex) Match(metadata *C.Metadata) (bool, string) {
|
|
domain := metadata.RuleHost()
|
|
match, _ := dr.regex.MatchString(domain)
|
|
return match, dr.adapter
|
|
}
|
|
|
|
func (dr *DomainRegex) Adapter() string {
|
|
return dr.adapter
|
|
}
|
|
|
|
func (dr *DomainRegex) Payload() string {
|
|
return dr.regex.String()
|
|
}
|
|
|
|
func NewDomainRegex(regex string, adapter string) (*DomainRegex, error) {
|
|
r, err := regexp2.Compile(regex, regexp2.IgnoreCase)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &DomainRegex{
|
|
Base: &Base{},
|
|
regex: r,
|
|
adapter: adapter,
|
|
}, nil
|
|
}
|
|
|
|
//var _ C.Rule = (*DomainRegex)(nil)
|