2019-12-08 12:17:24 +08:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
2019-12-11 17:31:15 +08:00
|
|
|
"encoding/json"
|
2019-12-08 12:17:24 +08:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2021-12-02 03:39:37 +08:00
|
|
|
"github.com/Dreamacro/clash/component/trie"
|
2020-04-26 22:38:15 +08:00
|
|
|
"runtime"
|
2021-12-02 03:39:37 +08:00
|
|
|
"strings"
|
2019-12-08 12:17:24 +08:00
|
|
|
"time"
|
|
|
|
|
2021-06-10 14:05:56 +08:00
|
|
|
"github.com/Dreamacro/clash/adapter"
|
2019-12-08 12:17:24 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-07-04 20:32:59 +08:00
|
|
|
types "github.com/Dreamacro/clash/constant/provider"
|
2019-12-08 12:17:24 +08:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ReservedName = "default"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProxySchema struct {
|
|
|
|
Proxies []map[string]interface{} `yaml:"proxies"`
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
// for auto gc
|
2019-12-08 12:17:24 +08:00
|
|
|
type ProxySetProvider struct {
|
2020-04-26 22:38:15 +08:00
|
|
|
*proxySetProvider
|
|
|
|
}
|
|
|
|
|
|
|
|
type proxySetProvider struct {
|
|
|
|
*fetcher
|
2019-12-26 18:41:06 +08:00
|
|
|
proxies []C.Proxy
|
|
|
|
healthCheck *HealthCheck
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) MarshalJSON() ([]byte, error) {
|
2019-12-11 17:31:15 +08:00
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"name": pp.Name(),
|
|
|
|
"type": pp.Type().String(),
|
|
|
|
"vehicleType": pp.VehicleType().String(),
|
|
|
|
"proxies": pp.Proxies(),
|
|
|
|
"updatedAt": pp.updatedAt,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) Name() string {
|
2019-12-08 12:17:24 +08:00
|
|
|
return pp.name
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) HealthCheck() {
|
2019-12-26 18:41:06 +08:00
|
|
|
pp.healthCheck.check()
|
2019-12-11 17:31:15 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) Update() error {
|
|
|
|
elm, same, err := pp.fetcher.Update()
|
|
|
|
if err == nil && !same {
|
|
|
|
pp.onUpdate(elm)
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2020-04-26 22:38:15 +08:00
|
|
|
return err
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) Initial() error {
|
|
|
|
elm, err := pp.fetcher.Initial()
|
2019-12-08 12:17:24 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
pp.onUpdate(elm)
|
2019-12-08 12:17:24 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-07-04 20:32:59 +08:00
|
|
|
func (pp *proxySetProvider) Type() types.ProviderType {
|
|
|
|
return types.Proxy
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) Proxies() []C.Proxy {
|
2019-12-08 12:17:24 +08:00
|
|
|
return pp.proxies
|
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
func (pp *proxySetProvider) ProxiesWithTouch() []C.Proxy {
|
|
|
|
pp.healthCheck.touch()
|
|
|
|
return pp.Proxies()
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func proxiesParse(buf []byte) (interface{}, error) {
|
2019-12-08 12:17:24 +08:00
|
|
|
schema := &ProxySchema{}
|
|
|
|
|
|
|
|
if err := yaml.Unmarshal(buf, schema); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if schema.Proxies == nil {
|
2020-08-25 22:19:59 +08:00
|
|
|
return nil, errors.New("file must have a `proxies` field")
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
proxies := []C.Proxy{}
|
|
|
|
for idx, mapping := range schema.Proxies {
|
2021-06-10 14:05:56 +08:00
|
|
|
proxy, err := adapter.ParseProxy(mapping)
|
2019-12-08 12:17:24 +08:00
|
|
|
if err != nil {
|
2020-08-25 22:19:59 +08:00
|
|
|
return nil, fmt.Errorf("proxy %d error: %w", idx, err)
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
proxies = append(proxies, proxy)
|
|
|
|
}
|
|
|
|
|
2019-12-13 00:29:24 +08:00
|
|
|
if len(proxies) == 0 {
|
2020-08-25 22:19:59 +08:00
|
|
|
return nil, errors.New("file doesn't have any valid proxy")
|
2019-12-13 00:29:24 +08:00
|
|
|
}
|
|
|
|
|
2019-12-08 12:17:24 +08:00
|
|
|
return proxies, nil
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (pp *proxySetProvider) setProxies(proxies []C.Proxy) {
|
2019-12-08 12:17:24 +08:00
|
|
|
pp.proxies = proxies
|
2019-12-26 18:41:06 +08:00
|
|
|
pp.healthCheck.setProxy(proxies)
|
2020-06-14 00:32:04 +08:00
|
|
|
if pp.healthCheck.auto() {
|
|
|
|
go pp.healthCheck.check()
|
|
|
|
}
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func stopProxyProvider(pd *ProxySetProvider) {
|
|
|
|
pd.healthCheck.close()
|
|
|
|
pd.fetcher.Destroy()
|
|
|
|
}
|
2019-12-08 12:17:24 +08:00
|
|
|
|
2021-07-04 20:32:59 +08:00
|
|
|
func NewProxySetProvider(name string, interval time.Duration, vehicle types.Vehicle, hc *HealthCheck) *ProxySetProvider {
|
2019-12-26 18:41:06 +08:00
|
|
|
if hc.auto() {
|
|
|
|
go hc.process()
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
pd := &proxySetProvider{
|
2019-12-26 18:41:06 +08:00
|
|
|
proxies: []C.Proxy{},
|
|
|
|
healthCheck: hc,
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2020-04-26 22:38:15 +08:00
|
|
|
|
2021-12-02 03:39:37 +08:00
|
|
|
onUpdate := func(elm interface{}) error {
|
2020-04-26 22:38:15 +08:00
|
|
|
ret := elm.([]C.Proxy)
|
|
|
|
pd.setProxies(ret)
|
2021-12-02 03:39:37 +08:00
|
|
|
return nil
|
2020-04-26 22:38:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fetcher := newFetcher(name, interval, vehicle, proxiesParse, onUpdate)
|
|
|
|
pd.fetcher = fetcher
|
|
|
|
|
|
|
|
wrapper := &ProxySetProvider{pd}
|
|
|
|
runtime.SetFinalizer(wrapper, stopProxyProvider)
|
|
|
|
return wrapper
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
// for auto gc
|
2020-01-11 21:02:55 +08:00
|
|
|
type CompatibleProvider struct {
|
2020-04-26 22:38:15 +08:00
|
|
|
*compatibleProvider
|
|
|
|
}
|
|
|
|
|
|
|
|
type compatibleProvider struct {
|
2019-12-08 12:17:24 +08:00
|
|
|
name string
|
2019-12-26 18:41:06 +08:00
|
|
|
healthCheck *HealthCheck
|
2019-12-08 12:17:24 +08:00
|
|
|
proxies []C.Proxy
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) MarshalJSON() ([]byte, error) {
|
2019-12-11 17:31:15 +08:00
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"name": cp.Name(),
|
|
|
|
"type": cp.Type().String(),
|
|
|
|
"vehicleType": cp.VehicleType().String(),
|
|
|
|
"proxies": cp.Proxies(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) Name() string {
|
2019-12-08 12:17:24 +08:00
|
|
|
return cp.name
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) HealthCheck() {
|
2019-12-26 18:41:06 +08:00
|
|
|
cp.healthCheck.check()
|
2019-12-11 17:31:15 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) Update() error {
|
2019-12-13 00:29:24 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) Initial() error {
|
2019-12-08 12:17:24 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-07-04 20:32:59 +08:00
|
|
|
func (cp *compatibleProvider) VehicleType() types.VehicleType {
|
|
|
|
return types.Compatible
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2021-07-04 20:32:59 +08:00
|
|
|
func (cp *compatibleProvider) Type() types.ProviderType {
|
|
|
|
return types.Proxy
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func (cp *compatibleProvider) Proxies() []C.Proxy {
|
2019-12-08 12:17:24 +08:00
|
|
|
return cp.proxies
|
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
func (cp *compatibleProvider) ProxiesWithTouch() []C.Proxy {
|
|
|
|
cp.healthCheck.touch()
|
|
|
|
return cp.Proxies()
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
func stopCompatibleProvider(pd *CompatibleProvider) {
|
|
|
|
pd.healthCheck.close()
|
|
|
|
}
|
|
|
|
|
2020-01-11 21:02:55 +08:00
|
|
|
func NewCompatibleProvider(name string, proxies []C.Proxy, hc *HealthCheck) (*CompatibleProvider, error) {
|
2019-12-08 12:17:24 +08:00
|
|
|
if len(proxies) == 0 {
|
2021-07-06 00:33:13 +08:00
|
|
|
return nil, errors.New("provider need one proxy at least")
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2019-12-26 18:41:06 +08:00
|
|
|
if hc.auto() {
|
|
|
|
go hc.process()
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:38:15 +08:00
|
|
|
pd := &compatibleProvider{
|
2019-12-08 12:17:24 +08:00
|
|
|
name: name,
|
|
|
|
proxies: proxies,
|
|
|
|
healthCheck: hc,
|
2020-04-26 22:38:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
wrapper := &CompatibleProvider{pd}
|
|
|
|
runtime.SetFinalizer(wrapper, stopCompatibleProvider)
|
|
|
|
return wrapper, nil
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2021-12-02 03:39:37 +08:00
|
|
|
|
|
|
|
// Rule
|
|
|
|
|
|
|
|
type Behavior int
|
|
|
|
|
|
|
|
var (
|
|
|
|
parse = func(ruleType, rule string, params []string) (C.Rule, error) {
|
|
|
|
return nil, errors.New("unimplemented function")
|
|
|
|
}
|
|
|
|
|
|
|
|
ruleProviders = map[string]types.RuleProvider{}
|
|
|
|
)
|
|
|
|
|
|
|
|
func SetClassicalRuleParser(function func(ruleType, rule string, params []string) (C.Rule, error)) {
|
|
|
|
parse = function
|
|
|
|
}
|
|
|
|
|
|
|
|
func RuleProviders() map[string]types.RuleProvider {
|
|
|
|
return ruleProviders
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetRuleProvider(ruleProvider types.RuleProvider) {
|
|
|
|
if ruleProvider != nil {
|
|
|
|
ruleProviders[(ruleProvider).Name()] = ruleProvider
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ruleSetProvider struct {
|
|
|
|
*fetcher
|
|
|
|
behavior Behavior
|
|
|
|
count int
|
|
|
|
DomainRules *trie.DomainTrie
|
|
|
|
IPCIDRRules *trie.IpCidrTrie
|
|
|
|
ClassicalRules []C.Rule
|
|
|
|
}
|
|
|
|
|
|
|
|
type RuleSetProvider struct {
|
|
|
|
*ruleSetProvider
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r RuleSetProvider) Behavior() types.RuleType {
|
|
|
|
//TODO implement me
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r RuleSetProvider) ShouldResolveIP() bool {
|
|
|
|
//TODO implement me
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r RuleSetProvider) AsRule(adaptor string) C.Rule {
|
|
|
|
//TODO implement me
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRuleSetProvider(name string, behavior Behavior, interval time.Duration, vehicle types.Vehicle) *RuleSetProvider {
|
|
|
|
rp := &ruleSetProvider{
|
|
|
|
behavior: behavior,
|
|
|
|
}
|
|
|
|
|
|
|
|
onUpdate := func(elm interface{}) error {
|
|
|
|
rulesRaw := elm.([]string)
|
|
|
|
rp.count = len(rulesRaw)
|
|
|
|
rules, err := constructRules(rp.behavior, rulesRaw)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rp.setRules(rules)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fetcher := newFetcher(name, interval, vehicle, rulesParse, onUpdate)
|
|
|
|
rp.fetcher = fetcher
|
|
|
|
wrapper := &RuleSetProvider{
|
|
|
|
rp,
|
|
|
|
}
|
|
|
|
|
|
|
|
runtime.SetFinalizer(wrapper, stopRuleSetProvider)
|
|
|
|
return wrapper
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Name() string {
|
|
|
|
return rp.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) RuleCount() int {
|
|
|
|
return rp.count
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
Domain = iota
|
|
|
|
IPCIDR
|
|
|
|
Classical
|
|
|
|
)
|
|
|
|
|
|
|
|
// RuleType defined
|
|
|
|
|
|
|
|
func (b Behavior) String() string {
|
|
|
|
switch b {
|
|
|
|
case Domain:
|
|
|
|
return "Domain"
|
|
|
|
case IPCIDR:
|
|
|
|
return "IPCIDR"
|
|
|
|
case Classical:
|
|
|
|
return "Classical"
|
|
|
|
default:
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Match(metadata *C.Metadata) bool {
|
|
|
|
switch rp.behavior {
|
|
|
|
case Domain:
|
|
|
|
return rp.DomainRules.Search(metadata.Host) != nil
|
|
|
|
case IPCIDR:
|
|
|
|
return rp.IPCIDRRules.IsContain(metadata.DstIP)
|
|
|
|
case Classical:
|
|
|
|
for _, rule := range rp.ClassicalRules {
|
|
|
|
if rule.Match(metadata) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Behavior() Behavior {
|
|
|
|
return rp.behavior
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) VehicleType() types.VehicleType {
|
|
|
|
return rp.vehicle.Type()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Type() types.ProviderType {
|
|
|
|
return types.Rule
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Initial() error {
|
|
|
|
elm, err := rp.fetcher.Initial()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return rp.fetcher.onUpdate(elm)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) Update() error {
|
|
|
|
elm, same, err := rp.fetcher.Update()
|
|
|
|
if err == nil && !same {
|
|
|
|
return rp.fetcher.onUpdate(elm)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) setRules(rules interface{}) {
|
|
|
|
switch rp.behavior {
|
|
|
|
case Domain:
|
|
|
|
rp.DomainRules = rules.(*trie.DomainTrie)
|
|
|
|
case Classical:
|
|
|
|
rp.ClassicalRules = rules.([]C.Rule)
|
|
|
|
case IPCIDR:
|
|
|
|
rp.IPCIDRRules = rules.(*trie.IpCidrTrie)
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rp *ruleSetProvider) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(
|
|
|
|
map[string]interface{}{
|
|
|
|
"behavior": rp.behavior.String(),
|
|
|
|
"name": rp.Name(),
|
|
|
|
"ruleCount": rp.RuleCount(),
|
|
|
|
"type": rp.Type().String(),
|
|
|
|
"updatedAt": rp.updatedAt,
|
|
|
|
"vehicleType": rp.VehicleType().String(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type RulePayload struct {
|
|
|
|
/**
|
|
|
|
key: Domain or IP Cidr
|
|
|
|
value: Rule type or is empty
|
|
|
|
*/
|
|
|
|
Rules []string `yaml:"payload"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func rulesParse(buf []byte) (interface{}, error) {
|
|
|
|
rulePayload := RulePayload{}
|
|
|
|
err := yaml.Unmarshal(buf, &rulePayload)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return rulePayload.Rules, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func constructRules(behavior Behavior, rules []string) (interface{}, error) {
|
|
|
|
switch behavior {
|
|
|
|
case Domain:
|
|
|
|
return handleDomainRules(rules)
|
|
|
|
case IPCIDR:
|
|
|
|
return handleIpCidrRules(rules)
|
|
|
|
case Classical:
|
|
|
|
return handleClassicalRules(rules)
|
|
|
|
default:
|
|
|
|
return nil, errors.New("unknown behavior type")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleDomainRules(rules []string) (interface{}, error) {
|
|
|
|
domainRules := trie.New()
|
|
|
|
for _, rawRule := range rules {
|
|
|
|
ruleType, rule, _ := ruleParse(rawRule)
|
|
|
|
if ruleType != "" {
|
|
|
|
return nil, errors.New("error format of domain")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := domainRules.Insert(rule, ""); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return domainRules, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleIpCidrRules(rules []string) (interface{}, error) {
|
|
|
|
ipCidrRules := trie.NewIpCidrTrie()
|
|
|
|
for _, rawRule := range rules {
|
|
|
|
ruleType, rule, _ := ruleParse(rawRule)
|
|
|
|
if ruleType != "" {
|
|
|
|
return nil, errors.New("error format of ip-cidr")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ipCidrRules.AddIpCidrForString(rule); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ipCidrRules, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleClassicalRules(rules []string) (interface{}, error) {
|
|
|
|
var classicalRules []C.Rule
|
|
|
|
for _, rawRule := range rules {
|
|
|
|
ruleType, rule, params := ruleParse(rawRule)
|
|
|
|
if ruleType == "RULE-SET" {
|
|
|
|
return nil, errors.New("error rule type")
|
|
|
|
}
|
|
|
|
|
|
|
|
r, err := parse(ruleType, rule, params)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
classicalRules = append(classicalRules, r)
|
|
|
|
}
|
|
|
|
return classicalRules, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
func stopRuleSetProvider(rp *RuleSetProvider) {
|
|
|
|
rp.fetcher.Destroy()
|
|
|
|
}
|