2022-03-26 18:34:15 +08:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
2022-06-10 13:36:09 +08:00
|
|
|
"fmt"
|
2022-03-26 18:34:15 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
"github.com/Dreamacro/clash/log"
|
2022-06-18 17:53:40 +08:00
|
|
|
"strings"
|
2022-03-26 18:34:15 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type classicalStrategy struct {
|
|
|
|
rules []C.Rule
|
|
|
|
count int
|
|
|
|
shouldResolveIP bool
|
2022-06-10 13:36:09 +08:00
|
|
|
parse func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error)
|
2022-03-26 18:34:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *classicalStrategy) Match(metadata *C.Metadata) bool {
|
|
|
|
for _, rule := range c.rules {
|
|
|
|
if rule.Match(metadata) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *classicalStrategy) Count() int {
|
|
|
|
return c.count
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *classicalStrategy) ShouldResolveIP() bool {
|
|
|
|
return c.shouldResolveIP
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *classicalStrategy) OnUpdate(rules []string) {
|
2022-06-04 19:12:50 +08:00
|
|
|
var classicalRules []C.Rule
|
|
|
|
shouldResolveIP := false
|
2022-03-26 18:34:15 +08:00
|
|
|
for _, rawRule := range rules {
|
|
|
|
ruleType, rule, params := ruleParse(rawRule)
|
2022-06-10 13:36:09 +08:00
|
|
|
r, err := c.parse(ruleType, rule, "", params)
|
2022-03-26 18:34:15 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warnln("parse rule error:[%s]", err.Error())
|
2022-03-28 21:04:50 +08:00
|
|
|
} else {
|
2022-06-04 19:12:50 +08:00
|
|
|
if !shouldResolveIP {
|
|
|
|
shouldResolveIP = r.ShouldResolveIP()
|
2022-03-28 21:04:50 +08:00
|
|
|
}
|
2022-03-26 18:34:15 +08:00
|
|
|
|
2022-06-04 19:12:50 +08:00
|
|
|
classicalRules = append(classicalRules, r)
|
2022-03-26 18:34:15 +08:00
|
|
|
}
|
|
|
|
}
|
2022-06-04 19:12:50 +08:00
|
|
|
|
|
|
|
c.rules = classicalRules
|
|
|
|
c.count = len(classicalRules)
|
2022-03-26 18:34:15 +08:00
|
|
|
}
|
|
|
|
|
2022-06-18 17:53:40 +08:00
|
|
|
func ruleParse(ruleRaw string) (string, string, []string) {
|
|
|
|
item := strings.Split(ruleRaw, ",")
|
|
|
|
if len(item) == 1 {
|
|
|
|
return "", item[0], nil
|
|
|
|
} else if len(item) == 2 {
|
|
|
|
return item[0], item[1], nil
|
|
|
|
} else if len(item) > 2 {
|
|
|
|
return item[0], item[1], item[2:]
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", "", nil
|
|
|
|
}
|
|
|
|
|
2022-06-10 13:36:09 +08:00
|
|
|
func NewClassicalStrategy(parse func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error)) *classicalStrategy {
|
|
|
|
return &classicalStrategy{rules: []C.Rule{}, parse: func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error) {
|
|
|
|
switch tp {
|
|
|
|
case "MATCH":
|
|
|
|
return nil, fmt.Errorf("unsupported rule type on rule-set")
|
|
|
|
default:
|
|
|
|
return parse(tp, payload, target, params)
|
|
|
|
}
|
|
|
|
}}
|
2022-03-26 18:34:15 +08:00
|
|
|
}
|