2018-09-25 16:34:15 +00:00
|
|
|
package adapters
|
|
|
|
|
|
|
|
import (
|
2018-11-21 05:47:46 +00:00
|
|
|
"encoding/json"
|
2018-09-25 16:34:15 +00:00
|
|
|
"errors"
|
2018-12-22 15:56:42 +00:00
|
|
|
"net"
|
2018-09-25 16:34:15 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
|
|
|
type proxy struct {
|
|
|
|
RawProxy C.Proxy
|
|
|
|
Valid bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type Fallback struct {
|
2018-12-22 15:56:42 +00:00
|
|
|
*Base
|
2018-10-06 07:13:44 +00:00
|
|
|
proxies []*proxy
|
|
|
|
rawURL string
|
|
|
|
interval time.Duration
|
|
|
|
done chan struct{}
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
type FallbackOption struct {
|
2018-10-06 07:13:44 +00:00
|
|
|
Name string `proxy:"name"`
|
|
|
|
Proxies []string `proxy:"proxies"`
|
|
|
|
URL string `proxy:"url"`
|
|
|
|
Interval int `proxy:"interval"`
|
2018-10-02 07:26:36 +00:00
|
|
|
}
|
|
|
|
|
2018-09-25 16:34:15 +00:00
|
|
|
func (f *Fallback) Now() string {
|
|
|
|
_, proxy := f.findNextValidProxy(0)
|
|
|
|
if proxy != nil {
|
|
|
|
return proxy.RawProxy.Name()
|
|
|
|
}
|
|
|
|
return f.proxies[0].RawProxy.Name()
|
|
|
|
}
|
|
|
|
|
2019-03-03 03:59:07 +00:00
|
|
|
func (f *Fallback) Dial(metadata *C.Metadata) (net.Conn, error) {
|
2018-09-25 16:34:15 +00:00
|
|
|
idx := 0
|
|
|
|
var proxy *proxy
|
|
|
|
for {
|
|
|
|
idx, proxy = f.findNextValidProxy(idx)
|
|
|
|
if proxy == nil {
|
|
|
|
break
|
|
|
|
}
|
2019-03-03 03:59:07 +00:00
|
|
|
adapter, err := proxy.RawProxy.Dial(metadata)
|
2018-09-25 16:34:15 +00:00
|
|
|
if err != nil {
|
|
|
|
proxy.Valid = false
|
|
|
|
idx++
|
|
|
|
continue
|
|
|
|
}
|
2018-12-22 15:56:42 +00:00
|
|
|
return adapter, err
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
2019-03-03 03:59:07 +00:00
|
|
|
return f.proxies[0].RawProxy.Dial(metadata)
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 05:47:46 +00:00
|
|
|
func (f *Fallback) MarshalJSON() ([]byte, error) {
|
|
|
|
var all []string
|
|
|
|
for _, proxy := range f.proxies {
|
|
|
|
all = append(all, proxy.RawProxy.Name())
|
|
|
|
}
|
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"type": f.Type().String(),
|
|
|
|
"now": f.Now(),
|
|
|
|
"all": all,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-25 16:34:15 +00:00
|
|
|
func (f *Fallback) Close() {
|
|
|
|
f.done <- struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Fallback) loop() {
|
2018-10-06 07:13:44 +00:00
|
|
|
tick := time.NewTicker(f.interval)
|
2018-09-25 16:34:15 +00:00
|
|
|
go f.validTest()
|
|
|
|
Loop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-tick.C:
|
|
|
|
go f.validTest()
|
|
|
|
case <-f.done:
|
|
|
|
break Loop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Fallback) findNextValidProxy(start int) (int, *proxy) {
|
|
|
|
for i := start; i < len(f.proxies); i++ {
|
|
|
|
if f.proxies[i].Valid {
|
|
|
|
return i, f.proxies[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Fallback) validTest() {
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
wg.Add(len(f.proxies))
|
|
|
|
|
|
|
|
for _, p := range f.proxies {
|
|
|
|
go func(p *proxy) {
|
|
|
|
_, err := DelayTest(p.RawProxy, f.rawURL)
|
|
|
|
p.Valid = err == nil
|
|
|
|
wg.Done()
|
|
|
|
}(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2018-10-02 07:26:36 +00:00
|
|
|
func NewFallback(option FallbackOption, proxies []C.Proxy) (*Fallback, error) {
|
|
|
|
_, err := urlToMetadata(option.URL)
|
2018-09-25 16:34:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(proxies) < 1 {
|
|
|
|
return nil, errors.New("The number of proxies cannot be 0")
|
|
|
|
}
|
|
|
|
|
2018-10-06 07:13:44 +00:00
|
|
|
interval := time.Duration(option.Interval) * time.Second
|
2018-09-25 16:34:15 +00:00
|
|
|
warpperProxies := make([]*proxy, len(proxies))
|
|
|
|
for idx := range proxies {
|
|
|
|
warpperProxies[idx] = &proxy{
|
|
|
|
RawProxy: proxies[idx],
|
|
|
|
Valid: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Fallback := &Fallback{
|
2018-12-22 15:56:42 +00:00
|
|
|
Base: &Base{
|
|
|
|
name: option.Name,
|
|
|
|
tp: C.Fallback,
|
|
|
|
},
|
2018-10-06 07:13:44 +00:00
|
|
|
proxies: warpperProxies,
|
|
|
|
rawURL: option.URL,
|
|
|
|
interval: interval,
|
|
|
|
done: make(chan struct{}),
|
2018-09-25 16:34:15 +00:00
|
|
|
}
|
|
|
|
go Fallback.loop()
|
|
|
|
return Fallback, nil
|
|
|
|
}
|