| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361 |
- import { useEffect, useRef, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import dayjs from 'dayjs';
- import {
- Button,
- Card,
- Checkbox,
- Empty,
- Form,
- Input,
- InputNumber,
- Modal,
- Radio,
- Select,
- Space,
- Switch,
- Tabs,
- Tooltip,
- Typography,
- message,
- } from 'antd';
- import {
- ArrowDownOutlined,
- ArrowUpOutlined,
- DeleteOutlined,
- MinusOutlined,
- PlusOutlined,
- SyncOutlined,
- } from '@ant-design/icons';
- import { HttpUtil, NumberFormatter, RandomUtil, SizeFormatter, Wireguard } from '@/utils';
- import {
- rawInboundToFormValues,
- formValuesToWirePayload,
- } from '@/lib/xray/inbound-form-adapter';
- import { createDefaultInboundSettings } from '@/lib/xray/inbound-defaults';
- import {
- canEnableReality,
- canEnableStream,
- canEnableTls,
- isSS2022,
- } from '@/lib/xray/protocol-capabilities';
- import { SSMethodSchema } from '@/schemas/protocols/inbound/shadowsocks';
- import { getRandomRealityTarget } from '@/models/reality-targets';
- import {
- InboundFormBaseSchema,
- InboundFormSchema,
- type FallbackRow,
- type InboundFormValues,
- } from '@/schemas/forms/inbound-form';
- import { antdRule } from '@/utils/zodForm';
- import {
- ALPN_OPTION,
- DOMAIN_STRATEGY_OPTION,
- Protocols,
- SNIFFING_OPTION,
- TCP_CONGESTION_OPTION,
- TLS_CIPHER_OPTION,
- TLS_VERSION_OPTION,
- USAGE_OPTION,
- UTLS_FINGERPRINT,
- } from '@/schemas/primitives';
- import { SockoptStreamSettingsSchema } from '@/schemas/protocols/stream/sockopt';
- import { TlsStreamSettingsSchema } from '@/schemas/protocols/security/tls';
- import { RealityStreamSettingsSchema } from '@/schemas/protocols/security/reality';
- import DateTimePicker from '@/components/DateTimePicker';
- import HeaderMapEditor from '@/components/HeaderMapEditor';
- import InputAddon from '@/components/InputAddon';
- import JsonEditor from '@/components/JsonEditor';
- import type { FormInstance } from 'antd';
- import type { NamePath } from 'antd/es/form/interface';
- const { TextArea } = Input;
- import type { DBInbound } from '@/models/dbinbound';
- import type { NodeRecord } from '@/api/queries/useNodesQuery';
- // Pattern A rewrite of InboundFormModal. Built as a sibling file so the
- // build stays green while the rewrite progresses section by section.
- // InboundsPage continues to render the old InboundFormModal.tsx until the
- // atomic swap at the end (Core Decision 7).
- const { Text } = Typography;
- // Sub-editor for one slice of the form (settings, streamSettings, sniffing).
- // Holds a local text buffer so the user can type freely; on every keystroke
- // we try to JSON.parse and forward the result to form state. Invalid JSON
- // is held in the buffer until the next valid moment — no panic on partial
- // input. The buffer seeds once on mount; the modal's destroyOnHidden makes
- // each open a fresh editor instance, so we don't need to re-sync on outer
- // form changes.
- function AdvancedSliceEditor({
- form,
- path,
- minHeight,
- maxHeight,
- }: {
- form: FormInstance<InboundFormValues>;
- path: NamePath;
- minHeight?: string;
- maxHeight?: string;
- }) {
- const [text, setText] = useState(() =>
- JSON.stringify(form.getFieldValue(path) ?? {}, null, 2),
- );
- return (
- <JsonEditor
- value={text}
- minHeight={minHeight}
- maxHeight={maxHeight}
- onChange={(next) => {
- setText(next);
- try {
- form.setFieldValue(path, JSON.parse(next));
- } catch {
- }
- }}
- />
- );
- }
- const PROTOCOL_OPTIONS = Object.values(Protocols).map((p) => ({ value: p, label: p }));
- const TRAFFIC_RESETS = ['never', 'hourly', 'daily', 'weekly', 'monthly'] as const;
- const NODE_ELIGIBLE_PROTOCOLS = new Set<string>([
- Protocols.VLESS,
- Protocols.VMESS,
- Protocols.TROJAN,
- Protocols.SHADOWSOCKS,
- Protocols.HYSTERIA,
- Protocols.WIREGUARD,
- ]);
- interface InboundFormModalProps {
- open: boolean;
- onClose: () => void;
- onSaved: () => void;
- mode: 'add' | 'edit';
- dbInbound: DBInbound | null;
- dbInbounds: DBInbound[];
- availableNodes?: NodeRecord[];
- }
- function buildAddModeValues(): InboundFormValues {
- const settings = createDefaultInboundSettings('vless') ?? undefined;
- return rawInboundToFormValues({
- protocol: 'vless',
- settings,
- streamSettings: { network: 'tcp', security: 'none' },
- sniffing: {},
- port: RandomUtil.randomInteger(10000, 60000),
- listen: '',
- tag: '',
- enable: true,
- trafficReset: 'never',
- });
- }
- export default function InboundFormModal({
- open,
- onClose,
- onSaved,
- mode,
- dbInbound,
- dbInbounds,
- availableNodes,
- }: InboundFormModalProps) {
- const { t } = useTranslation();
- const [messageApi, messageContextHolder] = message.useMessage();
- const [form] = Form.useForm<InboundFormValues>();
- const [saving, setSaving] = useState(false);
- const fallbackKeyRef = useRef(0);
- const [fallbacks, setFallbacks] = useState<FallbackRow[]>([]);
- const selectableNodes = (availableNodes || []).filter((n) => n.enable);
- const protocol = (Form.useWatch('protocol', form) ?? '') as string;
- const isNodeEligible = NODE_ELIGIBLE_PROTOCOLS.has(protocol);
- const sniffingEnabled = Form.useWatch(['sniffing', 'enabled'], form) ?? false;
- const vlessEncryption = Form.useWatch(['settings', 'encryption'], form) ?? '';
- const ssMethod = Form.useWatch(['settings', 'method'], form);
- const isSSWith2022 = isSS2022({
- protocol,
- settings: typeof ssMethod === 'string' ? { method: ssMethod } : {},
- });
- const mixedUdpOn = Form.useWatch(['settings', 'udp'], form) ?? false;
- const network = Form.useWatch(['streamSettings', 'network'], form) ?? '';
- const security = Form.useWatch(['streamSettings', 'security'], form) ?? 'none';
- const streamEnabled = canEnableStream({ protocol });
- const tlsAllowed = canEnableTls({ protocol, streamSettings: { network, security } });
- const realityAllowed = canEnableReality({ protocol, streamSettings: { network, security } });
- const isFallbackHost =
- (protocol === Protocols.VLESS || protocol === Protocols.TROJAN)
- && network === 'tcp'
- && (security === 'tls' || security === 'reality');
- const fallbackChildOptions = (dbInbounds || [])
- .filter((ib) => ib.id !== dbInbound?.id)
- .map((ib) => ({
- label: `${ib.remark || `#${ib.id}`} · ${ib.protocol}:${ib.port}`,
- value: ib.id,
- }));
- const loadFallbacks = async (masterId: number | null) => {
- if (!masterId) {
- setFallbacks([]);
- return;
- }
- const msg = await HttpUtil.get(`/panel/api/inbounds/${masterId}/fallbacks`);
- if (!msg?.success || !Array.isArray(msg.obj)) {
- setFallbacks([]);
- return;
- }
- setFallbacks(
- (msg.obj as { childId: number; name?: string; alpn?: string; path?: string; xver?: number }[])
- .map((r) => ({
- rowKey: `fb-${++fallbackKeyRef.current}`,
- childId: r.childId,
- name: r.name || '',
- alpn: r.alpn || '',
- path: r.path || '',
- xver: r.xver || 0,
- })),
- );
- };
- const saveFallbacks = async (masterId: number) => {
- if (!masterId) return true;
- const payload = {
- fallbacks: fallbacks.filter((c) => c.childId).map((c, i) => ({
- childId: c.childId,
- name: c.name,
- alpn: c.alpn,
- path: c.path,
- xver: Number(c.xver) || 0,
- sortOrder: i,
- })),
- };
- const msg = await HttpUtil.post(
- `/panel/api/inbounds/${masterId}/fallbacks`,
- payload,
- { headers: { 'Content-Type': 'application/json' } },
- );
- return !!msg?.success;
- };
- const addFallback = () => {
- setFallbacks((prev) => [...prev, {
- rowKey: `fb-${++fallbackKeyRef.current}`,
- childId: null,
- name: '',
- alpn: '',
- path: '',
- xver: 0,
- }]);
- };
- const updateFallback = (rowKey: string, patch: Partial<FallbackRow>) => {
- setFallbacks((prev) => prev.map((r) => r.rowKey === rowKey ? { ...r, ...patch } : r));
- };
- const removeFallback = (idx: number) => {
- setFallbacks((prev) => prev.filter((_, i) => i !== idx));
- };
- // Move a fallback row up/down by swapping adjacent indices. The order
- // is persisted via the fallback row's sortOrder (rebuilt by index on
- // save), so reordering survives reloads.
- const moveFallback = (idx: number, direction: -1 | 1) => {
- setFallbacks((prev) => {
- const target = idx + direction;
- if (target < 0 || target >= prev.length) return prev;
- const next = prev.slice();
- [next[idx], next[target]] = [next[target], next[idx]];
- return next;
- });
- };
- // One-shot: add a fresh fallback row for every eligible inbound (i.e.
- // every option in fallbackChildOptions) that is not already wired up.
- // Convenient for operators who want catch-all routing to every host
- // they manage on the panel.
- const addAllFallbacks = () => {
- setFallbacks((prev) => {
- const alreadyHave = new Set(prev.map((r) => r.childId));
- const additions = fallbackChildOptions
- .filter((opt) => !alreadyHave.has(opt.value))
- .map<FallbackRow>((opt) => ({
- rowKey: `fb-${++fallbackKeyRef.current}`,
- childId: opt.value,
- name: '',
- alpn: '',
- path: '',
- xver: 0,
- }));
- if (additions.length === 0) return prev;
- return [...prev, ...additions];
- });
- };
- const genRealityKeypair = async () => {
- setSaving(true);
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewX25519Cert');
- if (msg?.success) {
- const obj = msg.obj as { privateKey: string; publicKey: string };
- form.setFieldValue(['streamSettings', 'realitySettings', 'privateKey'], obj.privateKey);
- form.setFieldValue(['streamSettings', 'realitySettings', 'settings', 'publicKey'], obj.publicKey);
- }
- } finally {
- setSaving(false);
- }
- };
- const clearRealityKeypair = () => {
- form.setFieldValue(['streamSettings', 'realitySettings', 'privateKey'], '');
- form.setFieldValue(['streamSettings', 'realitySettings', 'settings', 'publicKey'], '');
- };
- const genMldsa65 = async () => {
- setSaving(true);
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewmldsa65');
- if (msg?.success) {
- const obj = msg.obj as { seed: string; verify: string };
- form.setFieldValue(['streamSettings', 'realitySettings', 'mldsa65Seed'], obj.seed);
- form.setFieldValue(['streamSettings', 'realitySettings', 'settings', 'mldsa65Verify'], obj.verify);
- }
- } finally {
- setSaving(false);
- }
- };
- const clearMldsa65 = () => {
- form.setFieldValue(['streamSettings', 'realitySettings', 'mldsa65Seed'], '');
- form.setFieldValue(['streamSettings', 'realitySettings', 'settings', 'mldsa65Verify'], '');
- };
- const randomizeRealityTarget = () => {
- const tgt = getRandomRealityTarget() as { target: string; sni: string };
- form.setFieldValue(['streamSettings', 'realitySettings', 'target'], tgt.target);
- form.setFieldValue(
- ['streamSettings', 'realitySettings', 'serverNames'],
- tgt.sni.split(',').map((s) => s.trim()).filter(Boolean),
- );
- };
- const randomizeShortIds = () => {
- form.setFieldValue(
- ['streamSettings', 'realitySettings', 'shortIds'],
- RandomUtil.randomShortIds().split(',').map((s) => s.trim()).filter(Boolean),
- );
- };
- const getNewEchCert = async () => {
- const sni = form.getFieldValue(['streamSettings', 'tlsSettings', 'serverName']);
- setSaving(true);
- try {
- const msg = await HttpUtil.post('/panel/api/server/getNewEchCert', { sni });
- if (msg?.success) {
- const obj = msg.obj as { echServerKeys: string; echConfigList: string };
- form.setFieldValue(['streamSettings', 'tlsSettings', 'echServerKeys'], obj.echServerKeys);
- form.setFieldValue(['streamSettings', 'tlsSettings', 'settings', 'echConfigList'], obj.echConfigList);
- }
- } finally {
- setSaving(false);
- }
- };
- const clearEchCert = () => {
- form.setFieldValue(['streamSettings', 'tlsSettings', 'echServerKeys'], '');
- form.setFieldValue(['streamSettings', 'tlsSettings', 'settings', 'echConfigList'], '');
- };
- const onSecurityChange = (next: string) => {
- const current = (form.getFieldValue('streamSettings') as Record<string, unknown>) ?? {};
- const cleaned: Record<string, unknown> = { ...current, security: next };
- delete cleaned.tlsSettings;
- delete cleaned.realitySettings;
- if (next === 'tls') cleaned.tlsSettings = TlsStreamSettingsSchema.parse({});
- if (next === 'reality') cleaned.realitySettings = RealityStreamSettingsSchema.parse({});
- form.setFieldValue('streamSettings', cleaned);
- };
- const xhttpMode = Form.useWatch(['streamSettings', 'xhttpSettings', 'mode'], form);
- const xhttpObfsMode = Form.useWatch(['streamSettings', 'xhttpSettings', 'xPaddingObfsMode'], form) ?? false;
- const xhttpSessionPlacement = Form.useWatch(['streamSettings', 'xhttpSettings', 'sessionPlacement'], form);
- const xhttpSeqPlacement = Form.useWatch(['streamSettings', 'xhttpSettings', 'seqPlacement'], form);
- const xhttpUplinkPlacement = Form.useWatch(['streamSettings', 'xhttpSettings', 'uplinkDataPlacement'], form);
- const externalProxyArr = Form.useWatch(['streamSettings', 'externalProxy'], form);
- const externalProxyOn = Array.isArray(externalProxyArr) && externalProxyArr.length > 0;
- const sockoptValue = Form.useWatch(['streamSettings', 'sockopt'], form);
- const sockoptOn = !!sockoptValue && typeof sockoptValue === 'object' && Object.keys(sockoptValue as object).length > 0;
- const toggleExternalProxy = (on: boolean) => {
- if (on) {
- const port = (form.getFieldValue('port') as number) ?? 443;
- form.setFieldValue(['streamSettings', 'externalProxy'], [{
- forceTls: 'same',
- dest: typeof window !== 'undefined' ? window.location.hostname : '',
- port,
- remark: '',
- sni: '',
- fingerprint: '',
- alpn: [],
- }]);
- } else {
- form.setFieldValue(['streamSettings', 'externalProxy'], []);
- }
- };
- const toggleSockopt = (on: boolean) => {
- if (on) {
- form.setFieldValue(
- ['streamSettings', 'sockopt'],
- SockoptStreamSettingsSchema.parse({}),
- );
- } else {
- form.setFieldValue(['streamSettings', 'sockopt'], undefined);
- }
- };
- const wgSecretKey = Form.useWatch(['settings', 'secretKey'], form);
- const wgPubKey = typeof wgSecretKey === 'string' && wgSecretKey.length > 0
- ? Wireguard.generateKeypair(wgSecretKey).publicKey
- : '';
- const regenInboundWg = () => {
- const kp = Wireguard.generateKeypair();
- form.setFieldValue(['settings', 'secretKey'], kp.privateKey);
- };
- const regenWgPeerKeypair = (peerName: number) => {
- const kp = Wireguard.generateKeypair();
- form.setFieldValue(['settings', 'peers', peerName, 'privateKey'], kp.privateKey);
- form.setFieldValue(['settings', 'peers', peerName, 'publicKey'], kp.publicKey);
- };
- const matchesVlessAuth = (
- block: { id?: string; label?: string } | undefined | null,
- authId: string,
- ) => {
- if (block?.id === authId) return true;
- const label = (block?.label || '').toLowerCase().replace(/[-_\s]/g, '');
- if (authId === 'mlkem768') return label.includes('mlkem768');
- if (authId === 'x25519') return label.includes('x25519');
- return false;
- };
- const getNewVlessEnc = async (authId: string) => {
- if (!authId) return;
- setSaving(true);
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewVlessEnc');
- if (!msg?.success) return;
- const obj = msg.obj as {
- auths?: { decryption: string; encryption: string; label?: string; id?: string }[];
- };
- const block = (obj.auths || []).find((a) => matchesVlessAuth(a, authId));
- if (!block) return;
- form.setFieldValue(['settings', 'decryption'], block.decryption);
- form.setFieldValue(['settings', 'encryption'], block.encryption);
- } finally {
- setSaving(false);
- }
- };
- const clearVlessEnc = () => {
- form.setFieldValue(['settings', 'decryption'], 'none');
- form.setFieldValue(['settings', 'encryption'], 'none');
- };
- const selectedVlessAuth = (() => {
- const enc = typeof vlessEncryption === 'string' ? vlessEncryption : '';
- if (!enc || enc === 'none') return 'None';
- const parts = enc.split('.').filter(Boolean);
- const authKey = parts[parts.length - 1] || '';
- if (!authKey) return t('pages.inbounds.vlessAuthCustom');
- return authKey.length > 300
- ? t('pages.inbounds.vlessAuthMlkem768')
- : t('pages.inbounds.vlessAuthX25519');
- })();
- useEffect(() => {
- if (!open) return;
- const initial = mode === 'edit' && dbInbound
- ? rawInboundToFormValues(dbInbound)
- : buildAddModeValues();
- form.resetFields();
- form.setFieldsValue(initial);
- if (
- mode === 'edit'
- && dbInbound
- && (dbInbound.protocol === Protocols.VLESS || dbInbound.protocol === Protocols.TROJAN)
- ) {
- loadFallbacks(dbInbound.id);
- } else {
- setFallbacks([]);
- }
- }, [open, mode, dbInbound, form]);
- // Why: protocol picker reset cascades through the form — clearing the
- // settings DU branch and dropping a nodeId that no longer applies. The
- // legacy modal did this imperatively in onProtocolChange; here we hook
- // into AntD's onValuesChange and let setFieldValue keep the rest of
- // the form state intact.
- const onValuesChange = (changed: Partial<InboundFormValues>) => {
- if (mode === 'edit') return;
- if ('protocol' in changed && typeof changed.protocol === 'string') {
- const next = changed.protocol;
- const settings = createDefaultInboundSettings(next) ?? undefined;
- form.setFieldValue('settings', settings);
- if (!NODE_ELIGIBLE_PROTOCOLS.has(next)) {
- form.setFieldValue('nodeId', null);
- }
- }
- };
- const submit = async () => {
- let values: InboundFormValues;
- try {
- values = await form.validateFields();
- } catch {
- return;
- }
- const parsed = InboundFormSchema.safeParse(values);
- if (!parsed.success) {
- const issue = parsed.error.issues[0];
- messageApi.error(
- t(issue?.message ?? 'somethingWentWrong', {
- defaultValue: issue?.message ?? 'invalid',
- }),
- );
- return;
- }
- setSaving(true);
- try {
- const payload = formValuesToWirePayload(parsed.data);
- const url = mode === 'edit' && dbInbound
- ? `/panel/api/inbounds/update/${dbInbound.id}`
- : '/panel/api/inbounds/add';
- const msg = await HttpUtil.post(url, payload);
- if (msg?.success) {
- if (isFallbackHost) {
- const obj = msg.obj as { id?: number; Id?: number } | null;
- const masterId = mode === 'edit'
- ? dbInbound!.id
- : (obj?.id ?? obj?.Id ?? 0);
- if (masterId) await saveFallbacks(masterId);
- }
- onSaved();
- onClose();
- }
- } finally {
- setSaving(false);
- }
- };
- const title = mode === 'edit'
- ? t('pages.inbounds.modifyInbound')
- : t('pages.inbounds.addInbound');
- const okText = mode === 'edit'
- ? t('pages.clients.submitEdit')
- : t('create');
- const basicTab = (
- <>
- <Form.Item name="enable" label={t('enable')} valuePropName="checked">
- <Switch />
- </Form.Item>
- <Form.Item name="remark" label={t('pages.inbounds.remark')}>
- <Input />
- </Form.Item>
- {selectableNodes.length > 0 && isNodeEligible && (
- <Form.Item name="nodeId" label={t('pages.inbounds.deployTo')}>
- <Select
- disabled={mode === 'edit'}
- placeholder={t('pages.inbounds.localPanel')}
- allowClear
- >
- <Select.Option value={null}>{t('pages.inbounds.localPanel')}</Select.Option>
- {selectableNodes.map((n) => (
- <Select.Option
- key={n.id}
- value={n.id}
- disabled={n.status === 'offline'}
- >
- {n.name}{n.status === 'offline' ? ' (offline)' : ''}
- </Select.Option>
- ))}
- </Select>
- </Form.Item>
- )}
- <Form.Item name="protocol" label={t('pages.inbounds.protocol')}>
- <Select disabled={mode === 'edit'} options={PROTOCOL_OPTIONS} />
- </Form.Item>
- <Form.Item name="listen" label={t('pages.inbounds.address')}>
- <Input placeholder={t('pages.inbounds.monitorDesc')} />
- </Form.Item>
- <Form.Item
- name="port"
- label={t('pages.inbounds.port')}
- rules={[antdRule(InboundFormBaseSchema.shape.port, t)]}
- >
- <InputNumber min={1} max={65535} />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.inbounds.meansNoLimit')}>
- {t('pages.inbounds.totalFlow')}
- </Tooltip>
- }
- >
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) => prev.total !== curr.total}
- >
- {({ getFieldValue, setFieldValue }) => {
- const totalBytes = (getFieldValue('total') as number) ?? 0;
- const totalGB = totalBytes
- ? Math.round((totalBytes / SizeFormatter.ONE_GB) * 100) / 100
- : 0;
- return (
- <InputNumber
- value={totalGB}
- min={0}
- step={1}
- onChange={(v) => {
- const bytes = NumberFormatter.toFixed(
- (Number(v) || 0) * SizeFormatter.ONE_GB,
- 0,
- );
- setFieldValue('total', bytes);
- }}
- />
- );
- }}
- </Form.Item>
- </Form.Item>
- <Form.Item name="trafficReset" label={t('pages.inbounds.periodicTrafficResetTitle')}>
- <Select>
- {TRAFFIC_RESETS.map((r) => (
- <Select.Option key={r} value={r}>
- {t(`pages.inbounds.periodicTrafficReset.${r}`)}
- </Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.inbounds.leaveBlankToNeverExpire')}>
- {t('pages.inbounds.expireDate')}
- </Tooltip>
- }
- >
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) => prev.expiryTime !== curr.expiryTime}
- >
- {({ getFieldValue, setFieldValue }) => {
- const expiry = (getFieldValue('expiryTime') as number) ?? 0;
- return (
- <DateTimePicker
- value={expiry > 0 ? dayjs(expiry) : null}
- onChange={(d) => setFieldValue('expiryTime', d ? d.valueOf() : 0)}
- />
- );
- }}
- </Form.Item>
- </Form.Item>
- </>
- );
- const fallbacksCard = (
- <Card size="small" className="mt-12" title={t('pages.inbounds.fallbacks.title') || 'Fallbacks'}>
- {fallbacks.length === 0 && (
- <Empty
- description={t('pages.inbounds.fallbacks.empty') || 'No fallbacks yet'}
- styles={{ image: { height: 40 } }}
- style={{ margin: '8px 0 12px' }}
- />
- )}
- {fallbacks.map((record, idx) => (
- <div
- key={record.rowKey}
- style={{ border: '1px solid var(--app-border-tertiary)', borderRadius: 6, padding: '10px 12px', marginBottom: 8 }}
- >
- <Space.Compact block style={{ marginBottom: 6 }}>
- <Select
- value={record.childId}
- options={fallbackChildOptions}
- showSearch
- placeholder={t('pages.inbounds.fallbacks.pickInbound') || 'Pick an inbound'}
- filterOption={(input, option) =>
- ((option?.label as string) || '').toLowerCase().includes(input.toLowerCase())
- }
- style={{ width: '100%' }}
- onChange={(v) => updateFallback(record.rowKey, { childId: v })}
- />
- <Button
- disabled={idx === 0}
- onClick={() => moveFallback(idx, -1)}
- title="Move up"
- >
- <ArrowUpOutlined />
- </Button>
- <Button
- disabled={idx === fallbacks.length - 1}
- onClick={() => moveFallback(idx, 1)}
- title="Move down"
- >
- <ArrowDownOutlined />
- </Button>
- <Button danger onClick={() => removeFallback(idx)}>
- <DeleteOutlined />
- </Button>
- </Space.Compact>
- <Space.Compact block>
- <InputAddon>SNI</InputAddon>
- <Input
- placeholder={t('pages.inbounds.fallbacks.matchAny') || 'any'}
- value={record.name}
- onChange={(e) => updateFallback(record.rowKey, { name: e.target.value })}
- />
- <InputAddon>ALPN</InputAddon>
- <Input
- placeholder={t('pages.inbounds.fallbacks.matchAny') || 'any'}
- value={record.alpn}
- onChange={(e) => updateFallback(record.rowKey, { alpn: e.target.value })}
- />
- <InputAddon>Path</InputAddon>
- <Input
- placeholder="/"
- value={record.path}
- onChange={(e) => updateFallback(record.rowKey, { path: e.target.value })}
- />
- <InputAddon>xver</InputAddon>
- <InputNumber
- min={0}
- max={2}
- value={record.xver}
- onChange={(v) => updateFallback(record.rowKey, { xver: Number(v) || 0 })}
- />
- </Space.Compact>
- </div>
- ))}
- <Space>
- <Button size="small" onClick={addFallback}>
- <PlusOutlined /> {t('pages.inbounds.fallbacks.add') || 'Add fallback'}
- </Button>
- <Button
- size="small"
- onClick={addAllFallbacks}
- disabled={fallbackChildOptions.length === 0
- || fallbacks.length >= fallbackChildOptions.length}
- title="Add a fallback row for every eligible inbound not yet wired up"
- >
- Add all
- </Button>
- </Space>
- </Card>
- );
- const protocolTab = (
- <>
- {protocol === Protocols.WIREGUARD && (
- <>
- <Form.Item
- name={['settings', 'secretKey']}
- label={
- <>
- Secret key{' '}
- <SyncOutlined className="random-icon" onClick={regenInboundWg} />
- </>
- }
- >
- <Input />
- </Form.Item>
- <Form.Item label="Public key">
- <Input value={wgPubKey} disabled />
- </Form.Item>
- <Form.Item name={['settings', 'mtu']} label="MTU">
- <InputNumber />
- </Form.Item>
- <Form.Item
- name={['settings', 'noKernelTun']}
- label="No-kernel TUN"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.List name={['settings', 'peers']}>
- {(fields, { add, remove }) => (
- <>
- <Form.Item label="Peers">
- <Button
- size="small"
- onClick={() => add({
- publicKey: '',
- allowedIPs: [],
- })}
- >
- <PlusOutlined /> Add peer
- </Button>
- </Form.Item>
- {fields.map((field, idx) => (
- <div key={field.key} className="wg-peer">
- <Form.Item label={`Peer ${idx + 1}`}>
- {fields.length > 1 && (
- <Button
- size="small"
- danger
- onClick={() => remove(field.name)}
- >
- <MinusOutlined />
- </Button>
- )}
- </Form.Item>
- <Form.Item
- name={[field.name, 'privateKey']}
- label={
- <>
- Secret key{' '}
- <SyncOutlined
- className="random-icon"
- onClick={() => regenWgPeerKeypair(field.name)}
- />
- </>
- }
- >
- <Input />
- </Form.Item>
- <Form.Item name={[field.name, 'publicKey']} label="Public key">
- <Input />
- </Form.Item>
- <Form.Item name={[field.name, 'preSharedKey']} label="PSK">
- <Input />
- </Form.Item>
- <Form.List name={[field.name, 'allowedIPs']}>
- {(ipFields, { add: addIp, remove: removeIp }) => (
- <Form.Item label="Allowed IPs">
- <Button size="small" onClick={() => addIp('')}>
- <PlusOutlined />
- </Button>
- {ipFields.map((ipField) => (
- <Space.Compact key={ipField.key} block className="mt-4">
- <Form.Item name={ipField.name} noStyle>
- <Input />
- </Form.Item>
- {ipFields.length > 1 && (
- <Button size="small" onClick={() => removeIp(ipField.name)}>
- <MinusOutlined />
- </Button>
- )}
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </Form.List>
- <Form.Item name={[field.name, 'keepAlive']} label="Keep-alive">
- <InputNumber min={0} />
- </Form.Item>
- </div>
- ))}
- </>
- )}
- </Form.List>
- </>
- )}
- {protocol === Protocols.TUN && (
- <>
- <Form.Item name={['settings', 'name']} label="Interface name">
- <Input placeholder="xray0" />
- </Form.Item>
- <Form.Item name={['settings', 'mtu']} label="MTU">
- <InputNumber min={0} />
- </Form.Item>
- <Form.List name={['settings', 'gateway']}>
- {(fields, { add, remove }) => (
- <Form.Item label="Gateway">
- <Button size="small" onClick={() => add('')}>
- <PlusOutlined />
- </Button>
- {fields.map((field, j) => (
- <Space.Compact key={field.key} block className="mt-4">
- <Form.Item name={field.name} noStyle>
- <Input placeholder={j === 0 ? '10.0.0.1/16' : 'fc00::1/64'} />
- </Form.Item>
- <Button size="small" onClick={() => remove(field.name)}>
- <MinusOutlined />
- </Button>
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </Form.List>
- <Form.List name={['settings', 'dns']}>
- {(fields, { add, remove }) => (
- <Form.Item label="DNS">
- <Button size="small" onClick={() => add('')}>
- <PlusOutlined />
- </Button>
- {fields.map((field, j) => (
- <Space.Compact key={field.key} block className="mt-4">
- <Form.Item name={field.name} noStyle>
- <Input placeholder={j === 0 ? '1.1.1.1' : '8.8.8.8'} />
- </Form.Item>
- <Button size="small" onClick={() => remove(field.name)}>
- <MinusOutlined />
- </Button>
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </Form.List>
- <Form.Item name={['settings', 'userLevel']} label="User level">
- <InputNumber min={0} />
- </Form.Item>
- <Form.List name={['settings', 'autoSystemRoutingTable']}>
- {(fields, { add, remove }) => (
- <Form.Item
- label={
- <Tooltip title="Windows-only. CIDRs added to the system routing table automatically so matching traffic goes through TUN.">
- Auto system routes
- </Tooltip>
- }
- >
- <Button size="small" onClick={() => add('')}>
- <PlusOutlined />
- </Button>
- {fields.map((field, j) => (
- <Space.Compact key={field.key} block className="mt-4">
- <Form.Item name={field.name} noStyle>
- <Input placeholder={j === 0 ? '0.0.0.0/0' : '::/0'} />
- </Form.Item>
- <Button size="small" onClick={() => remove(field.name)}>
- <MinusOutlined />
- </Button>
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </Form.List>
- <Form.Item
- name={['settings', 'autoOutboundsInterface']}
- label={
- <Tooltip title="Physical interface for outbound traffic. Use 'auto' to detect; auto-enabled when Auto system routes is set.">
- Auto outbounds interface
- </Tooltip>
- }
- >
- <Input placeholder="auto" />
- </Form.Item>
- </>
- )}
- {protocol === Protocols.TUNNEL && (
- <>
- <Form.Item name={['settings', 'rewriteAddress']} label="Rewrite address">
- <Input />
- </Form.Item>
- <Form.Item name={['settings', 'rewritePort']} label="Rewrite port">
- <InputNumber min={0} max={65535} />
- </Form.Item>
- <Form.Item name={['settings', 'allowedNetwork']} label="Allowed network">
- <Select>
- <Select.Option value="tcp,udp">TCP, UDP</Select.Option>
- <Select.Option value="tcp">TCP</Select.Option>
- <Select.Option value="udp">UDP</Select.Option>
- </Select>
- </Form.Item>
- <Form.List name={['settings', 'portMap']}>
- {(fields, { add, remove }) => (
- <>
- <Form.Item label="Port map">
- <Button size="small" onClick={() => add({ name: '', value: '' })}>
- <PlusOutlined />
- </Button>
- </Form.Item>
- {fields.length > 0 && (
- <Form.Item wrapperCol={{ span: 24 }}>
- {fields.map((field, idx) => (
- <Space.Compact key={field.key} className="mb-8" block>
- <InputAddon>{String(idx + 1)}</InputAddon>
- <Form.Item name={[field.name, 'name']} noStyle>
- <Input placeholder="5555" />
- </Form.Item>
- <Form.Item name={[field.name, 'value']} noStyle>
- <Input placeholder="1.1.1.1:7777" />
- </Form.Item>
- <Button onClick={() => remove(field.name)}>
- <MinusOutlined />
- </Button>
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </>
- )}
- </Form.List>
- <Form.Item
- name={['settings', 'followRedirect']}
- label="Follow redirect"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- </>
- )}
- {(protocol === Protocols.HTTP || protocol === Protocols.MIXED) && (
- <>
- <Form.List name={['settings', 'accounts']}>
- {(fields, { add, remove }) => (
- <>
- <Form.Item label="Accounts">
- <Button size="small" onClick={() => add({ user: '', pass: '' })}>
- <PlusOutlined /> Add
- </Button>
- </Form.Item>
- {fields.length > 0 && (
- <Form.Item wrapperCol={{ span: 24 }}>
- {fields.map((field, idx) => (
- <Space.Compact key={field.key} className="mb-8" block>
- <InputAddon>{String(idx + 1)}</InputAddon>
- <Form.Item name={[field.name, 'user']} noStyle>
- <Input placeholder="Username" />
- </Form.Item>
- <Form.Item name={[field.name, 'pass']} noStyle>
- <Input placeholder="Password" />
- </Form.Item>
- <Button onClick={() => remove(field.name)}>
- <MinusOutlined />
- </Button>
- </Space.Compact>
- ))}
- </Form.Item>
- )}
- </>
- )}
- </Form.List>
- {protocol === Protocols.HTTP && (
- <Form.Item
- name={['settings', 'allowTransparent']}
- label="Allow transparent"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- )}
- {protocol === Protocols.MIXED && (
- <>
- <Form.Item name={['settings', 'auth']} label="Auth">
- <Select>
- <Select.Option value="noauth">noauth</Select.Option>
- <Select.Option value="password">password</Select.Option>
- </Select>
- </Form.Item>
- <Form.Item
- name={['settings', 'udp']}
- label="UDP"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- {mixedUdpOn && (
- <Form.Item name={['settings', 'ip']} label="UDP IP">
- <Input />
- </Form.Item>
- )}
- </>
- )}
- </>
- )}
- {protocol === Protocols.SHADOWSOCKS && (
- <>
- <Form.Item name={['settings', 'method']} label="Encryption method">
- <Select
- onChange={(v) => {
- form.setFieldValue(
- ['settings', 'password'],
- RandomUtil.randomShadowsocksPassword(v as string),
- );
- }}
- >
- {SSMethodSchema.options.map((m) => (
- <Select.Option key={m} value={m}>{m}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- {isSSWith2022 && (
- <Form.Item
- name={['settings', 'password']}
- label={
- <>
- Password{' '}
- <SyncOutlined
- className="random-icon"
- onClick={() => {
- const method = form.getFieldValue(['settings', 'method']);
- form.setFieldValue(
- ['settings', 'password'],
- RandomUtil.randomShadowsocksPassword(method as string),
- );
- }}
- />
- </>
- }
- >
- <Input />
- </Form.Item>
- )}
- <Form.Item name={['settings', 'network']} label="Network">
- <Select style={{ width: 120 }}>
- <Select.Option value="tcp,udp">TCP, UDP</Select.Option>
- <Select.Option value="tcp">TCP</Select.Option>
- <Select.Option value="udp">UDP</Select.Option>
- </Select>
- </Form.Item>
- <Form.Item
- name={['settings', 'ivCheck']}
- label="ivCheck"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- </>
- )}
- {protocol === Protocols.VLESS && (
- <>
- <Form.Item name={['settings', 'decryption']} label={t('pages.inbounds.decryption')}>
- <Input />
- </Form.Item>
- <Form.Item name={['settings', 'encryption']} label={t('pages.inbounds.encryption')}>
- <Input />
- </Form.Item>
- <Form.Item label=" ">
- <Space size={8} wrap>
- <Button type="primary" loading={saving} onClick={() => getNewVlessEnc('x25519')}>
- {t('pages.inbounds.vlessAuthX25519')}
- </Button>
- <Button type="primary" loading={saving} onClick={() => getNewVlessEnc('mlkem768')}>
- {t('pages.inbounds.vlessAuthMlkem768')}
- </Button>
- <Button danger onClick={clearVlessEnc}>{t('clear')}</Button>
- </Space>
- <Text type="secondary" className="vless-auth-state">
- {t('pages.inbounds.vlessAuthSelected', { auth: selectedVlessAuth })}
- </Text>
- </Form.Item>
- </>
- )}
- {isFallbackHost && fallbacksCard}
- </>
- );
- // Switching `network` swaps which per-network key (tcpSettings, wsSettings,
- // grpcSettings, ...) appears on the wire. We clear the previously selected
- // network's settings blob and seed a default empty object for the new one
- // so AntD's Form.Items aren't pointed at undefined nested paths.
- const onNetworkChange = (next: string) => {
- const ALL = ['tcpSettings', 'kcpSettings', 'wsSettings', 'grpcSettings', 'httpupgradeSettings', 'xhttpSettings'];
- const current = (form.getFieldValue('streamSettings') as Record<string, unknown>) ?? {};
- const cleaned: Record<string, unknown> = { ...current, network: next };
- for (const k of ALL) {
- if (k !== `${next}Settings`) delete cleaned[k];
- }
- cleaned[`${next}Settings`] = {};
- form.setFieldValue('streamSettings', cleaned);
- };
- const streamTab = (
- <>
- {protocol !== Protocols.HYSTERIA && (
- <Form.Item label="Transmission">
- <Select
- value={network}
- style={{ width: '75%' }}
- onChange={onNetworkChange}
- >
- <Select.Option value="tcp">TCP (RAW)</Select.Option>
- <Select.Option value="kcp">mKCP</Select.Option>
- <Select.Option value="ws">WebSocket</Select.Option>
- <Select.Option value="grpc">gRPC</Select.Option>
- <Select.Option value="httpupgrade">HTTPUpgrade</Select.Option>
- <Select.Option value="xhttp">XHTTP</Select.Option>
- </Select>
- </Form.Item>
- )}
- {network === 'tcp' && (
- <>
- <Form.Item
- name={['streamSettings', 'tcpSettings', 'acceptProxyProtocol']}
- label="Proxy Protocol"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item label={`HTTP ${t('camouflage')}`}>
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.tcpSettings?.header?.type
- !== curr.streamSettings?.tcpSettings?.header?.type
- }
- >
- {({ getFieldValue, setFieldValue }) => {
- const headerType = getFieldValue(
- ['streamSettings', 'tcpSettings', 'header', 'type'],
- ) as string | undefined;
- return (
- <Switch
- checked={headerType === 'http'}
- onChange={(v) => {
- setFieldValue(
- ['streamSettings', 'tcpSettings', 'header'],
- v
- ? {
- type: 'http',
- request: {
- version: '1.1',
- method: 'GET',
- path: ['/'],
- headers: {},
- },
- }
- : { type: 'none' },
- );
- }}
- />
- );
- }}
- </Form.Item>
- </Form.Item>
- {/* Host + path camouflage inputs only render when the Switch
- above is on. Both are string[] on the wire; normalize +
- getValueProps translate to/from comma-joined input. Mirrors
- the symmetric outbound side. */}
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.tcpSettings?.header?.type
- !== curr.streamSettings?.tcpSettings?.header?.type
- }
- >
- {({ getFieldValue }) => {
- const headerType = getFieldValue(
- ['streamSettings', 'tcpSettings', 'header', 'type'],
- ) as string | undefined;
- if (headerType !== 'http') return null;
- return (
- <>
- <Form.Item
- label={t('host')}
- name={[
- 'streamSettings', 'tcpSettings', 'header',
- 'request', 'headers', 'Host',
- ]}
- normalize={(v: unknown) =>
- typeof v === 'string'
- ? v.split(',').map((s) => s.trim()).filter(Boolean)
- : Array.isArray(v) ? v : []
- }
- getValueProps={(v: unknown) => ({
- value: Array.isArray(v) ? v.join(',') : '',
- })}
- >
- <Input placeholder="example.com,cdn.example.com" />
- </Form.Item>
- <Form.Item
- label={t('path')}
- name={[
- 'streamSettings', 'tcpSettings', 'header',
- 'request', 'path',
- ]}
- normalize={(v: unknown) =>
- typeof v === 'string'
- ? v.split(',').map((s) => s.trim()).filter(Boolean)
- : Array.isArray(v) ? v : ['/']
- }
- getValueProps={(v: unknown) => ({
- value: Array.isArray(v) ? v.join(',') : '/',
- })}
- >
- <Input placeholder="/,/api,/static" />
- </Form.Item>
- </>
- );
- }}
- </Form.Item>
- </>
- )}
- {network === 'ws' && (
- <>
- <Form.Item
- name={['streamSettings', 'wsSettings', 'acceptProxyProtocol']}
- label="Proxy Protocol"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item name={['streamSettings', 'wsSettings', 'host']} label={t('host')}>
- <Input />
- </Form.Item>
- <Form.Item name={['streamSettings', 'wsSettings', 'path']} label={t('path')}>
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'wsSettings', 'heartbeatPeriod']}
- label="Heartbeat Period"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- label="Headers"
- name={['streamSettings', 'wsSettings', 'headers']}
- >
- <HeaderMapEditor mode="v1" />
- </Form.Item>
- </>
- )}
- {network === 'grpc' && (
- <>
- <Form.Item
- name={['streamSettings', 'grpcSettings', 'serviceName']}
- label="Service Name"
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'grpcSettings', 'authority']}
- label="Authority"
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'grpcSettings', 'multiMode']}
- label="Multi Mode"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- </>
- )}
- {network === 'xhttp' && (
- <>
- <Form.Item name={['streamSettings', 'xhttpSettings', 'host']} label={t('host')}>
- <Input />
- </Form.Item>
- <Form.Item name={['streamSettings', 'xhttpSettings', 'path']} label={t('path')}>
- <Input />
- </Form.Item>
- <Form.Item name={['streamSettings', 'xhttpSettings', 'mode']} label="Mode">
- <Select style={{ width: '50%' }}>
- {(['auto', 'packet-up', 'stream-up', 'stream-one'] as const).map((m) => (
- <Select.Option key={m} value={m}>{m}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- {xhttpMode === 'packet-up' && (
- <>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'scMaxBufferedPosts']}
- label="Max Buffered Upload"
- >
- <InputNumber />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'scMaxEachPostBytes']}
- label="Max Upload Size (Byte)"
- >
- <Input />
- </Form.Item>
- </>
- )}
- {xhttpMode === 'stream-up' && (
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'scStreamUpServerSecs']}
- label="Stream-Up Server"
- >
- <Input />
- </Form.Item>
- )}
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'serverMaxHeaderBytes']}
- label="Server Max Header Bytes"
- >
- <InputNumber min={0} placeholder="0 (default)" />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingBytes']}
- label="Padding Bytes"
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'uplinkHTTPMethod']}
- label="Uplink HTTP Method"
- >
- <Select>
- <Select.Option value="">Default (POST)</Select.Option>
- <Select.Option value="POST">POST</Select.Option>
- <Select.Option value="PUT">PUT</Select.Option>
- <Select.Option value="GET" disabled={xhttpMode !== 'packet-up'}>
- GET (packet-up only)
- </Select.Option>
- </Select>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingObfsMode']}
- label="Padding Obfs Mode"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- {xhttpObfsMode && (
- <>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingKey']}
- label="Padding Key"
- >
- <Input placeholder="x_padding" />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingHeader']}
- label="Padding Header"
- >
- <Input placeholder="X-Padding" />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingPlacement']}
- label="Padding Placement"
- >
- <Select>
- <Select.Option value="">Default (queryInHeader)</Select.Option>
- <Select.Option value="queryInHeader">queryInHeader</Select.Option>
- <Select.Option value="header">header</Select.Option>
- <Select.Option value="cookie">cookie</Select.Option>
- <Select.Option value="query">query</Select.Option>
- </Select>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'xPaddingMethod']}
- label="Padding Method"
- >
- <Select>
- <Select.Option value="">Default (repeat-x)</Select.Option>
- <Select.Option value="repeat-x">repeat-x</Select.Option>
- <Select.Option value="tokenish">tokenish</Select.Option>
- </Select>
- </Form.Item>
- </>
- )}
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'sessionPlacement']}
- label="Session Placement"
- >
- <Select>
- <Select.Option value="">Default (path)</Select.Option>
- <Select.Option value="path">path</Select.Option>
- <Select.Option value="header">header</Select.Option>
- <Select.Option value="cookie">cookie</Select.Option>
- <Select.Option value="query">query</Select.Option>
- </Select>
- </Form.Item>
- {xhttpSessionPlacement && xhttpSessionPlacement !== 'path' && (
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'sessionKey']}
- label="Session Key"
- >
- <Input placeholder="x_session" />
- </Form.Item>
- )}
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'seqPlacement']}
- label="Sequence Placement"
- >
- <Select>
- <Select.Option value="">Default (path)</Select.Option>
- <Select.Option value="path">path</Select.Option>
- <Select.Option value="header">header</Select.Option>
- <Select.Option value="cookie">cookie</Select.Option>
- <Select.Option value="query">query</Select.Option>
- </Select>
- </Form.Item>
- {xhttpSeqPlacement && xhttpSeqPlacement !== 'path' && (
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'seqKey']}
- label="Sequence Key"
- >
- <Input placeholder="x_seq" />
- </Form.Item>
- )}
- {xhttpMode === 'packet-up' && (
- <>
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'uplinkDataPlacement']}
- label="Uplink Data Placement"
- >
- <Select>
- <Select.Option value="">Default (body)</Select.Option>
- <Select.Option value="body">body</Select.Option>
- <Select.Option value="header">header</Select.Option>
- <Select.Option value="cookie">cookie</Select.Option>
- <Select.Option value="query">query</Select.Option>
- </Select>
- </Form.Item>
- {xhttpUplinkPlacement && xhttpUplinkPlacement !== 'body' && (
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'uplinkDataKey']}
- label="Uplink Data Key"
- >
- <Input placeholder="x_data" />
- </Form.Item>
- )}
- </>
- )}
- <Form.Item
- name={['streamSettings', 'xhttpSettings', 'noSSEHeader']}
- label="No SSE Header"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- </>
- )}
- {network === 'httpupgrade' && (
- <>
- <Form.Item
- name={['streamSettings', 'httpupgradeSettings', 'acceptProxyProtocol']}
- label="Proxy Protocol"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'httpupgradeSettings', 'host']}
- label={t('host')}
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'httpupgradeSettings', 'path']}
- label={t('path')}
- >
- <Input />
- </Form.Item>
- <Form.Item
- label="Headers"
- name={['streamSettings', 'httpupgradeSettings', 'headers']}
- >
- <HeaderMapEditor mode="v1" />
- </Form.Item>
- </>
- )}
- {network === 'kcp' && (
- <>
- <Form.Item name={['streamSettings', 'kcpSettings', 'mtu']} label="MTU">
- <InputNumber min={576} max={1460} />
- </Form.Item>
- <Form.Item name={['streamSettings', 'kcpSettings', 'tti']} label="TTI (ms)">
- <InputNumber min={10} max={100} />
- </Form.Item>
- <Form.Item name={['streamSettings', 'kcpSettings', 'upCap']} label="Uplink (MB/s)">
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item name={['streamSettings', 'kcpSettings', 'downCap']} label="Downlink (MB/s)">
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'kcpSettings', 'cwndMultiplier']}
- label="CWND Multiplier"
- >
- <InputNumber min={1} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'kcpSettings', 'maxSendingWindow']}
- label="Max Sending Window"
- >
- <InputNumber min={0} />
- </Form.Item>
- </>
- )}
- <Form.Item label="External Proxy">
- <Switch checked={externalProxyOn} onChange={toggleExternalProxy} />
- </Form.Item>
- {externalProxyOn && (
- <Form.List name={['streamSettings', 'externalProxy']}>
- {(fields, { add, remove }) => (
- <>
- <Form.Item label=" " colon={false}>
- <Button
- size="small"
- type="primary"
- onClick={() => add({
- forceTls: 'same',
- dest: '',
- port: 443,
- remark: '',
- sni: '',
- fingerprint: '',
- alpn: [],
- })}
- >
- <PlusOutlined />
- </Button>
- </Form.Item>
- <Form.Item wrapperCol={{ span: 24 }}>
- {fields.map((field) => (
- <div key={field.key} style={{ margin: '8px 0' }}>
- <Space.Compact block>
- <Form.Item name={[field.name, 'forceTls']} noStyle>
- <Select style={{ width: '20%' }}>
- <Select.Option value="same">{t('pages.inbounds.same')}</Select.Option>
- <Select.Option value="none">{t('none')}</Select.Option>
- <Select.Option value="tls">TLS</Select.Option>
- </Select>
- </Form.Item>
- <Form.Item name={[field.name, 'dest']} noStyle>
- <Input style={{ width: '30%' }} placeholder={t('host')} />
- </Form.Item>
- <Form.Item name={[field.name, 'port']} noStyle>
- <InputNumber style={{ width: '15%' }} min={1} max={65535} />
- </Form.Item>
- <Form.Item name={[field.name, 'remark']} noStyle>
- <Input style={{ width: '25%' }} placeholder={t('pages.inbounds.remark')} />
- </Form.Item>
- <InputAddon onClick={() => remove(field.name)}>
- <MinusOutlined />
- </InputAddon>
- </Space.Compact>
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.externalProxy?.[field.name]?.forceTls
- !== curr.streamSettings?.externalProxy?.[field.name]?.forceTls
- }
- >
- {({ getFieldValue }) => {
- const ft = getFieldValue([
- 'streamSettings', 'externalProxy', field.name, 'forceTls',
- ]);
- if (ft !== 'tls') return null;
- return (
- <Space.Compact style={{ marginTop: 6 }} block>
- <Form.Item name={[field.name, 'sni']} noStyle>
- <Input style={{ width: '30%' }} placeholder="SNI (defaults to host)" />
- </Form.Item>
- <Form.Item name={[field.name, 'fingerprint']} noStyle>
- <Select style={{ width: '30%' }} placeholder="Fingerprint">
- <Select.Option value="">Default</Select.Option>
- {Object.values(UTLS_FINGERPRINT).map((fp) => (
- <Select.Option key={fp} value={fp}>{fp}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item name={[field.name, 'alpn']} noStyle>
- <Select mode="multiple" style={{ width: '40%' }} placeholder="ALPN">
- {Object.values(ALPN_OPTION).map((a) => (
- <Select.Option key={a} value={a}>{a}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- </Space.Compact>
- );
- }}
- </Form.Item>
- </div>
- ))}
- </Form.Item>
- </>
- )}
- </Form.List>
- )}
- <Form.Item label="Sockopt">
- <Switch checked={sockoptOn} onChange={toggleSockopt} />
- </Form.Item>
- {sockoptOn && (
- <>
- <Form.Item name={['streamSettings', 'sockopt', 'mark']} label="Route Mark">
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpKeepAliveInterval']}
- label="TCP Keep Alive Interval"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpKeepAliveIdle']}
- label="TCP Keep Alive Idle"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item name={['streamSettings', 'sockopt', 'tcpMaxSeg']} label="TCP Max Seg">
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpUserTimeout']}
- label="TCP User Timeout"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpWindowClamp']}
- label="TCP Window Clamp"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'acceptProxyProtocol']}
- label="Proxy Protocol"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpFastOpen']}
- label="TCP Fast Open"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpMptcp']}
- label="Multipath TCP"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'penetrate']}
- label="Penetrate"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'V6Only']}
- label="V6 Only"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'domainStrategy']}
- label="Domain Strategy"
- >
- <Select style={{ width: '50%' }}>
- {Object.values(DOMAIN_STRATEGY_OPTION).map((d) => (
- <Select.Option key={d} value={d}>{d}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'tcpcongestion']}
- label="TCP Congestion"
- >
- <Select style={{ width: '50%' }}>
- {Object.values(TCP_CONGESTION_OPTION).map((c) => (
- <Select.Option key={c} value={c}>{c}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item name={['streamSettings', 'sockopt', 'tproxy']} label="TProxy">
- <Select style={{ width: '50%' }}>
- <Select.Option value="off">Off</Select.Option>
- <Select.Option value="redirect">Redirect</Select.Option>
- <Select.Option value="tproxy">TProxy</Select.Option>
- </Select>
- </Form.Item>
- <Form.Item name={['streamSettings', 'sockopt', 'dialerProxy']} label="Dialer Proxy">
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'interfaceName']}
- label="Interface Name"
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'sockopt', 'trustedXForwardedFor']}
- label="Trusted X-Forwarded-For"
- >
- <Select mode="tags" style={{ width: '100%' }} tokenSeparators={[',']}>
- <Select.Option value="CF-Connecting-IP">CF-Connecting-IP</Select.Option>
- <Select.Option value="X-Real-IP">X-Real-IP</Select.Option>
- <Select.Option value="True-Client-IP">True-Client-IP</Select.Option>
- <Select.Option value="X-Client-IP">X-Client-IP</Select.Option>
- </Select>
- </Form.Item>
- </>
- )}
- </>
- );
- const securityTab = (
- <>
- <Form.Item label={t('pages.inbounds.securityTab')}>
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.security !== curr.streamSettings?.security
- }
- >
- {({ getFieldValue }) => {
- const sec = getFieldValue(['streamSettings', 'security']) ?? 'none';
- return (
- <Select
- value={sec}
- disabled={!tlsAllowed}
- onChange={onSecurityChange}
- style={{ width: 180 }}
- >
- <Select.Option value="none">none</Select.Option>
- <Select.Option value="tls">tls</Select.Option>
- {realityAllowed && <Select.Option value="reality">reality</Select.Option>}
- </Select>
- );
- }}
- </Form.Item>
- </Form.Item>
- {security === 'tls' && (
- <>
- <Form.Item name={['streamSettings', 'tlsSettings', 'serverName']} label="SNI">
- <Input placeholder="Server Name Indication" />
- </Form.Item>
- <Form.Item name={['streamSettings', 'tlsSettings', 'cipherSuites']} label="Cipher Suites">
- <Select>
- <Select.Option value="">Auto</Select.Option>
- {Object.entries(TLS_CIPHER_OPTION).map(([k, v]) => (
- <Select.Option key={v} value={v}>{k}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item label="Min/Max Version">
- <Space.Compact block>
- <Form.Item name={['streamSettings', 'tlsSettings', 'minVersion']} noStyle>
- <Select style={{ width: '50%' }}>
- {Object.values(TLS_VERSION_OPTION).map((v) => (
- <Select.Option key={v} value={v}>{v}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item name={['streamSettings', 'tlsSettings', 'maxVersion']} noStyle>
- <Select style={{ width: '50%' }}>
- {Object.values(TLS_VERSION_OPTION).map((v) => (
- <Select.Option key={v} value={v}>{v}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- </Space.Compact>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'tlsSettings', 'settings', 'fingerprint']}
- label="uTLS"
- >
- <Select>
- <Select.Option value="">None</Select.Option>
- {Object.values(UTLS_FINGERPRINT).map((fp) => (
- <Select.Option key={fp} value={fp}>{fp}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item name={['streamSettings', 'tlsSettings', 'alpn']} label="ALPN">
- <Select mode="multiple" tokenSeparators={[',']} style={{ width: '100%' }}>
- {Object.values(ALPN_OPTION).map((a) => (
- <Select.Option key={a} value={a}>{a}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'tlsSettings', 'rejectUnknownSni']}
- label="Reject Unknown SNI"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'tlsSettings', 'disableSystemRoot']}
- label="Disable System Root"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'tlsSettings', 'enableSessionResumption']}
- label="Session Resumption"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.List name={['streamSettings', 'tlsSettings', 'certificates']}>
- {(certFields, { add, remove }) => (
- <>
- <Form.Item label={t('certificate')}>
- <Button
- type="primary"
- size="small"
- onClick={() => add({
- useFile: true,
- certificateFile: '',
- keyFile: '',
- certificate: [],
- key: [],
- oneTimeLoading: false,
- usage: 'encipherment',
- buildChain: false,
- })}
- >
- <PlusOutlined />
- </Button>
- </Form.Item>
- {certFields.map((certField, idx) => (
- <div key={certField.key}>
- <Form.Item
- name={[certField.name, 'useFile']}
- label={`${t('certificate')} ${idx + 1}`}
- >
- <Radio.Group buttonStyle="solid">
- <Radio.Button value={true}>
- {t('pages.inbounds.certificatePath')}
- </Radio.Button>
- <Radio.Button value={false}>
- {t('pages.inbounds.certificateContent')}
- </Radio.Button>
- </Radio.Group>
- </Form.Item>
- {certFields.length > 1 && (
- <Form.Item label=" ">
- <Button
- size="small"
- danger
- onClick={() => remove(certField.name)}
- >
- <MinusOutlined /> Remove
- </Button>
- </Form.Item>
- )}
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.tlsSettings?.certificates?.[certField.name]?.useFile
- !== curr.streamSettings?.tlsSettings?.certificates?.[certField.name]?.useFile
- }
- >
- {({ getFieldValue }) => {
- const useFile = getFieldValue([
- 'streamSettings', 'tlsSettings', 'certificates',
- certField.name, 'useFile',
- ]);
- return useFile ? (
- <>
- <Form.Item
- name={[certField.name, 'certificateFile']}
- label={t('pages.inbounds.publicKey')}
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={[certField.name, 'keyFile']}
- label={t('pages.inbounds.privatekey')}
- >
- <Input />
- </Form.Item>
- </>
- ) : (
- <>
- <Form.Item
- name={[certField.name, 'certificate']}
- label={t('pages.inbounds.publicKey')}
- normalize={(v) => typeof v === 'string'
- ? v.split('\n')
- : v}
- getValueProps={(v) => ({
- value: Array.isArray(v) ? v.join('\n') : v,
- })}
- >
- <TextArea autoSize={{ minRows: 3, maxRows: 8 }} />
- </Form.Item>
- <Form.Item
- name={[certField.name, 'key']}
- label={t('pages.inbounds.privatekey')}
- normalize={(v) => typeof v === 'string'
- ? v.split('\n')
- : v}
- getValueProps={(v) => ({
- value: Array.isArray(v) ? v.join('\n') : v,
- })}
- >
- <TextArea autoSize={{ minRows: 3, maxRows: 8 }} />
- </Form.Item>
- </>
- );
- }}
- </Form.Item>
- <Form.Item
- name={[certField.name, 'oneTimeLoading']}
- label="One Time Loading"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={[certField.name, 'usage']}
- label="Usage Option"
- >
- <Select style={{ width: '50%' }}>
- {Object.values(USAGE_OPTION).map((u) => (
- <Select.Option key={u} value={u}>{u}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) =>
- prev.streamSettings?.tlsSettings?.certificates?.[certField.name]?.usage
- !== curr.streamSettings?.tlsSettings?.certificates?.[certField.name]?.usage
- }
- >
- {({ getFieldValue }) => {
- const usage = getFieldValue([
- 'streamSettings', 'tlsSettings', 'certificates',
- certField.name, 'usage',
- ]);
- if (usage !== 'issue') return null;
- return (
- <Form.Item
- name={[certField.name, 'buildChain']}
- label="Build Chain"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- );
- }}
- </Form.Item>
- </div>
- ))}
- </>
- )}
- </Form.List>
- <Form.Item name={['streamSettings', 'tlsSettings', 'echServerKeys']} label="ECH key">
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'tlsSettings', 'settings', 'echConfigList']}
- label="ECH config"
- >
- <Input />
- </Form.Item>
- <Form.Item label=" ">
- <Space>
- <Button type="primary" loading={saving} onClick={getNewEchCert}>
- Get New ECH Cert
- </Button>
- <Button danger onClick={clearEchCert}>Clear</Button>
- </Space>
- </Form.Item>
- </>
- )}
- {security === 'reality' && (
- <>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'show']}
- label="Show"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item name={['streamSettings', 'realitySettings', 'xver']} label="Xver">
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'settings', 'fingerprint']}
- label="uTLS"
- >
- <Select>
- {Object.values(UTLS_FINGERPRINT).map((fp) => (
- <Select.Option key={fp} value={fp}>{fp}</Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'target']}
- label={
- <>
- Target{' '}
- <SyncOutlined className="random-icon" onClick={randomizeRealityTarget} />
- </>
- }
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'serverNames']}
- label={
- <>
- SNI{' '}
- <SyncOutlined className="random-icon" onClick={randomizeRealityTarget} />
- </>
- }
- >
- <Select mode="tags" tokenSeparators={[',']} style={{ width: '100%' }} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'maxTimediff']}
- label="Max Time Diff (ms)"
- >
- <InputNumber min={0} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'minClientVer']}
- label="Min Client Ver"
- >
- <Input placeholder="25.9.11" />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'maxClientVer']}
- label="Max Client Ver"
- >
- <Input placeholder="25.9.11" />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'shortIds']}
- label={
- <>
- Short IDs{' '}
- <SyncOutlined className="random-icon" onClick={randomizeShortIds} />
- </>
- }
- >
- <Select mode="tags" tokenSeparators={[',']} style={{ width: '100%' }} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'settings', 'spiderX']}
- label="SpiderX"
- >
- <Input />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'settings', 'publicKey']}
- label={t('pages.inbounds.publicKey')}
- >
- <Input.TextArea autoSize={{ minRows: 1, maxRows: 4 }} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'privateKey']}
- label={t('pages.inbounds.privatekey')}
- >
- <Input.TextArea autoSize={{ minRows: 1, maxRows: 4 }} />
- </Form.Item>
- <Form.Item label=" ">
- <Space>
- <Button type="primary" loading={saving} onClick={genRealityKeypair}>
- Get New Cert
- </Button>
- <Button danger onClick={clearRealityKeypair}>Clear</Button>
- </Space>
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'mldsa65Seed']}
- label="mldsa65 Seed"
- >
- <Input.TextArea autoSize={{ minRows: 2, maxRows: 6 }} />
- </Form.Item>
- <Form.Item
- name={['streamSettings', 'realitySettings', 'settings', 'mldsa65Verify']}
- label="mldsa65 Verify"
- >
- <Input.TextArea autoSize={{ minRows: 2, maxRows: 6 }} />
- </Form.Item>
- <Form.Item label=" ">
- <Space>
- <Button type="primary" loading={saving} onClick={genMldsa65}>
- Get New Seed
- </Button>
- <Button danger onClick={clearMldsa65}>Clear</Button>
- </Space>
- </Form.Item>
- </>
- )}
- </>
- );
- const advancedTab = (
- <Tabs
- items={[
- {
- key: 'settings',
- label: t('pages.inbounds.advanced.settings'),
- children: (
- <AdvancedSliceEditor
- form={form}
- path="settings"
- minHeight="320px"
- maxHeight="540px"
- />
- ),
- },
- ...(streamEnabled
- ? [{
- key: 'stream',
- label: t('pages.inbounds.advanced.stream'),
- children: (
- <AdvancedSliceEditor
- form={form}
- path="streamSettings"
- minHeight="320px"
- maxHeight="540px"
- />
- ),
- }]
- : []),
- {
- key: 'sniffing',
- label: t('pages.inbounds.advanced.sniffing'),
- children: (
- <AdvancedSliceEditor
- form={form}
- path="sniffing"
- minHeight="240px"
- maxHeight="420px"
- />
- ),
- },
- ]}
- />
- );
- const sniffingTab = (
- <>
- <Form.Item name={['sniffing', 'enabled']} label={t('enable')} valuePropName="checked">
- <Switch />
- </Form.Item>
- {sniffingEnabled && (
- <>
- <Form.Item name={['sniffing', 'destOverride']} wrapperCol={{ span: 24 }}>
- <Checkbox.Group>
- {Object.entries(SNIFFING_OPTION).map(([key, value]) => (
- <Checkbox key={key} value={value}>{key}</Checkbox>
- ))}
- </Checkbox.Group>
- </Form.Item>
- <Form.Item
- name={['sniffing', 'metadataOnly']}
- label={t('pages.inbounds.sniffingMetadataOnly')}
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'routeOnly']}
- label={t('pages.inbounds.sniffingRouteOnly')}
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'ipsExcluded']}
- label={t('pages.inbounds.sniffingIpsExcluded')}
- >
- <Select
- mode="tags"
- tokenSeparators={[',']}
- placeholder="IP/CIDR/geoip:*/ext:*"
- style={{ width: '100%' }}
- />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'domainsExcluded']}
- label={t('pages.inbounds.sniffingDomainsExcluded')}
- >
- <Select
- mode="tags"
- tokenSeparators={[',']}
- placeholder="domain:*/ext:*"
- style={{ width: '100%' }}
- />
- </Form.Item>
- </>
- )}
- </>
- );
- return (
- <>
- {messageContextHolder}
- <Modal
- open={open}
- title={title}
- okText={okText}
- cancelText={t('close')}
- confirmLoading={saving}
- mask={{ closable: false }}
- width={780}
- onOk={submit}
- onCancel={onClose}
- destroyOnHidden
- >
- <Form
- form={form}
- colon={false}
- labelCol={{ sm: { span: 8 } }}
- wrapperCol={{ sm: { span: 14 } }}
- onValuesChange={onValuesChange}
- >
- <Tabs items={[
- { key: 'basic', label: t('pages.xray.basicTemplate'), children: basicTab },
- ...(([
- Protocols.VLESS,
- Protocols.SHADOWSOCKS,
- Protocols.HTTP,
- Protocols.MIXED,
- Protocols.TUNNEL,
- Protocols.TUN,
- Protocols.WIREGUARD,
- ] as string[]).includes(protocol) || isFallbackHost
- ? [{ key: 'protocol', label: t('pages.inbounds.protocol'), children: protocolTab }]
- : []),
- ...(streamEnabled
- ? [
- { key: 'stream', label: t('pages.inbounds.streamTab'), children: streamTab },
- { key: 'security', label: t('pages.inbounds.securityTab'), children: securityTab },
- ]
- : []),
- { key: 'sniffing', label: t('pages.inbounds.sniffingTab'), children: sniffingTab },
- { key: 'advanced', label: t('pages.xray.advancedTemplate'), children: advancedTab },
- ]} />
- </Form>
- </Modal>
- </>
- );
- }
|