2019-12-08 12:17:24 +08:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Dreamacro/clash/common/structure"
|
2023-01-07 12:24:28 +08:00
|
|
|
"github.com/Dreamacro/clash/component/resource"
|
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
|
|
|
)
|
|
|
|
|
2021-10-10 23:44:09 +08:00
|
|
|
var errVehicleType = errors.New("unsupport vehicle type")
|
2019-12-08 12:17:24 +08:00
|
|
|
|
|
|
|
type healthCheckSchema struct {
|
|
|
|
Enable bool `provider:"enable"`
|
|
|
|
URL string `provider:"url"`
|
|
|
|
Interval int `provider:"interval"`
|
2020-11-19 00:53:22 +08:00
|
|
|
Lazy bool `provider:"lazy,omitempty"`
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type proxyProviderSchema struct {
|
2022-10-30 21:04:33 +08:00
|
|
|
Type string `provider:"type"`
|
|
|
|
Path string `provider:"path"`
|
|
|
|
URL string `provider:"url,omitempty"`
|
|
|
|
Interval int `provider:"interval,omitempty"`
|
|
|
|
Filter string `provider:"filter,omitempty"`
|
|
|
|
ExcludeFilter string `provider:"exclude-filter,omitempty"`
|
2023-01-07 12:24:28 +08:00
|
|
|
ExcludeType string `provider:"exclude-type,omitempty"`
|
2023-04-12 10:39:24 +08:00
|
|
|
DialerProxy string `provider:"dialer-proxy,omitempty"`
|
2022-10-30 21:04:33 +08:00
|
|
|
HealthCheck healthCheckSchema `provider:"health-check,omitempty"`
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2022-03-16 12:10:13 +08:00
|
|
|
func ParseProxyProvider(name string, mapping map[string]any) (types.ProxyProvider, error) {
|
2019-12-08 12:17:24 +08:00
|
|
|
decoder := structure.NewDecoder(structure.Option{TagName: "provider", WeaklyTypedInput: true})
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
schema := &proxyProviderSchema{
|
|
|
|
HealthCheck: healthCheckSchema{
|
|
|
|
Lazy: true,
|
|
|
|
},
|
|
|
|
}
|
2019-12-08 12:17:24 +08:00
|
|
|
if err := decoder.Decode(mapping, schema); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-03-24 01:00:21 +08:00
|
|
|
var hcInterval uint
|
2019-12-08 12:17:24 +08:00
|
|
|
if schema.HealthCheck.Enable {
|
2019-12-26 18:41:06 +08:00
|
|
|
hcInterval = uint(schema.HealthCheck.Interval)
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2020-11-19 00:53:22 +08:00
|
|
|
hc := NewHealthCheck([]C.Proxy{}, schema.HealthCheck.URL, hcInterval, schema.HealthCheck.Lazy)
|
2019-12-08 12:17:24 +08:00
|
|
|
|
2020-01-30 17:03:11 +08:00
|
|
|
path := C.Path.Resolve(schema.Path)
|
2019-12-08 12:17:24 +08:00
|
|
|
|
2021-07-04 20:32:59 +08:00
|
|
|
var vehicle types.Vehicle
|
2019-12-08 12:17:24 +08:00
|
|
|
switch schema.Type {
|
|
|
|
case "file":
|
2022-07-11 21:30:34 +08:00
|
|
|
vehicle = resource.NewFileVehicle(path)
|
2019-12-08 12:17:24 +08:00
|
|
|
case "http":
|
2022-07-11 21:30:34 +08:00
|
|
|
vehicle = resource.NewHTTPVehicle(schema.URL, path)
|
2019-12-08 12:17:24 +08:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("%w: %s", errVehicleType, schema.Type)
|
|
|
|
}
|
|
|
|
|
|
|
|
interval := time.Duration(uint(schema.Interval)) * time.Second
|
2021-11-20 23:38:49 +08:00
|
|
|
filter := schema.Filter
|
2022-10-30 21:04:33 +08:00
|
|
|
excludeFilter := schema.ExcludeFilter
|
2023-01-07 12:24:28 +08:00
|
|
|
excludeType := schema.ExcludeType
|
2023-04-12 10:39:24 +08:00
|
|
|
dialerProxy := schema.DialerProxy
|
2023-01-03 21:27:07 +08:00
|
|
|
|
2023-04-12 10:39:24 +08:00
|
|
|
return NewProxySetProvider(name, interval, filter, excludeFilter, excludeType, dialerProxy, vehicle, hc)
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|