2022-01-22 22:10:45 +08:00
|
|
|
package logic
|
|
|
|
|
2022-03-17 23:24:07 +08:00
|
|
|
import (
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
"github.com/Dreamacro/clash/rule/common"
|
|
|
|
)
|
2022-01-22 22:10:45 +08:00
|
|
|
|
|
|
|
type OR struct {
|
2022-03-19 22:27:22 +08:00
|
|
|
*common.Base
|
2022-01-22 22:10:45 +08:00
|
|
|
rules []C.Rule
|
|
|
|
payload string
|
|
|
|
adapter string
|
|
|
|
needIP bool
|
|
|
|
}
|
|
|
|
|
2022-03-16 00:43:08 +08:00
|
|
|
func (or *OR) ShouldFindProcess() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-22 22:10:45 +08:00
|
|
|
func (or *OR) RuleType() C.RuleType {
|
|
|
|
return C.OR
|
|
|
|
}
|
|
|
|
|
|
|
|
func (or *OR) Match(metadata *C.Metadata) bool {
|
|
|
|
for _, rule := range or.rules {
|
|
|
|
if rule.Match(metadata) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (or *OR) Adapter() string {
|
|
|
|
return or.adapter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (or *OR) Payload() string {
|
|
|
|
return or.payload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (or *OR) ShouldResolveIP() bool {
|
|
|
|
return or.needIP
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewOR(payload string, adapter string) (*OR, error) {
|
2022-03-19 22:27:22 +08:00
|
|
|
or := &OR{Base: &common.Base{}, payload: payload, adapter: adapter}
|
2022-01-26 14:02:10 +08:00
|
|
|
rules, err := parseRuleByPayload(payload)
|
2022-01-22 22:10:45 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
or.rules = rules
|
|
|
|
for _, rule := range rules {
|
|
|
|
if rule.ShouldResolveIP() {
|
|
|
|
or.needIP = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return or, nil
|
|
|
|
}
|