mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
b15344ec78
1.allow maybe empty group 2.use COMPATIBLE(DIRECT alias) when proxy group is empty 3.http provider pass through tunnel
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package outboundgroup
|
|
|
|
import (
|
|
"github.com/Dreamacro/clash/tunnel"
|
|
"regexp"
|
|
"time"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/constant/provider"
|
|
)
|
|
|
|
const (
|
|
defaultGetProxiesDuration = time.Second * 5
|
|
)
|
|
|
|
func getProvidersProxies(providers []provider.ProxyProvider, touch bool, filter string) []C.Proxy {
|
|
proxies := []C.Proxy{}
|
|
for _, provider := range providers {
|
|
if touch {
|
|
proxies = append(proxies, provider.ProxiesWithTouch()...)
|
|
} else {
|
|
proxies = append(proxies, provider.Proxies()...)
|
|
}
|
|
}
|
|
|
|
var filterReg *regexp.Regexp = nil
|
|
matchedProxies := []C.Proxy{}
|
|
if len(filter) > 0 {
|
|
filterReg = regexp.MustCompile(filter)
|
|
for _, p := range proxies {
|
|
if filterReg.MatchString(p.Name()) {
|
|
matchedProxies = append(matchedProxies, p)
|
|
}
|
|
}
|
|
//if no proxy matched, means bad filter, return all proxies
|
|
if len(matchedProxies) > 0 {
|
|
return matchedProxies
|
|
} else {
|
|
return append([]C.Proxy{}, tunnel.Proxies()["COMPATIBLE"])
|
|
}
|
|
} else {
|
|
if len(proxies) == 0 {
|
|
return append(proxies, tunnel.Proxies()["COMPATIBLE"])
|
|
} else {
|
|
return proxies
|
|
}
|
|
}
|
|
|
|
}
|