2022-01-22 22:10:45 +08:00
|
|
|
package logic
|
|
|
|
|
2022-03-17 23:24:07 +08:00
|
|
|
import (
|
2022-04-09 22:25:39 +08:00
|
|
|
"fmt"
|
|
|
|
|
2022-03-17 23:24:07 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
"github.com/Dreamacro/clash/rule/common"
|
|
|
|
)
|
2022-01-22 22:10:45 +08:00
|
|
|
|
|
|
|
type AND 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 (A *AND) ShouldFindProcess() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-22 22:10:45 +08:00
|
|
|
func NewAND(payload string, adapter string) (*AND, error) {
|
2022-03-19 22:27:22 +08:00
|
|
|
and := &AND{Base: &common.Base{}, payload: payload, adapter: adapter}
|
2022-04-09 22:25:39 +08:00
|
|
|
rules, err := parseRuleByPayload(payload, true)
|
2022-01-22 22:10:45 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
and.rules = rules
|
2022-04-09 22:25:39 +08:00
|
|
|
if len(and.rules) == 0 {
|
|
|
|
return nil, fmt.Errorf("And rule is error, may be format error or not contain least one rule")
|
|
|
|
}
|
|
|
|
|
2022-01-22 22:10:45 +08:00
|
|
|
for _, rule := range rules {
|
|
|
|
if rule.ShouldResolveIP() {
|
|
|
|
and.needIP = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return and, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (A *AND) RuleType() C.RuleType {
|
|
|
|
return C.AND
|
|
|
|
}
|
|
|
|
|
|
|
|
func (A *AND) Match(metadata *C.Metadata) bool {
|
|
|
|
for _, rule := range A.rules {
|
|
|
|
if !rule.Match(metadata) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (A *AND) Adapter() string {
|
|
|
|
return A.adapter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (A *AND) Payload() string {
|
|
|
|
return A.payload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (A *AND) ShouldResolveIP() bool {
|
|
|
|
return A.needIP
|
|
|
|
}
|