diff options
| author | pwnnex <pwnnex@proton.me> | 2026-04-22 19:02:05 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-22 19:02:05 +0300 |
| commit | 530c1597b87b95b1f22c6c25ab9a6041849b5a42 (patch) | |
| tree | 475c624ceb876648c494efd5672320ece6beac39 /sub/subService.go | |
| parent | c8e16d8c417680b6169bbe63d576c79b884961b8 (diff) | |
| parent | 17f67ef3a51537cbb32b2fcd3884c26434f4ee62 (diff) | |
Merge pull request #4086 from pwnnex/fix/hysteria2-protocol-aliases
hysteria: accept "hysteria2" as a protocol string (#4081)
Diffstat (limited to 'sub/subService.go')
| -rw-r--r-- | sub/subService.go | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/sub/subService.go b/sub/subService.go index dd6bbcc9..272bf9d5 100644 --- a/sub/subService.go +++ b/sub/subService.go @@ -115,12 +115,14 @@ func (s *SubService) GetSubs(subId string, host string) ([]string, int64, xray.C func (s *SubService) getInboundsBySubId(subId string) ([]*model.Inbound, error) { db := database.GetDB() var inbounds []*model.Inbound + // allow "hysteria2" so imports stored with the literal v2 protocol + // string still surface here (#4081) err := db.Model(model.Inbound{}).Preload("ClientStats").Where(`id in ( SELECT DISTINCT inbounds.id FROM inbounds, - JSON_EACH(JSON_EXTRACT(inbounds.settings, '$.clients')) AS client + JSON_EACH(JSON_EXTRACT(inbounds.settings, '$.clients')) AS client WHERE - protocol in ('vmess','vless','trojan','shadowsocks','hysteria') + protocol in ('vmess','vless','trojan','shadowsocks','hysteria','hysteria2') AND JSON_EXTRACT(client.value, '$.subId') = ? AND enable = ? )`, subId, true).Find(&inbounds).Error if err != nil { @@ -171,7 +173,7 @@ func (s *SubService) getLink(inbound *model.Inbound, email string) string { return s.genTrojanLink(inbound, email) case "shadowsocks": return s.genShadowsocksLink(inbound, email) - case "hysteria": + case "hysteria", "hysteria2": return s.genHysteriaLink(inbound, email) } return "" @@ -906,7 +908,7 @@ func (s *SubService) genShadowsocksLink(inbound *model.Inbound, email string) st } func (s *SubService) genHysteriaLink(inbound *model.Inbound, email string) string { - if inbound.Protocol != model.Hysteria { + if !model.IsHysteria(inbound.Protocol) { return "" } var stream map[string]interface{} @@ -985,12 +987,18 @@ func (s *SubService) genHysteriaLink(inbound *model.Inbound, email string) strin if len(externalProxies) > 0 { links := make([]string, 0, len(externalProxies)) for _, externalProxy := range externalProxies { - ep, _ := externalProxy.(map[string]interface{}) + ep, ok := externalProxy.(map[string]interface{}) + if !ok { + continue + } dest, _ := ep["dest"].(string) - epPort := int(ep["port"].(float64)) + portF, okPort := ep["port"].(float64) + if dest == "" || !okPort { + continue + } epRemark, _ := ep["remark"].(string) - link := fmt.Sprintf("%s://%s@%s:%d", protocol, auth, dest, epPort) + link := fmt.Sprintf("%s://%s@%s:%d", protocol, auth, dest, int(portF)) u, _ := url.Parse(link) q := u.Query() for k, v := range params { |
