2023-09-14 12:13:45 -04:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/text/collate"
|
|
|
|
"golang.org/x/text/language"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProxyGroup struct {
|
2024-04-17 09:52:03 -04:00
|
|
|
Type string `yaml:"type,omitempty"`
|
|
|
|
Name string `yaml:"name,omitempty"`
|
|
|
|
Proxies []string `yaml:"proxies,omitempty"`
|
2024-08-11 11:55:47 -04:00
|
|
|
IsCountryGrop bool `yaml:"-"`
|
2024-04-17 09:52:03 -04:00
|
|
|
Url string `yaml:"url,omitempty"`
|
|
|
|
Interval int `yaml:"interval,omitempty"`
|
|
|
|
Tolerance int `yaml:"tolerance,omitempty"`
|
|
|
|
Lazy bool `yaml:"lazy"`
|
2024-08-11 11:55:47 -04:00
|
|
|
Size int `yaml:"-"`
|
2024-04-17 09:52:03 -04:00
|
|
|
DisableUDP bool `yaml:"disable-udp,omitempty"`
|
|
|
|
Strategy string `yaml:"strategy,omitempty"`
|
|
|
|
Icon string `yaml:"icon,omitempty"`
|
|
|
|
Timeout int `yaml:"timeout,omitempty"`
|
|
|
|
Use []string `yaml:"use,omitempty"`
|
|
|
|
InterfaceName string `yaml:"interface-name,omitempty"`
|
|
|
|
RoutingMark int `yaml:"routing-mark,omitempty"`
|
|
|
|
IncludeAll bool `yaml:"include-all,omitempty"`
|
|
|
|
IncludeAllProxies bool `yaml:"include-all-proxies,omitempty"`
|
|
|
|
IncludeAllProviders bool `yaml:"include-all-providers,omitempty"`
|
|
|
|
Filter string `yaml:"filter,omitempty"`
|
|
|
|
ExcludeFilter string `yaml:"exclude-filter,omitempty"`
|
|
|
|
ExpectedStatus int `yaml:"expected-status,omitempty"`
|
|
|
|
Hidden bool `yaml:"hidden,omitempty"`
|
2023-09-24 06:06:44 -04:00
|
|
|
}
|
|
|
|
|
2023-09-14 12:13:45 -04:00
|
|
|
type ProxyGroupsSortByName []ProxyGroup
|
|
|
|
type ProxyGroupsSortBySize []ProxyGroup
|
|
|
|
|
|
|
|
func (p ProxyGroupsSortByName) Len() int {
|
|
|
|
return len(p)
|
|
|
|
}
|
|
|
|
func (p ProxyGroupsSortBySize) Len() int {
|
|
|
|
return len(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p ProxyGroupsSortByName) Less(i, j int) bool {
|
2024-08-11 11:55:47 -04:00
|
|
|
|
2023-09-14 12:13:45 -04:00
|
|
|
tags := []language.Tag{
|
|
|
|
language.English,
|
|
|
|
language.Chinese,
|
|
|
|
}
|
|
|
|
matcher := language.NewMatcher(tags)
|
|
|
|
|
|
|
|
bestMatch, _, _ := matcher.Match(language.Make("zh"))
|
2024-08-11 11:55:47 -04:00
|
|
|
|
2023-09-14 12:13:45 -04:00
|
|
|
c := collate.New(bestMatch)
|
|
|
|
return c.CompareString(p[i].Name, p[j].Name) < 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p ProxyGroupsSortBySize) Less(i, j int) bool {
|
|
|
|
if p[i].Size == p[j].Size {
|
|
|
|
return p[i].Name < p[j].Name
|
|
|
|
}
|
|
|
|
return p[i].Size < p[j].Size
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p ProxyGroupsSortByName) Swap(i, j int) {
|
|
|
|
p[i], p[j] = p[j], p[i]
|
|
|
|
}
|
|
|
|
func (p ProxyGroupsSortBySize) Swap(i, j int) {
|
|
|
|
p[i], p[j] = p[j], p[i]
|
|
|
|
}
|