mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-09-17 15:47:14 +00:00
feat(amneziawg): complete frontend parity for the Inbounds list page
The Clients page (form, CRUD, QR/config) already worked from the prior commit; this closes the remaining gap on the Inbounds side and in a couple of protocol allowlists that a plain search for existing wireguard/mtproto handling turned up. lib/xray/inbound-link.ts gets amneziawg-specific link/config builders (genAmneziaWGLink/genAmneziaWGConfig, plus the *s fan-out variants) mirroring the wireguard ones — AmneziaWG has no legacy peers-array to fall back to, so these read settings.clients directly and add the obfuscation lines every client must share with the server. Wired into genInboundLinks generically, and into three consumers that call the wireguard builders directly rather than through that dispatcher: QrCodeModal, InboundInfoModal, and InboundsPage's bulk export. ClientInfoModal, ClientBulkAddModal, and the bulk attach/detach modals each had their own protocol allowlist that needed amneziawg added alongside wireguard/mtproto. Two real gaps surfaced by grepping every remaining 'wireguard' / Protocols.WIREGUARD hit in frontend/src rather than trusting the checklist was exhaustive: - useInbounds.ts's TRACKED_PROTOCOLS gates the deactive/depleted/ expiring/online client counts shown per inbound on the list page; without amneziawg those counts would silently read zero. - inbound-tag.ts is an explicit client-side mirror of the Go backend's port_conflict.go (the file says so itself: "Keep in sync"). It still only special-cased wireguard for UDP, so an amneziawg inbound would have fallen through to the TCP default and disagreed with the backend's own port-conflict math. Also finishes translating the AmneziaWG UI strings into the 11 locale files that were still falling back to English (ar-EG, es-ES, fa-IR, id-ID, ja-JP, pt-BR, tr-TR, uk-UA, vi-VN, zh-CN, zh-TW), matching en-US/ru-RU key-for-key (26 new keys, verified by count in every file). Not run anywhere: npm run typecheck / build. This machine has neither Node nor npm, so nothing here has compiled — reviewed by hand plus brace/paren balance checks and cross-referencing the generated Zod/TS types. Treat this as needing a real typecheck before shipping. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -915,6 +915,12 @@
|
||||
"wireguardPreSharedKey": "WireGuard 預共用金鑰",
|
||||
"wireguardAllowedIPs": "WireGuard 允許的 IP",
|
||||
"wireguardAllowedIPsHint": "留空則自動分配;多個條目用逗號分隔",
|
||||
"amneziaWgPrivateKey": "AmneziaWG 私鑰",
|
||||
"amneziaWgPublicKey": "AmneziaWG 公鑰",
|
||||
"amneziaWgPreSharedKey": "AmneziaWG 預共用金鑰",
|
||||
"amneziaWgAllowedIPs": "AmneziaWG 允許的 IP",
|
||||
"amneziaWgAllowedIPsHint": "留空則自動分配;多個條目用逗號分隔",
|
||||
"amneziaWgConfig": "AmneziaWG 設定",
|
||||
"mtprotoSecret": "MTProto 金鑰",
|
||||
"mtprotoSecretHint": "該用戶端的 FakeTLS 金鑰。重新產生即可更換。",
|
||||
"mtprotoAdTag": "廣告標籤(贊助頻道)",
|
||||
@@ -1800,6 +1806,31 @@
|
||||
"psk": "共享金鑰",
|
||||
"domainStrategy": "域策略"
|
||||
},
|
||||
"amneziawg": {
|
||||
"privateKey": "私鑰",
|
||||
"publicKey": "公鑰",
|
||||
"subnetIp": "子網路",
|
||||
"subnetCidr": "子網路 CIDR",
|
||||
"mtu": "MTU",
|
||||
"primaryDns": "主要 DNS",
|
||||
"secondaryDns": "次要 DNS",
|
||||
"externalInterface": "外部網路介面",
|
||||
"externalInterfaceHint": "用於 NAT(PostUp/PostDown)的主機網路介面。留空則自動偵測。",
|
||||
"jc": "Jc(垃圾封包數量)",
|
||||
"jmin": "Jmin(垃圾封包最小大小)",
|
||||
"jmax": "Jmax(垃圾封包最大大小)",
|
||||
"s1": "S1(init 封包填充大小)",
|
||||
"s2": "S2(response 封包填充大小)",
|
||||
"s3": "S3(cookie reply 填充,2.0)",
|
||||
"s4": "S4(傳輸封包填充,2.0)",
|
||||
"h1": "H1(魔術標頭)",
|
||||
"h2": "H2(魔術標頭)",
|
||||
"h3": "H3(魔術標頭)",
|
||||
"h4": "H4(魔術標頭)",
|
||||
"hHint": "單一整數或範圍。留空則使用經典預設值 1/2/3/4。",
|
||||
"i1": "I1(簽章封包,2.0)",
|
||||
"i1Hint": "僅適用於 AmneziaWG 2.0。留空則相容 1.x。"
|
||||
},
|
||||
"tun": {
|
||||
"nameDesc": "TUN 介面的名稱。預設值為 'xray0'",
|
||||
"mtuDesc": "最大傳輸單元。資料包的最大大小。預設值為 1500",
|
||||
|
||||
Reference in New Issue
Block a user