mirror of
				https://github.com/bestnite/sub2clash.git
				synced 2025-11-04 04:40:36 +00:00 
			
		
		
		
	Compare commits
	
		
			14 Commits
		
	
	
		
			v0.0.12-be
			...
			v0.0.13-be
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 83a728a415 | |||
| a178d06248 | |||
| 
						 | 
					99d36d93d8 | ||
| 0a9892503d | |||
| ff81d03492 | |||
| 0fa95888cb | |||
| b44703fa0f | |||
| b256c5e809 | |||
| 307c36aa8d | |||
| 06da2e91c2 | |||
| 33d37e631b | |||
| c1012750ff | |||
| 69deed91df | |||
| 6a780a5e27 | 
							
								
								
									
										5
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -6,5 +6,6 @@ logs
 | 
				
			|||||||
data
 | 
					data
 | 
				
			||||||
.env
 | 
					.env
 | 
				
			||||||
.vscode/settings.json
 | 
					.vscode/settings.json
 | 
				
			||||||
test
 | 
					config.yaml
 | 
				
			||||||
*test.go
 | 
					config.yml
 | 
				
			||||||
 | 
					config.json
 | 
				
			||||||
@@ -154,7 +154,10 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
				return nil, NewRegexInvalidError("prefix", err)
 | 
									return nil, NewRegexInvalidError("prefix", err)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			if reg.Match(data) {
 | 
								if reg.Match(data) {
 | 
				
			||||||
				p := parser.ParseProxies(strings.Split(string(data), "\n")...)
 | 
									p, err := parser.ParseProxies(parser.ParseConfig{UseUDP: query.UseUDP}, strings.Split(string(data), "\n")...)
 | 
				
			||||||
 | 
									if err != nil {
 | 
				
			||||||
 | 
										return nil, err
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
				newProxies = p
 | 
									newProxies = p
 | 
				
			||||||
			} else {
 | 
								} else {
 | 
				
			||||||
				base64, err := parser.DecodeBase64(string(data))
 | 
									base64, err := parser.DecodeBase64(string(data))
 | 
				
			||||||
@@ -166,7 +169,10 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
					)
 | 
										)
 | 
				
			||||||
					return nil, NewSubscriptionParseError(err)
 | 
										return nil, NewSubscriptionParseError(err)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				p := parser.ParseProxies(strings.Split(base64, "\n")...)
 | 
									p, err := parser.ParseProxies(parser.ParseConfig{UseUDP: query.UseUDP}, strings.Split(base64, "\n")...)
 | 
				
			||||||
 | 
									if err != nil {
 | 
				
			||||||
 | 
										return nil, err
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
				newProxies = p
 | 
									newProxies = p
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
@@ -181,7 +187,11 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if len(query.Proxy) != 0 {
 | 
						if len(query.Proxy) != 0 {
 | 
				
			||||||
		proxyList = append(proxyList, parser.ParseProxies(query.Proxies...)...)
 | 
							p, err := parser.ParseProxies(parser.ParseConfig{UseUDP: query.UseUDP}, query.Proxies...)
 | 
				
			||||||
 | 
							if err != nil {
 | 
				
			||||||
 | 
								return nil, err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							proxyList = append(proxyList, p...)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for i := range proxyList {
 | 
						for i := range proxyList {
 | 
				
			||||||
@@ -190,6 +200,7 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// 去重
 | 
				
			||||||
	proxies := make(map[string]*P.Proxy)
 | 
						proxies := make(map[string]*P.Proxy)
 | 
				
			||||||
	newProxies := make([]P.Proxy, 0, len(proxyList))
 | 
						newProxies := make([]P.Proxy, 0, len(proxyList))
 | 
				
			||||||
	for i := range proxyList {
 | 
						for i := range proxyList {
 | 
				
			||||||
@@ -206,6 +217,7 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	proxyList = newProxies
 | 
						proxyList = newProxies
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// 移除
 | 
				
			||||||
	if strings.TrimSpace(query.Remove) != "" {
 | 
						if strings.TrimSpace(query.Remove) != "" {
 | 
				
			||||||
		newProxyList := make([]P.Proxy, 0, len(proxyList))
 | 
							newProxyList := make([]P.Proxy, 0, len(proxyList))
 | 
				
			||||||
		for i := range proxyList {
 | 
							for i := range proxyList {
 | 
				
			||||||
@@ -223,8 +235,8 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
		proxyList = newProxyList
 | 
							proxyList = newProxyList
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// 替换
 | 
				
			||||||
	if len(query.ReplaceKeys) != 0 {
 | 
						if len(query.ReplaceKeys) != 0 {
 | 
				
			||||||
 | 
					 | 
				
			||||||
		replaceRegs := make([]*regexp.Regexp, 0, len(query.ReplaceKeys))
 | 
							replaceRegs := make([]*regexp.Regexp, 0, len(query.ReplaceKeys))
 | 
				
			||||||
		for _, v := range query.ReplaceKeys {
 | 
							for _, v := range query.ReplaceKeys {
 | 
				
			||||||
			replaceReg, err := regexp.Compile(v)
 | 
								replaceReg, err := regexp.Compile(v)
 | 
				
			||||||
@@ -246,6 +258,7 @@ func BuildSub(clashType model.ClashType, query model.SubConfig, template string,
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// 重命名有相同名称的节点
 | 
				
			||||||
	names := make(map[string]int)
 | 
						names := make(map[string]int)
 | 
				
			||||||
	for i := range proxyList {
 | 
						for i := range proxyList {
 | 
				
			||||||
		if _, exist := names[proxyList[i].Name]; exist {
 | 
							if _, exist := names[proxyList[i].Name]; exist {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,10 @@
 | 
				
			|||||||
package proxy
 | 
					package proxy
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import "fmt"
 | 
					import (
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"gopkg.in/yaml.v3"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type HTTPOptions struct {
 | 
					type HTTPOptions struct {
 | 
				
			||||||
	Method  string              `yaml:"method,omitempty"`
 | 
						Method  string              `yaml:"method,omitempty"`
 | 
				
			||||||
@@ -144,7 +148,137 @@ func (p Proxy) MarshalYAML() (any, error) {
 | 
				
			|||||||
			Name:  p.Name,
 | 
								Name:  p.Name,
 | 
				
			||||||
			Vmess: p.Vmess,
 | 
								Vmess: p.Vmess,
 | 
				
			||||||
		}, nil
 | 
							}, nil
 | 
				
			||||||
 | 
						case "socks5":
 | 
				
			||||||
 | 
							return struct {
 | 
				
			||||||
 | 
								Type  string `yaml:"type"`
 | 
				
			||||||
 | 
								Name  string `yaml:"name"`
 | 
				
			||||||
 | 
								Socks `yaml:",inline"`
 | 
				
			||||||
 | 
							}{
 | 
				
			||||||
 | 
								Type:  p.Type,
 | 
				
			||||||
 | 
								Name:  p.Name,
 | 
				
			||||||
 | 
								Socks: p.Socks,
 | 
				
			||||||
 | 
							}, nil
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		return nil, fmt.Errorf("unsupported proxy type: %s", p.Type)
 | 
							return nil, fmt.Errorf("unsupported proxy type: %s", p.Type)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func (p *Proxy) UnmarshalYAML(node *yaml.Node) error {
 | 
				
			||||||
 | 
						var temp struct {
 | 
				
			||||||
 | 
							Type string `yaml:"type"`
 | 
				
			||||||
 | 
							Name string `yaml:"name"`
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if err := node.Decode(&temp); err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						p.Type = temp.Type
 | 
				
			||||||
 | 
						p.Name = temp.Name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						switch temp.Type {
 | 
				
			||||||
 | 
						case "anytls":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type   string `yaml:"type"`
 | 
				
			||||||
 | 
								Name   string `yaml:"name"`
 | 
				
			||||||
 | 
								Anytls `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Anytls = data.Anytls
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "hysteria":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type     string `yaml:"type"`
 | 
				
			||||||
 | 
								Name     string `yaml:"name"`
 | 
				
			||||||
 | 
								Hysteria `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Hysteria = data.Hysteria
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "hysteria2":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type      string `yaml:"type"`
 | 
				
			||||||
 | 
								Name      string `yaml:"name"`
 | 
				
			||||||
 | 
								Hysteria2 `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Hysteria2 = data.Hysteria2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "ss":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type        string `yaml:"type"`
 | 
				
			||||||
 | 
								Name        string `yaml:"name"`
 | 
				
			||||||
 | 
								ShadowSocks `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.ShadowSocks = data.ShadowSocks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "ssr":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type         string `yaml:"type"`
 | 
				
			||||||
 | 
								Name         string `yaml:"name"`
 | 
				
			||||||
 | 
								ShadowSocksR `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.ShadowSocksR = data.ShadowSocksR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "trojan":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type   string `yaml:"type"`
 | 
				
			||||||
 | 
								Name   string `yaml:"name"`
 | 
				
			||||||
 | 
								Trojan `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Trojan = data.Trojan
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "vless":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type  string `yaml:"type"`
 | 
				
			||||||
 | 
								Name  string `yaml:"name"`
 | 
				
			||||||
 | 
								Vless `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Vless = data.Vless
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "vmess":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type  string `yaml:"type"`
 | 
				
			||||||
 | 
								Name  string `yaml:"name"`
 | 
				
			||||||
 | 
								Vmess `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Vmess = data.Vmess
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						case "socks5":
 | 
				
			||||||
 | 
							var data struct {
 | 
				
			||||||
 | 
								Type  string `yaml:"type"`
 | 
				
			||||||
 | 
								Name  string `yaml:"name"`
 | 
				
			||||||
 | 
								Socks `yaml:",inline"`
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							if err := node.Decode(&data); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							p.Socks = data.Socks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						default:
 | 
				
			||||||
 | 
							return fmt.Errorf("unsupported proxy type: %s", temp.Type)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return nil
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,6 +32,7 @@ type SubConfig struct {
 | 
				
			|||||||
	NodeListMode        bool                 `form:"nodeList,default=false" binding:""`
 | 
						NodeListMode        bool                 `form:"nodeList,default=false" binding:""`
 | 
				
			||||||
	IgnoreCountryGrooup bool                 `form:"ignoreCountryGroup,default=false" binding:""`
 | 
						IgnoreCountryGrooup bool                 `form:"ignoreCountryGroup,default=false" binding:""`
 | 
				
			||||||
	UserAgent           string               `form:"userAgent" binding:""`
 | 
						UserAgent           string               `form:"userAgent" binding:""`
 | 
				
			||||||
 | 
						UseUDP              bool                 `form:"useUDP,default=false" binding:""`
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type RuleProviderStruct struct {
 | 
					type RuleProviderStruct struct {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,18 +26,14 @@ func (p *AnytlsParser) GetType() string {
 | 
				
			|||||||
	return "anytls"
 | 
						return "anytls"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *AnytlsParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *AnytlsParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	username := link.User.Username()
 | 
						username := link.User.Username()
 | 
				
			||||||
@@ -49,26 +45,15 @@ func (p *AnytlsParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	query := link.Query()
 | 
						query := link.Query()
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type: ErrInvalidPort,
 | 
					 | 
				
			||||||
			Raw:  portStr,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	insecure, sni := query.Get("insecure"), query.Get("sni")
 | 
						insecure, sni := query.Get("insecure"), query.Get("sni")
 | 
				
			||||||
	insecureBool := insecure == "1"
 | 
						insecureBool := insecure == "1"
 | 
				
			||||||
@@ -87,6 +72,7 @@ func (p *AnytlsParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
			Password:       password,
 | 
								Password:       password,
 | 
				
			||||||
			SNI:            sni,
 | 
								SNI:            sni,
 | 
				
			||||||
			SkipCertVerify: insecureBool,
 | 
								SkipCertVerify: insecureBool,
 | 
				
			||||||
 | 
								UDP:            config.UseUDP,
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return result, nil
 | 
						return result, nil
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,10 +5,9 @@ import (
 | 
				
			|||||||
	"errors"
 | 
						"errors"
 | 
				
			||||||
	"strconv"
 | 
						"strconv"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
 | 
						"unicode/utf8"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"github.com/bestnite/sub2clash/logger"
 | 
					 | 
				
			||||||
	P "github.com/bestnite/sub2clash/model/proxy"
 | 
						P "github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
	"go.uber.org/zap"
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func hasPrefix(proxy string, prefixes []string) bool {
 | 
					func hasPrefix(proxy string, prefixes []string) bool {
 | 
				
			||||||
@@ -34,8 +33,13 @@ func ParsePort(portStr string) (int, error) {
 | 
				
			|||||||
	return port, nil
 | 
						return port, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// isLikelyBase64 不严格判断是否是合法的 Base64, 很多分享链接不符合 Base64 规范
 | 
				
			||||||
func isLikelyBase64(s string) bool {
 | 
					func isLikelyBase64(s string) bool {
 | 
				
			||||||
	if len(s)%4 == 0 && strings.HasSuffix(s, "=") && !strings.Contains(strings.TrimSuffix(s, "="), "=") {
 | 
						if strings.TrimSpace(s) == "" {
 | 
				
			||||||
 | 
							return false
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if !strings.Contains(strings.TrimSuffix(s, "="), "=") {
 | 
				
			||||||
		s = strings.TrimSuffix(s, "=")
 | 
							s = strings.TrimSuffix(s, "=")
 | 
				
			||||||
		chars := "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
 | 
							chars := "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
 | 
				
			||||||
		for _, c := range s {
 | 
							for _, c := range s {
 | 
				
			||||||
@@ -43,17 +47,25 @@ func isLikelyBase64(s string) bool {
 | 
				
			|||||||
				return false
 | 
									return false
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		return true
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return false
 | 
					
 | 
				
			||||||
 | 
						decoded, err := DecodeBase64(s)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return false
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if !utf8.ValidString(decoded) {
 | 
				
			||||||
 | 
							return false
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return true
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func DecodeBase64(s string) (string, error) {
 | 
					func DecodeBase64(s string) (string, error) {
 | 
				
			||||||
	s = strings.TrimSpace(s)
 | 
						s = strings.TrimSpace(s)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if strings.Contains(s, "-") || strings.Contains(s, "_") {
 | 
						if strings.Contains(s, "-") || strings.Contains(s, "_") {
 | 
				
			||||||
		s = strings.Replace(s, "-", "+", -1)
 | 
							s = strings.ReplaceAll(s, "-", "+")
 | 
				
			||||||
		s = strings.Replace(s, "_", "/", -1)
 | 
							s = strings.ReplaceAll(s, "_", "/")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if len(s)%4 != 0 {
 | 
						if len(s)%4 != 0 {
 | 
				
			||||||
		s += strings.Repeat("=", 4-len(s)%4)
 | 
							s += strings.Repeat("=", 4-len(s)%4)
 | 
				
			||||||
@@ -65,23 +77,23 @@ func DecodeBase64(s string) (string, error) {
 | 
				
			|||||||
	return string(decodeStr), nil
 | 
						return string(decodeStr), nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func ParseProxies(proxies ...string) []P.Proxy {
 | 
					type ParseConfig struct {
 | 
				
			||||||
 | 
						UseUDP bool
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func ParseProxies(config ParseConfig, proxies ...string) ([]P.Proxy, error) {
 | 
				
			||||||
	var result []P.Proxy
 | 
						var result []P.Proxy
 | 
				
			||||||
	for _, proxy := range proxies {
 | 
						for _, proxy := range proxies {
 | 
				
			||||||
		if proxy != "" {
 | 
							if proxy != "" {
 | 
				
			||||||
			var proxyItem P.Proxy
 | 
								var proxyItem P.Proxy
 | 
				
			||||||
			var err error
 | 
								var err error
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			proxyItem, err = ParseProxyWithRegistry(proxy)
 | 
								proxyItem, err = ParseProxyWithRegistry(config, proxy)
 | 
				
			||||||
 | 
								if err != nil {
 | 
				
			||||||
			if err == nil {
 | 
									return nil, err
 | 
				
			||||||
				result = append(result, proxyItem)
 | 
					 | 
				
			||||||
			} else {
 | 
					 | 
				
			||||||
				logger.Logger.Debug(
 | 
					 | 
				
			||||||
					"parse proxy failed", zap.String("proxy", proxy), zap.Error(err),
 | 
					 | 
				
			||||||
				)
 | 
					 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
								result = append(result, proxyItem)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return result
 | 
						return result, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,5 @@
 | 
				
			|||||||
package parser
 | 
					package parser
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ParseError struct {
 | 
					 | 
				
			||||||
	Type    ParseErrorType
 | 
					 | 
				
			||||||
	Message string
 | 
					 | 
				
			||||||
	Raw     string
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
type ParseErrorType string
 | 
					type ParseErrorType string
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const (
 | 
					const (
 | 
				
			||||||
@@ -16,9 +10,6 @@ const (
 | 
				
			|||||||
	ErrInvalidBase64     ParseErrorType = "invalid base64"
 | 
						ErrInvalidBase64     ParseErrorType = "invalid base64"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (e *ParseError) Error() string {
 | 
					func (e ParseErrorType) Error() string {
 | 
				
			||||||
	if e.Message != "" {
 | 
						return string(e)
 | 
				
			||||||
		return string(e.Type) + ": " + e.Message + " \"" + e.Raw + "\""
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	return string(e.Type)
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,44 +27,28 @@ func (p *HysteriaParser) GetType() string {
 | 
				
			|||||||
	return "hysteria"
 | 
						return "hysteria"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *HysteriaParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *HysteriaParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidPort,
 | 
					 | 
				
			||||||
			Message: err.Error(),
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	query := link.Query()
 | 
						query := link.Query()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,18 +26,14 @@ func (p *Hysteria2Parser) GetType() string {
 | 
				
			|||||||
	return "hysteria2"
 | 
						return "hysteria2"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *Hysteria2Parser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *Hysteria2Parser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	username := link.User.Username()
 | 
						username := link.User.Username()
 | 
				
			||||||
@@ -49,26 +45,15 @@ func (p *Hysteria2Parser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	query := link.Query()
 | 
						query := link.Query()
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type: ErrInvalidPort,
 | 
					 | 
				
			||||||
			Raw:  portStr,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	obfs, obfsPassword, insecure, sni := query.Get("obfs"), query.Get("obfs-password"), query.Get("insecure"), query.Get("sni")
 | 
						obfs, obfsPassword, insecure, sni := query.Get("obfs"), query.Get("obfs-password"), query.Get("insecure"), query.Get("sni")
 | 
				
			||||||
	insecureBool := insecure == "1"
 | 
						insecureBool := insecure == "1"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
package parser
 | 
					package parser
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
	"sync"
 | 
						"sync"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -8,7 +9,7 @@ import (
 | 
				
			|||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type ProxyParser interface {
 | 
					type ProxyParser interface {
 | 
				
			||||||
	Parse(proxy string) (P.Proxy, error)
 | 
						Parse(config ParseConfig, proxy string) (P.Proxy, error)
 | 
				
			||||||
	GetPrefixes() []string
 | 
						GetPrefixes() []string
 | 
				
			||||||
	GetType() string
 | 
						GetType() string
 | 
				
			||||||
	SupportClash() bool
 | 
						SupportClash() bool
 | 
				
			||||||
@@ -63,17 +64,17 @@ func GetAllPrefixes() []string {
 | 
				
			|||||||
	return prefixes
 | 
						return prefixes
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func ParseProxyWithRegistry(proxy string) (P.Proxy, error) {
 | 
					func ParseProxyWithRegistry(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	proxy = strings.TrimSpace(proxy)
 | 
						proxy = strings.TrimSpace(proxy)
 | 
				
			||||||
	if proxy == "" {
 | 
						if proxy == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidStruct, Raw: proxy, Message: "empty proxy string"}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "empty proxy string")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for prefix, parser := range registry.parsers {
 | 
						for prefix, parser := range registry.parsers {
 | 
				
			||||||
		if strings.HasPrefix(proxy, prefix) {
 | 
							if strings.HasPrefix(proxy, prefix) {
 | 
				
			||||||
			return parser.Parse(proxy)
 | 
								return parser.Parse(config, proxy)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy, Message: "unsupported protocol"}
 | 
						return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, "unsupported protocol")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,9 +30,9 @@ func (p *ShadowsocksParser) GetType() string {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Parse 解析Shadowsocks代理
 | 
					// Parse 解析Shadowsocks代理
 | 
				
			||||||
func (p *ShadowsocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *ShadowsocksParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if !strings.Contains(proxy, "@") {
 | 
						if !strings.Contains(proxy, "@") {
 | 
				
			||||||
@@ -45,11 +45,7 @@ func (p *ShadowsocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
		d, err := DecodeBase64(s[0])
 | 
							d, err := DecodeBase64(s[0])
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
				Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
				Message: "url parse error",
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if len(s) == 2 {
 | 
							if len(s) == 2 {
 | 
				
			||||||
			proxy = "ss://" + d + "#" + s[1]
 | 
								proxy = "ss://" + d + "#" + s[1]
 | 
				
			||||||
@@ -59,59 +55,42 @@ func (p *ShadowsocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type: ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Raw:  proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	method := link.User.Username()
 | 
						method := link.User.Username()
 | 
				
			||||||
	password, _ := link.User.Password()
 | 
						password, hasPassword := link.User.Password()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if password == "" {
 | 
						if !hasPassword && isLikelyBase64(method) {
 | 
				
			||||||
		user, err := DecodeBase64(method)
 | 
							decodedStr, err := DecodeBase64(method)
 | 
				
			||||||
		if err == nil {
 | 
							if err == nil {
 | 
				
			||||||
			methodAndPass := strings.SplitN(user, ":", 2)
 | 
								methodAndPass := strings.SplitN(decodedStr, ":", 2)
 | 
				
			||||||
			if len(methodAndPass) == 2 {
 | 
								if len(methodAndPass) == 2 {
 | 
				
			||||||
				method = methodAndPass[0]
 | 
									method = methodAndPass[0]
 | 
				
			||||||
				password = methodAndPass[1]
 | 
									password = methodAndPass[1]
 | 
				
			||||||
 | 
								} else {
 | 
				
			||||||
 | 
									method = decodedStr
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if isLikelyBase64(password) {
 | 
						if password != "" && isLikelyBase64(password) {
 | 
				
			||||||
		password, err = DecodeBase64(password)
 | 
							password, err = DecodeBase64(password)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
				Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
				Message: "password decode error",
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -129,9 +108,9 @@ func (p *ShadowsocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
			Password: password,
 | 
								Password: password,
 | 
				
			||||||
			Server:   server,
 | 
								Server:   server,
 | 
				
			||||||
			Port:     port,
 | 
								Port:     port,
 | 
				
			||||||
 | 
								UDP:      config.UseUDP,
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					 | 
				
			||||||
	return result, nil
 | 
						return result, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
package parser
 | 
					package parser
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
	"net/url"
 | 
						"net/url"
 | 
				
			||||||
	"strconv"
 | 
						"strconv"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
@@ -26,9 +27,9 @@ func (p *ShadowsocksRParser) GetType() string {
 | 
				
			|||||||
	return "ssr"
 | 
						return "ssr"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *ShadowsocksRParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *ShadowsocksRParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for _, prefix := range p.GetPrefixes() {
 | 
						for _, prefix := range p.GetPrefixes() {
 | 
				
			||||||
@@ -40,32 +41,27 @@ func (p *ShadowsocksRParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	proxy, err := DecodeBase64(proxy)
 | 
						proxy, err := DecodeBase64(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidBase64, err.Error())
 | 
				
			||||||
			Type: ErrInvalidBase64,
 | 
					 | 
				
			||||||
			Raw:  proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	serverInfoAndParams := strings.SplitN(proxy, "/?", 2)
 | 
						serverInfoAndParams := strings.SplitN(proxy, "/?", 2)
 | 
				
			||||||
	parts := strings.Split(serverInfoAndParams[0], ":")
 | 
						if len(serverInfoAndParams) != 2 {
 | 
				
			||||||
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, proxy)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						parts := SplitNRight(serverInfoAndParams[0], ":", 6)
 | 
				
			||||||
 | 
						if len(parts) < 6 {
 | 
				
			||||||
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, proxy)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	server := parts[0]
 | 
						server := parts[0]
 | 
				
			||||||
	protocol := parts[2]
 | 
						protocol := parts[2]
 | 
				
			||||||
	method := parts[3]
 | 
						method := parts[3]
 | 
				
			||||||
	obfs := parts[4]
 | 
						obfs := parts[4]
 | 
				
			||||||
	password, err := DecodeBase64(parts[5])
 | 
						password, err := DecodeBase64(parts[5])
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
			Message: err.Error(),
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	port, err := ParsePort(parts[1])
 | 
						port, err := ParsePort(parts[1])
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidPort,
 | 
					 | 
				
			||||||
			Message: err.Error(),
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var obfsParam string
 | 
						var obfsParam string
 | 
				
			||||||
@@ -74,11 +70,7 @@ func (p *ShadowsocksRParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	if len(serverInfoAndParams) == 2 {
 | 
						if len(serverInfoAndParams) == 2 {
 | 
				
			||||||
		params, err := url.ParseQuery(serverInfoAndParams[1])
 | 
							params, err := url.ParseQuery(serverInfoAndParams[1])
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrCannotParseParams, err.Error())
 | 
				
			||||||
				Type:    ErrCannotParseParams,
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
				Message: err.Error(),
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if params.Get("obfsparam") != "" {
 | 
							if params.Get("obfsparam") != "" {
 | 
				
			||||||
			obfsParam, err = DecodeBase64(params.Get("obfsparam"))
 | 
								obfsParam, err = DecodeBase64(params.Get("obfsparam"))
 | 
				
			||||||
@@ -92,11 +84,7 @@ func (p *ShadowsocksRParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
			remarks = server + ":" + strconv.Itoa(port)
 | 
								remarks = server + ":" + strconv.Itoa(port)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
				Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
				Message: err.Error(),
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -112,12 +100,35 @@ func (p *ShadowsocksRParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
			Password:      password,
 | 
								Password:      password,
 | 
				
			||||||
			ObfsParam:     obfsParam,
 | 
								ObfsParam:     obfsParam,
 | 
				
			||||||
			ProtocolParam: protoParam,
 | 
								ProtocolParam: protoParam,
 | 
				
			||||||
 | 
								UDP:           config.UseUDP,
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					 | 
				
			||||||
	return result, nil
 | 
						return result, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	RegisterParser(&ShadowsocksRParser{})
 | 
						RegisterParser(&ShadowsocksRParser{})
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func SplitNRight(s, sep string, n int) []string {
 | 
				
			||||||
 | 
						if n <= 0 {
 | 
				
			||||||
 | 
							return nil
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if n == 1 {
 | 
				
			||||||
 | 
							return []string{s}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						parts := strings.Split(s, sep)
 | 
				
			||||||
 | 
						if len(parts) <= n {
 | 
				
			||||||
 | 
							return parts
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						result := make([]string, n)
 | 
				
			||||||
 | 
						for i, j := len(parts)-1, 0; i >= 0; i, j = i-1, j+1 {
 | 
				
			||||||
 | 
							if j < n-1 {
 | 
				
			||||||
 | 
								result[n-j-1] = parts[len(parts)-j-1]
 | 
				
			||||||
 | 
							} else {
 | 
				
			||||||
 | 
								result[0] = strings.Join(parts[:i+1], sep)
 | 
				
			||||||
 | 
								break
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return result
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,48 +18,33 @@ func (p *SocksParser) SupportMeta() bool {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *SocksParser) GetPrefixes() []string {
 | 
					func (p *SocksParser) GetPrefixes() []string {
 | 
				
			||||||
	return []string{"socks://"}
 | 
						return []string{"socks://", "socks5://"}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *SocksParser) GetType() string {
 | 
					func (p *SocksParser) GetType() string {
 | 
				
			||||||
	return "socks5"
 | 
						return "socks5"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *SocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *SocksParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type: ErrInvalidPort,
 | 
					 | 
				
			||||||
			Raw:  portStr,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	remarks := link.Fragment
 | 
						remarks := link.Fragment
 | 
				
			||||||
@@ -68,23 +53,26 @@ func (p *SocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	remarks = strings.TrimSpace(remarks)
 | 
						remarks = strings.TrimSpace(remarks)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	encodeStr := link.User.Username()
 | 
					 | 
				
			||||||
	var username, password string
 | 
						var username, password string
 | 
				
			||||||
	if encodeStr != "" {
 | 
					
 | 
				
			||||||
		decodeStr, err := DecodeBase64(encodeStr)
 | 
						username = link.User.Username()
 | 
				
			||||||
		splitStr := strings.Split(decodeStr, ":")
 | 
						password, hasPassword := link.User.Password()
 | 
				
			||||||
		if err != nil {
 | 
					
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
						if !hasPassword && isLikelyBase64(username) {
 | 
				
			||||||
				Type:    ErrInvalidStruct,
 | 
							decodedStr, err := DecodeBase64(username)
 | 
				
			||||||
				Message: "url parse error",
 | 
							if err == nil {
 | 
				
			||||||
				Raw:     proxy,
 | 
								usernameAndPassword := strings.SplitN(decodedStr, ":", 2)
 | 
				
			||||||
 | 
								if len(usernameAndPassword) == 2 {
 | 
				
			||||||
 | 
									username = usernameAndPassword[0]
 | 
				
			||||||
 | 
									password = usernameAndPassword[1]
 | 
				
			||||||
 | 
								} else {
 | 
				
			||||||
 | 
									username = decodedStr
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		username = splitStr[0]
 | 
					 | 
				
			||||||
		if len(splitStr) == 2 {
 | 
					 | 
				
			||||||
			password = splitStr[1]
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						tls, udp := link.Query().Get("tls"), link.Query().Get("udp")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return P.Proxy{
 | 
						return P.Proxy{
 | 
				
			||||||
		Type: p.GetType(),
 | 
							Type: p.GetType(),
 | 
				
			||||||
		Name: remarks,
 | 
							Name: remarks,
 | 
				
			||||||
@@ -93,9 +81,10 @@ func (p *SocksParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
			Port:     port,
 | 
								Port:     port,
 | 
				
			||||||
			UserName: username,
 | 
								UserName: username,
 | 
				
			||||||
			Password: password,
 | 
								Password: password,
 | 
				
			||||||
 | 
								TLS:      tls == "true",
 | 
				
			||||||
 | 
								UDP:      udp == "true",
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	}, nil
 | 
						}, nil
 | 
				
			||||||
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,45 +26,29 @@ func (p *TrojanParser) GetType() string {
 | 
				
			|||||||
	return "trojan"
 | 
						return "trojan"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *TrojanParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *TrojanParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	password := link.User.Username()
 | 
						password := link.User.Username()
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	if portStr == "" {
 | 
						if portStr == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server port")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server port",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidPort,
 | 
					 | 
				
			||||||
			Message: err.Error(),
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	remarks := link.Fragment
 | 
						remarks := link.Fragment
 | 
				
			||||||
@@ -74,7 +58,17 @@ func (p *TrojanParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	remarks = strings.TrimSpace(remarks)
 | 
						remarks = strings.TrimSpace(remarks)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	query := link.Query()
 | 
						query := link.Query()
 | 
				
			||||||
	network, security, alpnStr, sni, pbk, sid, fp, path, host, serviceName := query.Get("type"), query.Get("security"), query.Get("alpn"), query.Get("sni"), query.Get("pbk"), query.Get("sid"), query.Get("fp"), query.Get("path"), query.Get("host"), query.Get("serviceName")
 | 
						network, security, alpnStr, sni, pbk, sid, fp, path, host, serviceName, udp, insecure := query.Get("type"), query.Get("security"), query.Get("alpn"), query.Get("sni"), query.Get("pbk"), query.Get("sid"), query.Get("fp"), query.Get("path"), query.Get("host"), query.Get("serviceName"), query.Get("udp"), query.Get("allowInsecure")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						insecureBool := insecure == "1"
 | 
				
			||||||
 | 
						result := P.Trojan{
 | 
				
			||||||
 | 
							Server:         server,
 | 
				
			||||||
 | 
							Port:           port,
 | 
				
			||||||
 | 
							Password:       password,
 | 
				
			||||||
 | 
							Network:        network,
 | 
				
			||||||
 | 
							UDP:            udp == "true",
 | 
				
			||||||
 | 
							SkipCertVerify: insecureBool,
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var alpn []string
 | 
						var alpn []string
 | 
				
			||||||
	if strings.Contains(alpnStr, ",") {
 | 
						if strings.Contains(alpnStr, ",") {
 | 
				
			||||||
@@ -82,26 +76,23 @@ func (p *TrojanParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		alpn = nil
 | 
							alpn = nil
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						if len(alpn) > 0 {
 | 
				
			||||||
	result := P.Trojan{
 | 
							result.ALPN = alpn
 | 
				
			||||||
		Server:   server,
 | 
					 | 
				
			||||||
		Port:     port,
 | 
					 | 
				
			||||||
		Password: password,
 | 
					 | 
				
			||||||
		Network:  network,
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if security == "xtls" || security == "tls" {
 | 
						if fp != "" {
 | 
				
			||||||
		result.ALPN = alpn
 | 
							result.ClientFingerprint = fp
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if sni != "" {
 | 
				
			||||||
		result.SNI = sni
 | 
							result.SNI = sni
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if security == "reality" {
 | 
						if security == "reality" {
 | 
				
			||||||
		result.SNI = sni
 | 
					 | 
				
			||||||
		result.RealityOpts = P.RealityOptions{
 | 
							result.RealityOpts = P.RealityOptions{
 | 
				
			||||||
			PublicKey: pbk,
 | 
								PublicKey: pbk,
 | 
				
			||||||
			ShortID:   sid,
 | 
								ShortID:   sid,
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		result.Fingerprint = fp
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if network == "ws" {
 | 
						if network == "ws" {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,41 +26,29 @@ func (p *VlessParser) GetType() string {
 | 
				
			|||||||
	return "vless"
 | 
						return "vless"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *VlessParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *VlessParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	link, err := url.Parse(proxy)
 | 
						link, err := url.Parse(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "url parse error",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	server := link.Hostname()
 | 
						server := link.Hostname()
 | 
				
			||||||
	if server == "" {
 | 
						if server == "" {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, "missing server host")
 | 
				
			||||||
			Type:    ErrInvalidStruct,
 | 
					 | 
				
			||||||
			Message: "missing server host",
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	portStr := link.Port()
 | 
						portStr := link.Port()
 | 
				
			||||||
	port, err := ParsePort(portStr)
 | 
						port, err := ParsePort(portStr)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
			Type:    ErrInvalidPort,
 | 
					 | 
				
			||||||
			Message: err.Error(),
 | 
					 | 
				
			||||||
			Raw:     proxy,
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	query := link.Query()
 | 
						query := link.Query()
 | 
				
			||||||
	uuid := link.User.Username()
 | 
						uuid := link.User.Username()
 | 
				
			||||||
	flow, security, alpnStr, sni, insecure, fp, pbk, sid, path, host, serviceName, _type := query.Get("flow"), query.Get("security"), query.Get("alpn"), query.Get("sni"), query.Get("allowInsecure"), query.Get("fp"), query.Get("pbk"), query.Get("sid"), query.Get("path"), query.Get("host"), query.Get("serviceName"), query.Get("type")
 | 
						flow, security, alpnStr, sni, insecure, fp, pbk, sid, path, host, serviceName, _type, udp := query.Get("flow"), query.Get("security"), query.Get("alpn"), query.Get("sni"), query.Get("allowInsecure"), query.Get("fp"), query.Get("pbk"), query.Get("sid"), query.Get("path"), query.Get("host"), query.Get("serviceName"), query.Get("type"), query.Get("udp")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	insecureBool := insecure == "1"
 | 
						insecureBool := insecure == "1"
 | 
				
			||||||
	var alpn []string
 | 
						var alpn []string
 | 
				
			||||||
@@ -69,6 +57,7 @@ func (p *VlessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		alpn = nil
 | 
							alpn = nil
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	remarks := link.Fragment
 | 
						remarks := link.Fragment
 | 
				
			||||||
	if remarks == "" {
 | 
						if remarks == "" {
 | 
				
			||||||
		remarks = fmt.Sprintf("%s:%s", server, portStr)
 | 
							remarks = fmt.Sprintf("%s:%s", server, portStr)
 | 
				
			||||||
@@ -76,27 +65,36 @@ func (p *VlessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	remarks = strings.TrimSpace(remarks)
 | 
						remarks = strings.TrimSpace(remarks)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	result := P.Vless{
 | 
						result := P.Vless{
 | 
				
			||||||
		Server: server,
 | 
							Server:         server,
 | 
				
			||||||
		Port:   port,
 | 
							Port:           port,
 | 
				
			||||||
		UUID:   uuid,
 | 
							UUID:           uuid,
 | 
				
			||||||
		Flow:   flow,
 | 
							Flow:           flow,
 | 
				
			||||||
 | 
							UDP:            udp == "true",
 | 
				
			||||||
 | 
							SkipCertVerify: insecureBool,
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if len(alpn) > 0 {
 | 
				
			||||||
 | 
							result.ALPN = alpn
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if fp != "" {
 | 
				
			||||||
 | 
							result.ClientFingerprint = fp
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if sni != "" {
 | 
				
			||||||
 | 
							result.ServerName = sni
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if security == "tls" {
 | 
						if security == "tls" {
 | 
				
			||||||
		result.TLS = true
 | 
							result.TLS = true
 | 
				
			||||||
		result.ALPN = alpn
 | 
					 | 
				
			||||||
		result.SkipCertVerify = insecureBool
 | 
					 | 
				
			||||||
		result.ClientFingerprint = fp
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if security == "reality" {
 | 
						if security == "reality" {
 | 
				
			||||||
		result.TLS = true
 | 
							result.TLS = true
 | 
				
			||||||
		result.ServerName = sni
 | 
					 | 
				
			||||||
		result.RealityOpts = P.RealityOptions{
 | 
							result.RealityOpts = P.RealityOptions{
 | 
				
			||||||
			PublicKey: pbk,
 | 
								PublicKey: pbk,
 | 
				
			||||||
			ShortID:   sid,
 | 
								ShortID:   sid,
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		result.ClientFingerprint = fp
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if _type == "ws" {
 | 
						if _type == "ws" {
 | 
				
			||||||
@@ -125,11 +123,7 @@ func (p *VlessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		hosts, err := url.QueryUnescape(host)
 | 
							hosts, err := url.QueryUnescape(host)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrCannotParseParams, err.Error())
 | 
				
			||||||
				Type:    ErrCannotParseParams,
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
				Message: err.Error(),
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		result.Network = "http"
 | 
							result.Network = "http"
 | 
				
			||||||
		if hosts != "" {
 | 
							if hosts != "" {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,6 +2,7 @@ package parser
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"encoding/json"
 | 
						"encoding/json"
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
	"net/url"
 | 
						"net/url"
 | 
				
			||||||
	"strconv"
 | 
						"strconv"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
@@ -45,9 +46,9 @@ func (p *VmessParser) GetType() string {
 | 
				
			|||||||
	return "vmess"
 | 
						return "vmess"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (p *VmessParser) Parse(proxy string) (P.Proxy, error) {
 | 
					func (p *VmessParser) Parse(config ParseConfig, proxy string) (P.Proxy, error) {
 | 
				
			||||||
	if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
						if !hasPrefix(proxy, p.GetPrefixes()) {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPrefix, proxy)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for _, prefix := range p.GetPrefixes() {
 | 
						for _, prefix := range p.GetPrefixes() {
 | 
				
			||||||
@@ -58,13 +59,13 @@ func (p *VmessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	base64, err := DecodeBase64(proxy)
 | 
						base64, err := DecodeBase64(proxy)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidBase64, Raw: proxy, Message: err.Error()}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidBase64, err.Error())
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var vmess VmessJson
 | 
						var vmess VmessJson
 | 
				
			||||||
	err = json.Unmarshal([]byte(base64), &vmess)
 | 
						err = json.Unmarshal([]byte(base64), &vmess)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return P.Proxy{}, &ParseError{Type: ErrInvalidStruct, Raw: proxy, Message: err.Error()}
 | 
							return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var port int
 | 
						var port int
 | 
				
			||||||
@@ -72,11 +73,7 @@ func (p *VmessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	case string:
 | 
						case string:
 | 
				
			||||||
		port, err = ParsePort(vmess.Port.(string))
 | 
							port, err = ParsePort(vmess.Port.(string))
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidPort, err.Error())
 | 
				
			||||||
				Type:    ErrInvalidPort,
 | 
					 | 
				
			||||||
				Message: err.Error(),
 | 
					 | 
				
			||||||
				Raw:     proxy,
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	case float64:
 | 
						case float64:
 | 
				
			||||||
		port = int(vmess.Port.(float64))
 | 
							port = int(vmess.Port.(float64))
 | 
				
			||||||
@@ -87,7 +84,7 @@ func (p *VmessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
	case string:
 | 
						case string:
 | 
				
			||||||
		aid, err = strconv.Atoi(vmess.Aid.(string))
 | 
							aid, err = strconv.Atoi(vmess.Aid.(string))
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return P.Proxy{}, &ParseError{Type: ErrInvalidStruct, Raw: proxy, Message: err.Error()}
 | 
								return P.Proxy{}, fmt.Errorf("%w: %s", ErrInvalidStruct, err.Error())
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	case float64:
 | 
						case float64:
 | 
				
			||||||
		aid = int(vmess.Aid.(float64))
 | 
							aid = int(vmess.Aid.(float64))
 | 
				
			||||||
@@ -102,25 +99,36 @@ func (p *VmessParser) Parse(proxy string) (P.Proxy, error) {
 | 
				
			|||||||
		name = vmess.Ps
 | 
							name = vmess.Ps
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						var alpn []string
 | 
				
			||||||
 | 
						if strings.Contains(vmess.Alpn, ",") {
 | 
				
			||||||
 | 
							alpn = strings.Split(vmess.Alpn, ",")
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							alpn = nil
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	result := P.Vmess{
 | 
						result := P.Vmess{
 | 
				
			||||||
		Server:  vmess.Add,
 | 
							Server:  vmess.Add,
 | 
				
			||||||
		Port:    port,
 | 
							Port:    port,
 | 
				
			||||||
		UUID:    vmess.Id,
 | 
							UUID:    vmess.Id,
 | 
				
			||||||
		AlterID: aid,
 | 
							AlterID: aid,
 | 
				
			||||||
		Cipher:  vmess.Scy,
 | 
							Cipher:  vmess.Scy,
 | 
				
			||||||
 | 
							UDP:     config.UseUDP,
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if len(alpn) > 0 {
 | 
				
			||||||
 | 
							result.ALPN = alpn
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if vmess.Fp != "" {
 | 
				
			||||||
 | 
							result.ClientFingerprint = vmess.Fp
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if vmess.Sni != "" {
 | 
				
			||||||
 | 
							result.ServerName = vmess.Sni
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if vmess.Tls == "tls" {
 | 
						if vmess.Tls == "tls" {
 | 
				
			||||||
		var alpn []string
 | 
					 | 
				
			||||||
		if strings.Contains(vmess.Alpn, ",") {
 | 
					 | 
				
			||||||
			alpn = strings.Split(vmess.Alpn, ",")
 | 
					 | 
				
			||||||
		} else {
 | 
					 | 
				
			||||||
			alpn = nil
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		result.TLS = true
 | 
							result.TLS = true
 | 
				
			||||||
		result.Fingerprint = vmess.Fp
 | 
					 | 
				
			||||||
		result.ALPN = alpn
 | 
					 | 
				
			||||||
		result.ServerName = vmess.Sni
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if vmess.Net == "ws" {
 | 
						if vmess.Net == "ws" {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
package handler
 | 
					package handler
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
	"io"
 | 
						"io"
 | 
				
			||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
@@ -168,7 +169,19 @@ func GetRawConfHandler(c *gin.Context) {
 | 
				
			|||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	response, err := http.Get(strings.TrimSuffix(config.GlobalConfig.Address, "/") + "/" + shortLink.Url)
 | 
						scheme := "http"
 | 
				
			||||||
 | 
						if c.Request.TLS != nil {
 | 
				
			||||||
 | 
							scheme = "https"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						host := c.Request.Host
 | 
				
			||||||
 | 
						targetPath := strings.TrimPrefix(shortLink.Url, "/")
 | 
				
			||||||
 | 
						requestURL := fmt.Sprintf("%s://%s/%s", scheme, host, targetPath)
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						client := &http.Client{
 | 
				
			||||||
 | 
							Timeout: 30 * time.Second, // 30秒超时
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						response, err := client.Get(requestURL)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		respondWithError(c, http.StatusInternalServerError, "请求错误: "+err.Error())
 | 
							respondWithError(c, http.StatusInternalServerError, "请求错误: "+err.Error())
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,10 +27,9 @@ func SubHandler(model M.ClashType, template string) func(c *gin.Context) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		if len(query.Subs) == 1 {
 | 
							if len(query.Subs) == 1 {
 | 
				
			||||||
			userInfoHeader, err := common.FetchSubscriptionUserInfo(query.Subs[0], "clash", config.GlobalConfig.RequestRetryTimes)
 | 
								userInfoHeader, err := common.FetchSubscriptionUserInfo(query.Subs[0], "clash", config.GlobalConfig.RequestRetryTimes)
 | 
				
			||||||
			if err != nil {
 | 
								if err == nil {
 | 
				
			||||||
				c.String(http.StatusInternalServerError, err.Error())
 | 
									c.Header("subscription-userinfo", userInfoHeader)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			c.Header("subscription-userinfo", userInfoHeader)
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if query.NodeListMode {
 | 
							if query.NodeListMode {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html lang="zh-CN">
 | 
					<html lang="zh-CN" data-bs-theme="light">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<head>
 | 
					<head>
 | 
				
			||||||
    <meta charset="UTF-8" />
 | 
					    <meta charset="UTF-8" />
 | 
				
			||||||
@@ -28,10 +28,38 @@
 | 
				
			|||||||
            height: 25px;
 | 
					            height: 25px;
 | 
				
			||||||
            width: 25px;
 | 
					            width: 25px;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /* 主题切换按钮样式 */
 | 
				
			||||||
 | 
					        .theme-toggle {
 | 
				
			||||||
 | 
					            position: fixed;
 | 
				
			||||||
 | 
					            top: 20px;
 | 
				
			||||||
 | 
					            right: 20px;
 | 
				
			||||||
 | 
					            z-index: 1000;
 | 
				
			||||||
 | 
					            border: none;
 | 
				
			||||||
 | 
					            border-radius: 50%;
 | 
				
			||||||
 | 
					            width: 50px;
 | 
				
			||||||
 | 
					            height: 50px;
 | 
				
			||||||
 | 
					            font-size: 20px;
 | 
				
			||||||
 | 
					            display: flex;
 | 
				
			||||||
 | 
					            align-items: center;
 | 
				
			||||||
 | 
					            justify-content: center;
 | 
				
			||||||
 | 
					            transition: all 0.3s ease;
 | 
				
			||||||
 | 
					            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        .theme-toggle:hover {
 | 
				
			||||||
 | 
					            transform: scale(1.1);
 | 
				
			||||||
 | 
					            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    </style>
 | 
					    </style>
 | 
				
			||||||
</head>
 | 
					</head>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<body class="bg-light">
 | 
					<body>
 | 
				
			||||||
 | 
					    <!-- 主题切换按钮 -->
 | 
				
			||||||
 | 
					    <button class="theme-toggle btn btn-outline-secondary" onclick="toggleTheme()" title="切换深色/浅色模式">
 | 
				
			||||||
 | 
					        <span id="theme-icon">🌙</span>
 | 
				
			||||||
 | 
					    </button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <div class="container mt-5">
 | 
					    <div class="container mt-5">
 | 
				
			||||||
        <div class="mb-4">
 | 
					        <div class="mb-4">
 | 
				
			||||||
            <h2>sub2clash</h2>
 | 
					            <h2>sub2clash</h2>
 | 
				
			||||||
@@ -55,7 +83,7 @@
 | 
				
			|||||||
            <label for="endpoint">客户端类型:</label>
 | 
					            <label for="endpoint">客户端类型:</label>
 | 
				
			||||||
            <select class="form-control" id="endpoint" name="endpoint">
 | 
					            <select class="form-control" id="endpoint" name="endpoint">
 | 
				
			||||||
                <option value="clash">Clash</option>
 | 
					                <option value="clash">Clash</option>
 | 
				
			||||||
                <option value="meta">Clash.Meta</option>
 | 
					                <option value="meta" selected>Clash.Meta</option>
 | 
				
			||||||
            </select>
 | 
					            </select>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <!-- Template -->
 | 
					        <!-- Template -->
 | 
				
			||||||
@@ -75,9 +103,9 @@
 | 
				
			|||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <!-- User Agent -->
 | 
					        <!-- User Agent -->
 | 
				
			||||||
        <div class="form-group mb-3">
 | 
					        <div class="form-group mb-3">
 | 
				
			||||||
            <label for="user-agent">ua标识:</label>
 | 
					            <label for="user-agent">UA 标识:</label>
 | 
				
			||||||
            <textarea class="form-control" id="user-agent" name="user-agent"
 | 
					            <textarea class="form-control" id="user-agent" name="user-agent"
 | 
				
			||||||
                placeholder="用于获取订阅的http请求中的user-agent标识(可选)" rows="3"></textarea>
 | 
					                placeholder="用于获取订阅的 http 请求中的 User-Agent 标识(可选)" rows="3"></textarea>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <!-- Refresh -->
 | 
					        <!-- Refresh -->
 | 
				
			||||||
        <div class="form-check mb-3">
 | 
					        <div class="form-check mb-3">
 | 
				
			||||||
@@ -104,6 +132,11 @@
 | 
				
			|||||||
            <input class="form-check-input" id="igcg" name="igcg" type="checkbox" />
 | 
					            <input class="form-check-input" id="igcg" name="igcg" type="checkbox" />
 | 
				
			||||||
            <label class="form-check-label" for="igcg">不输出国家策略组</label>
 | 
					            <label class="form-check-label" for="igcg">不输出国家策略组</label>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					        <!-- Use UDP -->
 | 
				
			||||||
 | 
					        <div class="form-check mb-3">
 | 
				
			||||||
 | 
					            <input class="form-check-input" id="useUDP" name="useUDP" type="checkbox" />
 | 
				
			||||||
 | 
					            <label class="form-check-label" for="useUDP">使用 UDP</label>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
        <!-- Rule Provider -->
 | 
					        <!-- Rule Provider -->
 | 
				
			||||||
        <div class="form-group mb-3" id="ruleProviderGroup">
 | 
					        <div class="form-group mb-3" id="ruleProviderGroup">
 | 
				
			||||||
            <label>Rule Provider:</label>
 | 
					            <label>Rule Provider:</label>
 | 
				
			||||||
@@ -145,7 +178,7 @@
 | 
				
			|||||||
        <div class="form-group mb-5">
 | 
					        <div class="form-group mb-5">
 | 
				
			||||||
            <label for="apiLink">配置链接:</label>
 | 
					            <label for="apiLink">配置链接:</label>
 | 
				
			||||||
            <div class="input-group mb-2">
 | 
					            <div class="input-group mb-2">
 | 
				
			||||||
                <input class="form-control bg-light" id="apiLink" type="text" placeholder="链接" readonly
 | 
					                <input class="form-control" id="apiLink" type="text" placeholder="链接" readonly
 | 
				
			||||||
                    style="cursor: not-allowed;" />
 | 
					                    style="cursor: not-allowed;" />
 | 
				
			||||||
                <button class="btn btn-primary" onclick="copyToClipboard('apiLink',this)" type="button">
 | 
					                <button class="btn btn-primary" onclick="copyToClipboard('apiLink',this)" type="button">
 | 
				
			||||||
                    复制链接
 | 
					                    复制链接
 | 
				
			||||||
@@ -162,7 +195,7 @@
 | 
				
			|||||||
                </button>
 | 
					                </button>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
            <div class="input-group">
 | 
					            <div class="input-group">
 | 
				
			||||||
                <input class="form-control bg-light" id="apiShortLink" type="text" placeholder="短链接" readonly
 | 
					                <input class="form-control" id="apiShortLink" type="text" placeholder="短链接" readonly
 | 
				
			||||||
                    style="cursor: not-allowed;" />
 | 
					                    style="cursor: not-allowed;" />
 | 
				
			||||||
                <button class="btn btn-primary" onclick="updateShortLink()" type="button">
 | 
					                <button class="btn btn-primary" onclick="updateShortLink()" type="button">
 | 
				
			||||||
                    更新短链
 | 
					                    更新短链
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,9 @@
 | 
				
			|||||||
function setInputReadOnly(input, readonly) {
 | 
					function setInputReadOnly(input, readonly) {
 | 
				
			||||||
  if (readonly) {
 | 
					  if (readonly) {
 | 
				
			||||||
    input.readOnly = true;
 | 
					    input.readOnly = true;
 | 
				
			||||||
    input.classList.add('bg-light');
 | 
					 | 
				
			||||||
    input.style.cursor = 'not-allowed';
 | 
					    input.style.cursor = 'not-allowed';
 | 
				
			||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    input.readOnly = false;
 | 
					    input.readOnly = false;
 | 
				
			||||||
    input.classList.remove('bg-light');
 | 
					 | 
				
			||||||
    input.style.cursor = 'auto';
 | 
					    input.style.cursor = 'auto';
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -19,6 +17,7 @@ function clearExistingValues() {
 | 
				
			|||||||
  document.getElementById("autoTest").checked = false;
 | 
					  document.getElementById("autoTest").checked = false;
 | 
				
			||||||
  document.getElementById("lazy").checked = false;
 | 
					  document.getElementById("lazy").checked = false;
 | 
				
			||||||
  document.getElementById("igcg").checked = false;
 | 
					  document.getElementById("igcg").checked = false;
 | 
				
			||||||
 | 
					  document.getElementById("useUDP").checked = false;
 | 
				
			||||||
  document.getElementById("template").value = "";
 | 
					  document.getElementById("template").value = "";
 | 
				
			||||||
  document.getElementById("sort").value = "nameasc";
 | 
					  document.getElementById("sort").value = "nameasc";
 | 
				
			||||||
  document.getElementById("remove").value = "";
 | 
					  document.getElementById("remove").value = "";
 | 
				
			||||||
@@ -110,6 +109,8 @@ function generateURI() {
 | 
				
			|||||||
  queryParams.push(`nodeList=${nodeList ? "true" : "false"}`);
 | 
					  queryParams.push(`nodeList=${nodeList ? "true" : "false"}`);
 | 
				
			||||||
  const igcg = document.getElementById("igcg").checked;
 | 
					  const igcg = document.getElementById("igcg").checked;
 | 
				
			||||||
  queryParams.push(`ignoreCountryGroup=${igcg ? "true" : "false"}`);
 | 
					  queryParams.push(`ignoreCountryGroup=${igcg ? "true" : "false"}`);
 | 
				
			||||||
 | 
					  const useUDP = document.getElementById("useUDP").checked;
 | 
				
			||||||
 | 
					  queryParams.push(`useUDP=${useUDP ? "true" : "false"}`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // 获取模板链接或名称(如果存在)
 | 
					  // 获取模板链接或名称(如果存在)
 | 
				
			||||||
  const template = document.getElementById("template").value;
 | 
					  const template = document.getElementById("template").value;
 | 
				
			||||||
@@ -336,6 +337,11 @@ async function parseInputURL() {
 | 
				
			|||||||
    document.getElementById("nodeList").checked =
 | 
					    document.getElementById("nodeList").checked =
 | 
				
			||||||
      params.get("nodeList") === "true";
 | 
					      params.get("nodeList") === "true";
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (params.has("useUDP")) {
 | 
				
			||||||
 | 
					    document.getElementById("useUDP").checked =
 | 
				
			||||||
 | 
					      params.get("useUDP") === "true";
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function clearInputGroup(groupId) {
 | 
					function clearInputGroup(groupId) {
 | 
				
			||||||
@@ -580,4 +586,53 @@ function updateShortLink() {
 | 
				
			|||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 主题切换功能
 | 
				
			||||||
 | 
					function initTheme() {
 | 
				
			||||||
 | 
					  const html = document.querySelector('html');
 | 
				
			||||||
 | 
					  const themeIcon = document.getElementById('theme-icon');
 | 
				
			||||||
 | 
					  let theme;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // 从localStorage获取用户偏好的主题
 | 
				
			||||||
 | 
					  const savedTheme = localStorage.getItem('theme');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  if (savedTheme) {
 | 
				
			||||||
 | 
					    // 如果用户之前设置过主题,使用保存的主题
 | 
				
			||||||
 | 
					    theme = savedTheme;
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
 | 
					    // 如果没有设置过,检测系统主题偏好
 | 
				
			||||||
 | 
					    const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
 | 
				
			||||||
 | 
					    theme = prefersDark ? 'dark' : 'light';
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // 设置主题
 | 
				
			||||||
 | 
					  html.setAttribute('data-bs-theme', theme);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // 更新图标
 | 
				
			||||||
 | 
					  if (theme === 'dark') {
 | 
				
			||||||
 | 
					    themeIcon.textContent = '☀️';
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
 | 
					    themeIcon.textContent = '🌙';
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					function toggleTheme() {
 | 
				
			||||||
 | 
					  const html = document.querySelector('html');
 | 
				
			||||||
 | 
					  const currentTheme = html.getAttribute('data-bs-theme');
 | 
				
			||||||
 | 
					  // 切换主题
 | 
				
			||||||
 | 
					  const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
 | 
				
			||||||
 | 
					  html.setAttribute('data-bs-theme', newTheme);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // 更新图标
 | 
				
			||||||
 | 
					  if (newTheme === 'dark') {
 | 
				
			||||||
 | 
					    themeIcon.textContent = '☀️';
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
 | 
					    themeIcon.textContent = '🌙';
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // 保存用户偏好到localStorage
 | 
				
			||||||
 | 
					  localStorage.setItem('theme', newTheme);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
listenInput();
 | 
					listenInput();
 | 
				
			||||||
 | 
					initTheme();
 | 
				
			||||||
							
								
								
									
										219
									
								
								test/parser/anytls_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										219
									
								
								test/parser/anytls_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,219 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@127.0.0.1:8080#Anytls%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Anytls Proxy",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_WithSNI(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@proxy.example.com:443?sni=proxy.example.com#Anytls%20SNI"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Anytls SNI",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SNI:            "proxy.example.com",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_WithInsecure(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@proxy.example.com:443?insecure=1&sni=proxy.example.com#Anytls%20Insecure"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Anytls Insecure",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SNI:            "proxy.example.com",
 | 
				
			||||||
 | 
								SkipCertVerify: true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@[2001:db8::1]:8080#Anytls%20IPv6"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Anytls IPv6",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "2001:db8::1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_ComplexPassword(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://ComplexPassword!%40%23%24@proxy.example.com:8443?sni=example.com&insecure=1#Anytls%20Full"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Anytls Full",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           8443,
 | 
				
			||||||
 | 
								Password:       "ComplexPassword!@#$",
 | 
				
			||||||
 | 
								SNI:            "example.com",
 | 
				
			||||||
 | 
								SkipCertVerify: true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_NoPassword(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://@127.0.0.1:8080#No%20Password"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "No Password",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Basic_UsernameOnly(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://username@127.0.0.1:8080#Username%20Only"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "anytls",
 | 
				
			||||||
 | 
							Name: "Username Only",
 | 
				
			||||||
 | 
							Anytls: proxy.Anytls{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "username",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anytls://password123@127.0.0.1:99999"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestAnytls_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.AnytlsParser{}
 | 
				
			||||||
 | 
						input := "anyssl://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										198
									
								
								test/parser/hysteria2_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										198
									
								
								test/parser/hysteria2_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,198 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@127.0.0.1:8080#Hysteria2%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "Hysteria2 Proxy",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_AltPrefix(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hy2://password123@proxy.example.com:443?insecure=1&sni=proxy.example.com#Hysteria2%20Alt"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "Hysteria2 Alt",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SNI:            "proxy.example.com",
 | 
				
			||||||
 | 
								SkipCertVerify: true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_WithObfs(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@127.0.0.1:8080?obfs=salamander&obfs-password=obfs123#Hysteria2%20Obfs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "Hysteria2 Obfs",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								Obfs:           "salamander",
 | 
				
			||||||
 | 
								ObfsPassword:   "obfs123",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@[2001:db8::1]:8080#Hysteria2%20IPv6"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "Hysteria2 IPv6",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "2001:db8::1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_FullConfig(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@proxy.example.com:443?insecure=1&sni=proxy.example.com&obfs=salamander&obfs-password=obfs123#Hysteria2%20Full"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "Hysteria2 Full",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Password:       "password123",
 | 
				
			||||||
 | 
								SNI:            "proxy.example.com",
 | 
				
			||||||
 | 
								Obfs:           "salamander",
 | 
				
			||||||
 | 
								ObfsPassword:   "obfs123",
 | 
				
			||||||
 | 
								SkipCertVerify: true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Basic_NoPassword(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://@127.0.0.1:8080#No%20Password"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria2",
 | 
				
			||||||
 | 
							Name: "No Password",
 | 
				
			||||||
 | 
							Hysteria2: proxy.Hysteria2{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Password:       "",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria2://password123@127.0.0.1:99999"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria2_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.Hysteria2Parser{}
 | 
				
			||||||
 | 
						input := "hysteria://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										183
									
								
								test/parser/hysteria_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										183
									
								
								test/parser/hysteria_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,183 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://127.0.0.1:8080?protocol=udp&auth=password123&upmbps=100&downmbps=100#Hysteria%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria",
 | 
				
			||||||
 | 
							Name: "Hysteria Proxy",
 | 
				
			||||||
 | 
							Hysteria: proxy.Hysteria{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Protocol:       "udp",
 | 
				
			||||||
 | 
								Auth:           "password123",
 | 
				
			||||||
 | 
								Up:             "100",
 | 
				
			||||||
 | 
								Down:           "100",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Basic_WithAuthString(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://proxy.example.com:443?protocol=wechat-video&auth-str=myauth&upmbps=50&downmbps=200&insecure=true#Hysteria%20Auth"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria",
 | 
				
			||||||
 | 
							Name: "Hysteria Auth",
 | 
				
			||||||
 | 
							Hysteria: proxy.Hysteria{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Protocol:       "wechat-video",
 | 
				
			||||||
 | 
								AuthString:     "myauth",
 | 
				
			||||||
 | 
								Up:             "50",
 | 
				
			||||||
 | 
								Down:           "200",
 | 
				
			||||||
 | 
								SkipCertVerify: true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Basic_WithObfs(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://127.0.0.1:8080?auth=password123&upmbps=100&downmbps=100&obfs=xplus&alpn=h3#Hysteria%20Obfs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria",
 | 
				
			||||||
 | 
							Name: "Hysteria Obfs",
 | 
				
			||||||
 | 
							Hysteria: proxy.Hysteria{
 | 
				
			||||||
 | 
								Server:         "127.0.0.1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Auth:           "password123",
 | 
				
			||||||
 | 
								Up:             "100",
 | 
				
			||||||
 | 
								Down:           "100",
 | 
				
			||||||
 | 
								Obfs:           "xplus",
 | 
				
			||||||
 | 
								ALPN:           []string{"h3"},
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://[2001:db8::1]:8080?auth=password123&upmbps=100&downmbps=100#Hysteria%20IPv6"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria",
 | 
				
			||||||
 | 
							Name: "Hysteria IPv6",
 | 
				
			||||||
 | 
							Hysteria: proxy.Hysteria{
 | 
				
			||||||
 | 
								Server:         "2001:db8::1",
 | 
				
			||||||
 | 
								Port:           8080,
 | 
				
			||||||
 | 
								Auth:           "password123",
 | 
				
			||||||
 | 
								Up:             "100",
 | 
				
			||||||
 | 
								Down:           "100",
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Basic_MultiALPN(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://proxy.example.com:443?auth=password123&upmbps=100&downmbps=100&alpn=h3,h2,http/1.1#Hysteria%20Multi%20ALPN"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "hysteria",
 | 
				
			||||||
 | 
							Name: "Hysteria Multi ALPN",
 | 
				
			||||||
 | 
							Hysteria: proxy.Hysteria{
 | 
				
			||||||
 | 
								Server:         "proxy.example.com",
 | 
				
			||||||
 | 
								Port:           443,
 | 
				
			||||||
 | 
								Auth:           "password123",
 | 
				
			||||||
 | 
								Up:             "100",
 | 
				
			||||||
 | 
								Down:           "100",
 | 
				
			||||||
 | 
								ALPN:           []string{"h3", "h2", "http/1.1"},
 | 
				
			||||||
 | 
								SkipCertVerify: false,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://:8080?auth=password123"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://127.0.0.1?auth=password123"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria://127.0.0.1:99999?auth=password123"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestHysteria_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.HysteriaParser{}
 | 
				
			||||||
 | 
						input := "hysteria2://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										184
									
								
								test/parser/shadowsocks_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										184
									
								
								test/parser/shadowsocks_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,184 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"errors"
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmQ=@127.0.0.1:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "127.0.0.1:8080",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     8080,
 | 
				
			||||||
 | 
								Cipher:   "aes-256-gcm",
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmQ=@[2001:db8::1]:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "2001:db8::1:8080",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "2001:db8::1",
 | 
				
			||||||
 | 
								Port:     8080,
 | 
				
			||||||
 | 
								Cipher:   "aes-256-gcm",
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Basic_WithRemark(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmQ=@proxy.example.com:8080#My%20SS%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "My SS Proxy",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "proxy.example.com",
 | 
				
			||||||
 | 
								Port:     8080,
 | 
				
			||||||
 | 
								Cipher:   "aes-256-gcm",
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Advanced_Base64FullEncoded(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmRAbG9jYWxob3N0OjgwODA=#Local%20SS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "Local SS",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "localhost",
 | 
				
			||||||
 | 
								Port:     8080,
 | 
				
			||||||
 | 
								Cipher:   "aes-256-gcm",
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Advanced_PlainUserPassword(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://aes-256-gcm:password@192.168.1.1:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "192.168.1.1:8080",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "192.168.1.1",
 | 
				
			||||||
 | 
								Port:     8080,
 | 
				
			||||||
 | 
								Cipher:   "aes-256-gcm",
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Advanced_ChaCha20Cipher(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://chacha20-poly1305:mypassword@server.com:443#ChaCha20"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ss",
 | 
				
			||||||
 | 
							Name: "ChaCha20",
 | 
				
			||||||
 | 
							ShadowSocks: proxy.ShadowSocks{
 | 
				
			||||||
 | 
								Server:   "server.com",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Cipher:   "chacha20-poly1305",
 | 
				
			||||||
 | 
								Password: "mypassword",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// 错误处理测试
 | 
				
			||||||
 | 
					func TestShadowsocks_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmQ=@:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if !errors.Is(err, parser.ErrInvalidStruct) {
 | 
				
			||||||
 | 
							t.Errorf("Error is not expected: %v", err)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "ss://YWVzLTI1Ni1nY206cGFzc3dvcmQ=@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if !errors.Is(err, parser.ErrInvalidStruct) {
 | 
				
			||||||
 | 
							t.Errorf("Error is not expected: %v", err)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocks_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksParser{}
 | 
				
			||||||
 | 
						input := "http://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if !errors.Is(err, parser.ErrInvalidPrefix) {
 | 
				
			||||||
 | 
							t.Errorf("Error is not expected: %v", err)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										112
									
								
								test/parser/shadowsocksr_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										112
									
								
								test/parser/shadowsocksr_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,112 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocksR_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksRParser{}
 | 
				
			||||||
 | 
						input := "ssr://MTI3LjAuMC4xOjQ0MzpvcmlnaW46YWVzLTE5Mi1jZmI6cGxhaW46TVRJek1USXovP2dyb3VwPVpHVm1ZWFZzZEEmcmVtYXJrcz1TRUZJUVE"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ssr",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							ShadowSocksR: proxy.ShadowSocksR{
 | 
				
			||||||
 | 
								Server:        "127.0.0.1",
 | 
				
			||||||
 | 
								Port:          443,
 | 
				
			||||||
 | 
								Cipher:        "aes-192-cfb",
 | 
				
			||||||
 | 
								Password:      "123123",
 | 
				
			||||||
 | 
								ObfsParam:     "",
 | 
				
			||||||
 | 
								Obfs:          "plain",
 | 
				
			||||||
 | 
								Protocol:      "origin",
 | 
				
			||||||
 | 
								ProtocolParam: "",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocksR_Basic_WithParams(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksRParser{}
 | 
				
			||||||
 | 
						input := "ssr://MTI3LjAuMC4xOjQ0MzpvcmlnaW46YWVzLTE5Mi1jZmI6dGxzMS4wX3Nlc3Npb25fYXV0aDpNVEl6TVRJei8/b2Jmc3BhcmFtPWIySm1jeTF3WVhKaGJXVjBaWEkmcHJvdG9wYXJhbT1jSEp2ZEc5allXd3RjR0Z5WVcxbGRHVnkmZ3JvdXA9WkdWbVlYVnNkQSZyZW1hcmtzPVNFRklRUQ"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ssr",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							ShadowSocksR: proxy.ShadowSocksR{
 | 
				
			||||||
 | 
								Server:        "127.0.0.1",
 | 
				
			||||||
 | 
								Port:          443,
 | 
				
			||||||
 | 
								Cipher:        "aes-192-cfb",
 | 
				
			||||||
 | 
								Password:      "123123",
 | 
				
			||||||
 | 
								ObfsParam:     "obfs-parameter",
 | 
				
			||||||
 | 
								Obfs:          "tls1.0_session_auth",
 | 
				
			||||||
 | 
								Protocol:      "origin",
 | 
				
			||||||
 | 
								ProtocolParam: "protocal-parameter",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocksR_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksRParser{}
 | 
				
			||||||
 | 
						input := "ssr://WzIwMDE6MGRiODo4NWEzOjAwMDA6MDAwMDo4YTJlOjAzNzA6NzMzNF06NDQzOm9yaWdpbjphZXMtMTkyLWNmYjpwbGFpbjpNVEl6TVRJei8/Z3JvdXA9WkdWbVlYVnNkQSZyZW1hcmtzPVNFRklRUQ"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "ssr",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							ShadowSocksR: proxy.ShadowSocksR{
 | 
				
			||||||
 | 
								Server:        "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]",
 | 
				
			||||||
 | 
								Port:          443,
 | 
				
			||||||
 | 
								Cipher:        "aes-192-cfb",
 | 
				
			||||||
 | 
								Password:      "123123",
 | 
				
			||||||
 | 
								ObfsParam:     "",
 | 
				
			||||||
 | 
								Obfs:          "plain",
 | 
				
			||||||
 | 
								Protocol:      "origin",
 | 
				
			||||||
 | 
								ProtocolParam: "",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocksR_Error_InvalidBase64(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksRParser{}
 | 
				
			||||||
 | 
						input := "ssr://invalid_base64"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestShadowsocksR_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.ShadowsocksRParser{}
 | 
				
			||||||
 | 
						input := "ss://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										168
									
								
								test/parser/socks_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										168
									
								
								test/parser/socks_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,168 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@127.0.0.1:1080#SOCKS%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "socks5",
 | 
				
			||||||
 | 
							Name: "SOCKS Proxy",
 | 
				
			||||||
 | 
							Socks: proxy.Socks{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     1080,
 | 
				
			||||||
 | 
								UserName: "user",
 | 
				
			||||||
 | 
								Password: "pass",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Basic_NoAuth(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://127.0.0.1:1080#SOCKS%20No%20Auth"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "socks5",
 | 
				
			||||||
 | 
							Name: "SOCKS No Auth",
 | 
				
			||||||
 | 
							Socks: proxy.Socks{
 | 
				
			||||||
 | 
								Server: "127.0.0.1",
 | 
				
			||||||
 | 
								Port:   1080,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Basic_IPv6Address(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@[2001:db8::1]:1080#SOCKS%20IPv6"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "socks5",
 | 
				
			||||||
 | 
							Name: "SOCKS IPv6",
 | 
				
			||||||
 | 
							Socks: proxy.Socks{
 | 
				
			||||||
 | 
								Server:   "2001:db8::1",
 | 
				
			||||||
 | 
								Port:     1080,
 | 
				
			||||||
 | 
								UserName: "user",
 | 
				
			||||||
 | 
								Password: "pass",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Basic_WithTLS(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@127.0.0.1:1080?tls=true&sni=example.com#SOCKS%20TLS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "socks5",
 | 
				
			||||||
 | 
							Name: "SOCKS TLS",
 | 
				
			||||||
 | 
							Socks: proxy.Socks{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     1080,
 | 
				
			||||||
 | 
								UserName: "user",
 | 
				
			||||||
 | 
								Password: "pass",
 | 
				
			||||||
 | 
								TLS:      true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Basic_WithUDP(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@127.0.0.1:1080?udp=true#SOCKS%20UDP"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "socks5",
 | 
				
			||||||
 | 
							Name: "SOCKS UDP",
 | 
				
			||||||
 | 
							Socks: proxy.Socks{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     1080,
 | 
				
			||||||
 | 
								UserName: "user",
 | 
				
			||||||
 | 
								Password: "pass",
 | 
				
			||||||
 | 
								UDP:      true,
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@:1080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "socks://user:pass@127.0.0.1:99999"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestSocks_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.SocksParser{}
 | 
				
			||||||
 | 
						input := "ss://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										182
									
								
								test/parser/trojan_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										182
									
								
								test/parser/trojan_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,182 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:443#Trojan%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "trojan",
 | 
				
			||||||
 | 
							Name: "Trojan Proxy",
 | 
				
			||||||
 | 
							Trojan: proxy.Trojan{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Basic_WithTLS(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:443?security=tls&sni=example.com&alpn=h2,http/1.1#Trojan%20TLS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "trojan",
 | 
				
			||||||
 | 
							Name: "Trojan TLS",
 | 
				
			||||||
 | 
							Trojan: proxy.Trojan{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
								ALPN:     []string{"h2", "http/1.1"},
 | 
				
			||||||
 | 
								SNI:      "example.com",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Basic_WithReality(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:443?security=reality&sni=example.com&pbk=publickey123&sid=shortid123&fp=chrome#Trojan%20Reality"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "trojan",
 | 
				
			||||||
 | 
							Name: "Trojan Reality",
 | 
				
			||||||
 | 
							Trojan: proxy.Trojan{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
								SNI:      "example.com",
 | 
				
			||||||
 | 
								RealityOpts: proxy.RealityOptions{
 | 
				
			||||||
 | 
									PublicKey: "publickey123",
 | 
				
			||||||
 | 
									ShortID:   "shortid123",
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
								Fingerprint: "chrome",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Basic_WithWebSocket(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:443?type=ws&path=/ws&host=example.com#Trojan%20WS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "trojan",
 | 
				
			||||||
 | 
							Name: "Trojan WS",
 | 
				
			||||||
 | 
							Trojan: proxy.Trojan{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
								Network:  "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/ws",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "example.com",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Basic_WithGrpc(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:443?type=grpc&serviceName=grpc_service#Trojan%20gRPC"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "trojan",
 | 
				
			||||||
 | 
							Name: "Trojan gRPC",
 | 
				
			||||||
 | 
							Trojan: proxy.Trojan{
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								Password: "password",
 | 
				
			||||||
 | 
								Network:  "grpc",
 | 
				
			||||||
 | 
								GrpcOpts: proxy.GrpcOptions{
 | 
				
			||||||
 | 
									GrpcServiceName: "grpc_service",
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@:443"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "trojan://password@127.0.0.1:99999"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestTrojan_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.TrojanParser{}
 | 
				
			||||||
 | 
						input := "ss://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										24
									
								
								test/parser/utils.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								test/parser/utils.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"reflect"
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"gopkg.in/yaml.v3"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func validateResult(t *testing.T, expected proxy.Proxy, result proxy.Proxy) {
 | 
				
			||||||
 | 
						t.Helper()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if result.Type != expected.Type {
 | 
				
			||||||
 | 
							t.Errorf("Type mismatch: expected %s, got %s", expected.Type, result.Type)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if !reflect.DeepEqual(expected, result) {
 | 
				
			||||||
 | 
							expectedYaml, _ := yaml.Marshal(expected)
 | 
				
			||||||
 | 
							resultYaml, _ := yaml.Marshal(result)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							t.Errorf("Structure mismatch: \nexpected:\n %s\ngot:\n %s", string(expectedYaml), string(resultYaml))
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										214
									
								
								test/parser/vless_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										214
									
								
								test/parser/vless_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,214 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:8080#VLESS%20Proxy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS Proxy",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server: "127.0.0.1",
 | 
				
			||||||
 | 
								Port:   8080,
 | 
				
			||||||
 | 
								UUID:   "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_WithTLS(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:443?security=tls&sni=example.com&alpn=h2,http/1.1#VLESS%20TLS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS TLS",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server:     "127.0.0.1",
 | 
				
			||||||
 | 
								Port:       443,
 | 
				
			||||||
 | 
								UUID:       "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
								TLS:        true,
 | 
				
			||||||
 | 
								ALPN:       []string{"h2", "http/1.1"},
 | 
				
			||||||
 | 
								ServerName: "example.com",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_WithReality(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:443?security=reality&sni=example.com&pbk=publickey123&sid=shortid123&fp=chrome#VLESS%20Reality"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS Reality",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server:     "127.0.0.1",
 | 
				
			||||||
 | 
								Port:       443,
 | 
				
			||||||
 | 
								UUID:       "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
								TLS:        true,
 | 
				
			||||||
 | 
								ServerName: "example.com",
 | 
				
			||||||
 | 
								RealityOpts: proxy.RealityOptions{
 | 
				
			||||||
 | 
									PublicKey: "publickey123",
 | 
				
			||||||
 | 
									ShortID:   "shortid123",
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
								Fingerprint: "chrome",
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_WithWebSocket(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:443?type=ws&path=/ws&host=example.com#VLESS%20WS"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS WS",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								UUID:    "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
								Network: "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/ws",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "example.com",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_WithGrpc(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:443?type=grpc&serviceName=grpc_service#VLESS%20gRPC"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS gRPC",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								UUID:    "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
								Network: "grpc",
 | 
				
			||||||
 | 
								GrpcOpts: proxy.GrpcOptions{
 | 
				
			||||||
 | 
									GrpcServiceName: "grpc_service",
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Basic_WithHTTP(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:443?type=http&path=/path1,/path2&host=host1.com,host2.com#VLESS%20HTTP"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vless",
 | 
				
			||||||
 | 
							Name: "VLESS HTTP",
 | 
				
			||||||
 | 
							Vless: proxy.Vless{
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								UUID:    "b831b0c4-33b7-4873-9834-28d66d87d4ce",
 | 
				
			||||||
 | 
								Network: "http",
 | 
				
			||||||
 | 
								HTTPOpts: proxy.HTTPOptions{
 | 
				
			||||||
 | 
									Path: []string{"/path1", "/path2"},
 | 
				
			||||||
 | 
									Headers: map[string][]string{
 | 
				
			||||||
 | 
										"host": {"host1.com", "host2.com"},
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Error_MissingServer(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Error_MissingPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Error_InvalidPort(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "vless://b831b0c4-33b7-4873-9834-28d66d87d4ce@127.0.0.1:99999"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVless_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VlessParser{}
 | 
				
			||||||
 | 
						input := "ss://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										232
									
								
								test/parser/vmess_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										232
									
								
								test/parser/vmess_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,232 @@
 | 
				
			|||||||
 | 
					package test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"testing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/model/proxy"
 | 
				
			||||||
 | 
						"github.com/bestnite/sub2clash/parser"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_SimpleLink(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIwIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJ3cyIsInBvcnQiOiI0NDMiLCJwcyI6IkhBSEEiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOiIyIn0="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:    "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID: 0,
 | 
				
			||||||
 | 
								Cipher:  "auto",
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								TLS:     true,
 | 
				
			||||||
 | 
								Network: "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "127.0.0.1",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_WithPath(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIwIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJ3cyIsInBhdGgiOiIvd3MiLCJwb3J0IjoiNDQzIiwicHMiOiJIQUNLIiwidGxzIjoidGxzIiwidHlwZSI6Im5vbmUiLCJ2IjoiMiJ9"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HACK",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:    "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID: 0,
 | 
				
			||||||
 | 
								Cipher:  "auto",
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								TLS:     true,
 | 
				
			||||||
 | 
								Network: "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/ws",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "127.0.0.1",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_WithHost(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIwIiwiaG9zdCI6ImV4YW1wbGUuY29tIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJ3cyIsInBvcnQiOiI0NDMiLCJwcyI6IkhBSEEiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOiIyIn0="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:    "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID: 0,
 | 
				
			||||||
 | 
								Cipher:  "auto",
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								TLS:     true,
 | 
				
			||||||
 | 
								Network: "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "example.com",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_WithSNI(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIwIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJ3cyIsInBvcnQiOiI0NDMiLCJwcyI6IkhBSEEiLCJzbmkiOiJleGFtcGxlLmNvbSIsInRscyI6InRscyIsInR5cGUiOiJub25lIiwidiI6IjIifQ=="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:       "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID:    0,
 | 
				
			||||||
 | 
								Cipher:     "auto",
 | 
				
			||||||
 | 
								Server:     "127.0.0.1",
 | 
				
			||||||
 | 
								Port:       443,
 | 
				
			||||||
 | 
								TLS:        true,
 | 
				
			||||||
 | 
								Network:    "ws",
 | 
				
			||||||
 | 
								ServerName: "example.com",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "127.0.0.1",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_WithAlterID(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIxIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJ3cyIsInBvcnQiOiI0NDMiLCJwcyI6IkhBSEEiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOiIyIn0="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:    "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID: 1,
 | 
				
			||||||
 | 
								Cipher:  "auto",
 | 
				
			||||||
 | 
								Server:  "127.0.0.1",
 | 
				
			||||||
 | 
								Port:    443,
 | 
				
			||||||
 | 
								TLS:     true,
 | 
				
			||||||
 | 
								Network: "ws",
 | 
				
			||||||
 | 
								WSOpts: proxy.WSOptions{
 | 
				
			||||||
 | 
									Path: "/",
 | 
				
			||||||
 | 
									Headers: map[string]string{
 | 
				
			||||||
 | 
										"Host": "127.0.0.1",
 | 
				
			||||||
 | 
									},
 | 
				
			||||||
 | 
								},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Basic_GRPC(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJhZGQiOiIxMjcuMC4wLjEiLCJhaWQiOiIwIiwiaWQiOiIxMjM0NTY3OC05MDEyLTM0NTYtNzg5MC0xMjM0NTY3ODkwMTIiLCJuZXQiOiJncnBjIiwicG9ydCI6IjQ0MyIsInBzIjoiSEFIQSIsInRscyI6InRscyIsInR5cGUiOiJub25lIiwidiI6IjIifQ=="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						expected := proxy.Proxy{
 | 
				
			||||||
 | 
							Type: "vmess",
 | 
				
			||||||
 | 
							Name: "HAHA",
 | 
				
			||||||
 | 
							Vmess: proxy.Vmess{
 | 
				
			||||||
 | 
								UUID:     "12345678-9012-3456-7890-123456789012",
 | 
				
			||||||
 | 
								AlterID:  0,
 | 
				
			||||||
 | 
								Cipher:   "auto",
 | 
				
			||||||
 | 
								Server:   "127.0.0.1",
 | 
				
			||||||
 | 
								Port:     443,
 | 
				
			||||||
 | 
								TLS:      true,
 | 
				
			||||||
 | 
								Network:  "grpc",
 | 
				
			||||||
 | 
								GrpcOpts: proxy.GrpcOptions{},
 | 
				
			||||||
 | 
							},
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						result, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							t.Errorf("Unexpected error: %v", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						validateResult(t, expected, result)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Error_InvalidBase64(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://invalid_base64"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Error_InvalidJSON(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "vmess://eyJpbnZhbGlkIjoianNvbn0="
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func TestVmess_Error_InvalidProtocol(t *testing.T) {
 | 
				
			||||||
 | 
						p := &parser.VmessParser{}
 | 
				
			||||||
 | 
						input := "ss://example.com:8080"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						_, err := p.Parse(parser.ParseConfig{UseUDP: false}, input)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							t.Errorf("Expected error but got none")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user