mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
63 lines
1.9 KiB
Go
63 lines
1.9 KiB
Go
package provider
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/metacubex/mihomo/common/structure"
|
|
"github.com/metacubex/mihomo/component/resource"
|
|
C "github.com/metacubex/mihomo/constant"
|
|
P "github.com/metacubex/mihomo/constant/provider"
|
|
)
|
|
|
|
var (
|
|
errSubPath = errors.New("path is not subpath of home directory")
|
|
)
|
|
|
|
type ruleProviderSchema struct {
|
|
Type string `provider:"type"`
|
|
Behavior string `provider:"behavior"`
|
|
Path string `provider:"path,omitempty"`
|
|
URL string `provider:"url,omitempty"`
|
|
Proxy string `provider:"proxy,omitempty"`
|
|
Format string `provider:"format,omitempty"`
|
|
Interval int `provider:"interval,omitempty"`
|
|
}
|
|
|
|
func ParseRuleProvider(name string, mapping map[string]interface{}, parse func(tp, payload, target string, params []string, subRules map[string][]C.Rule) (parsed C.Rule, parseErr error)) (P.RuleProvider, error) {
|
|
schema := &ruleProviderSchema{}
|
|
decoder := structure.NewDecoder(structure.Option{TagName: "provider", WeaklyTypedInput: true})
|
|
if err := decoder.Decode(mapping, schema); err != nil {
|
|
return nil, err
|
|
}
|
|
behavior, err := P.ParseBehavior(schema.Behavior)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
format, err := P.ParseRuleFormat(schema.Format)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var vehicle P.Vehicle
|
|
switch schema.Type {
|
|
case "file":
|
|
path := C.Path.Resolve(schema.Path)
|
|
vehicle = resource.NewFileVehicle(path)
|
|
case "http":
|
|
path := C.Path.GetPathByHash("rules", schema.URL)
|
|
if schema.Path != "" {
|
|
path = C.Path.Resolve(schema.Path)
|
|
if !C.Path.IsSafePath(path) {
|
|
return nil, fmt.Errorf("%w: %s", errSubPath, path)
|
|
}
|
|
}
|
|
vehicle = resource.NewHTTPVehicle(schema.URL, path, schema.Proxy, nil, resource.DefaultHttpTimeout)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported vehicle type: %s", schema.Type)
|
|
}
|
|
|
|
return NewRuleSetProvider(name, behavior, format, time.Duration(uint(schema.Interval))*time.Second, vehicle, parse), nil
|
|
}
|