package parser import ( "errors" "net/url" "strconv" "strings" model2 "sub2sing-box/model" ) func ParseVless(proxy string) (model2.Proxy, error) { if !strings.HasPrefix(proxy, "vless://") { return model2.Proxy{}, errors.New("invalid vless Url") } parts := strings.SplitN(strings.TrimPrefix(proxy, "vless://"), "@", 2) if len(parts) != 2 { return model2.Proxy{}, errors.New("invalid vless Url") } serverInfo := strings.SplitN(parts[1], "#", 2) serverAndPortAndParams := strings.SplitN(serverInfo[0], "?", 2) serverAndPort := strings.SplitN(serverAndPortAndParams[0], ":", 2) params, err := url.ParseQuery(serverAndPortAndParams[1]) if err != nil { return model2.Proxy{}, err } if len(serverAndPort) != 2 { return model2.Proxy{}, errors.New("invalid vless Url") } port, err := strconv.Atoi(strings.TrimSpace(serverAndPort[1])) if err != nil { return model2.Proxy{}, err } remarks := "" if len(serverInfo) == 2 { if strings.Contains(serverInfo[1], "|") { remarks = strings.SplitN(serverInfo[1], "|", 2)[1] } else { remarks, err = url.QueryUnescape(serverInfo[1]) if err != nil { return model2.Proxy{}, err } } } else { remarks, err = url.QueryUnescape(serverAndPort[0]) if err != nil { return model2.Proxy{}, err } } server := strings.TrimSpace(serverAndPort[0]) uuid := strings.TrimSpace(parts[0]) result := model2.Proxy{ Type: "vless", Tag: remarks, VLESS: model2.VLESS{ Server: server, ServerPort: uint16(port), UUID: uuid, Flow: params.Get("flow"), }, } if params.Get("security") == "tls" { var alpn []string if strings.Contains(params.Get("alpn"), ",") { alpn = strings.Split(params.Get("alpn"), ",") } else { alpn = nil } result.VLESS.TLS = &model2.OutboundTLSOptions{ Enabled: true, ALPN: alpn, Insecure: params.Get("allowInsecure") == "1", } } if params.Get("security") == "reality" { var alpn []string if strings.Contains(params.Get("alpn"), ",") { alpn = strings.Split(params.Get("alpn"), ",") } else { alpn = nil } result.VLESS.TLS = &model2.OutboundTLSOptions{ Enabled: true, ServerName: params.Get("sni"), UTLS: &model2.OutboundUTLSOptions{ Enabled: params.Get("fp") != "", Fingerprint: params.Get("fp"), }, Reality: &model2.OutboundRealityOptions{ Enabled: true, PublicKey: params.Get("pbk"), ShortID: params.Get("sid"), }, ALPN: alpn, } } if params.Get("type") == "ws" { result.VLESS.Transport = &model2.V2RayTransportOptions{ Type: "ws", WebsocketOptions: model2.V2RayWebsocketOptions{ Path: params.Get("path"), Headers: map[string]string{ "Host": params.Get("host"), }, }, } } if params.Get("type") == "quic" { result.VLESS.Transport = &model2.V2RayTransportOptions{ Type: "quic", QUICOptions: model2.V2RayQUICOptions{}, } } if params.Get("type") == "grpc" { result.VLESS.Transport = &model2.V2RayTransportOptions{ Type: "grpc", GRPCOptions: model2.V2RayGRPCOptions{ ServiceName: params.Get("serviceName"), }, } } if params.Get("type") == "http" { host, err := url.QueryUnescape(params.Get("host")) if err != nil { return model2.Proxy{}, err } result.VLESS.Transport = &model2.V2RayTransportOptions{ Type: "http", HTTPOptions: model2.V2RayHTTPOptions{ Host: strings.Split(host, ","), }, } } return result, nil }