inbound.js 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493
  1. const Protocols = {
  2. VMESS: 'vmess',
  3. VLESS: 'vless',
  4. TROJAN: 'trojan',
  5. SHADOWSOCKS: 'shadowsocks',
  6. DOKODEMO: 'dokodemo-door',
  7. SOCKS: 'socks',
  8. HTTP: 'http',
  9. WIREGUARD: 'wireguard',
  10. };
  11. const SSMethods = {
  12. AES_256_GCM: 'aes-256-gcm',
  13. AES_128_GCM: 'aes-128-gcm',
  14. CHACHA20_POLY1305: 'chacha20-poly1305',
  15. CHACHA20_IETF_POLY1305: 'chacha20-ietf-poly1305',
  16. XCHACHA20_POLY1305: 'xchacha20-poly1305',
  17. XCHACHA20_IETF_POLY1305: 'xchacha20-ietf-poly1305',
  18. BLAKE3_AES_128_GCM: '2022-blake3-aes-128-gcm',
  19. BLAKE3_AES_256_GCM: '2022-blake3-aes-256-gcm',
  20. BLAKE3_CHACHA20_POLY1305: '2022-blake3-chacha20-poly1305',
  21. };
  22. const TLS_FLOW_CONTROL = {
  23. VISION: "xtls-rprx-vision",
  24. VISION_UDP443: "xtls-rprx-vision-udp443",
  25. };
  26. const TLS_VERSION_OPTION = {
  27. TLS10: "1.0",
  28. TLS11: "1.1",
  29. TLS12: "1.2",
  30. TLS13: "1.3",
  31. };
  32. const TLS_CIPHER_OPTION = {
  33. AES_128_GCM: "TLS_AES_128_GCM_SHA256",
  34. AES_256_GCM: "TLS_AES_256_GCM_SHA384",
  35. CHACHA20_POLY1305: "TLS_CHACHA20_POLY1305_SHA256",
  36. ECDHE_ECDSA_AES_128_CBC: "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
  37. ECDHE_ECDSA_AES_256_CBC: "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
  38. ECDHE_RSA_AES_128_CBC: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
  39. ECDHE_RSA_AES_256_CBC: "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
  40. ECDHE_ECDSA_AES_128_GCM: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
  41. ECDHE_ECDSA_AES_256_GCM: "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
  42. ECDHE_RSA_AES_128_GCM: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
  43. ECDHE_RSA_AES_256_GCM: "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
  44. ECDHE_ECDSA_CHACHA20_POLY1305: "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256",
  45. ECDHE_RSA_CHACHA20_POLY1305: "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
  46. };
  47. const UTLS_FINGERPRINT = {
  48. UTLS_CHROME: "chrome",
  49. UTLS_FIREFOX: "firefox",
  50. UTLS_SAFARI: "safari",
  51. UTLS_IOS: "ios",
  52. UTLS_android: "android",
  53. UTLS_EDGE: "edge",
  54. UTLS_360: "360",
  55. UTLS_QQ: "qq",
  56. UTLS_RANDOM: "random",
  57. UTLS_RANDOMIZED: "randomized",
  58. UTLS_RONDOMIZEDNOALPN: "randomizednoalpn",
  59. UTLS_UNSAFE: "unsafe",
  60. };
  61. const ALPN_OPTION = {
  62. H3: "h3",
  63. H2: "h2",
  64. HTTP1: "http/1.1",
  65. };
  66. const SNIFFING_OPTION = {
  67. HTTP: "http",
  68. TLS: "tls",
  69. QUIC: "quic",
  70. FAKEDNS: "fakedns"
  71. };
  72. const USAGE_OPTION = {
  73. ENCIPHERMENT: "encipherment",
  74. VERIFY: "verify",
  75. ISSUE: "issue",
  76. };
  77. const DOMAIN_STRATEGY_OPTION = {
  78. AS_IS: "AsIs",
  79. USE_IP: "UseIP",
  80. USE_IPV6V4: "UseIPv6v4",
  81. USE_IPV6: "UseIPv6",
  82. USE_IPV4V6: "UseIPv4v6",
  83. USE_IPV4: "UseIPv4",
  84. FORCE_IP: "ForceIP",
  85. FORCE_IPV6V4: "ForceIPv6v4",
  86. FORCE_IPV6: "ForceIPv6",
  87. FORCE_IPV4V6: "ForceIPv4v6",
  88. FORCE_IPV4: "ForceIPv4",
  89. };
  90. const TCP_CONGESTION_OPTION = {
  91. BBR: "bbr",
  92. CUBIC: "cubic",
  93. RENO: "reno",
  94. };
  95. const USERS_SECURITY = {
  96. AES_128_GCM: "aes-128-gcm",
  97. CHACHA20_POLY1305: "chacha20-poly1305",
  98. AUTO: "auto",
  99. NONE: "none",
  100. ZERO: "zero",
  101. };
  102. const MODE_OPTION = {
  103. AUTO: "auto",
  104. PACKET_UP: "packet-up",
  105. STREAM_UP: "stream-up",
  106. STREAM_ONE: "stream-one",
  107. };
  108. Object.freeze(Protocols);
  109. Object.freeze(SSMethods);
  110. Object.freeze(TLS_FLOW_CONTROL);
  111. Object.freeze(TLS_VERSION_OPTION);
  112. Object.freeze(TLS_CIPHER_OPTION);
  113. Object.freeze(UTLS_FINGERPRINT);
  114. Object.freeze(ALPN_OPTION);
  115. Object.freeze(SNIFFING_OPTION);
  116. Object.freeze(USAGE_OPTION);
  117. Object.freeze(DOMAIN_STRATEGY_OPTION);
  118. Object.freeze(TCP_CONGESTION_OPTION);
  119. Object.freeze(USERS_SECURITY);
  120. Object.freeze(MODE_OPTION);
  121. class XrayCommonClass {
  122. static toJsonArray(arr) {
  123. return arr.map(obj => obj.toJson());
  124. }
  125. static fromJson() {
  126. return new XrayCommonClass();
  127. }
  128. toJson() {
  129. return this;
  130. }
  131. toString(format = true) {
  132. return format ? JSON.stringify(this.toJson(), null, 2) : JSON.stringify(this.toJson());
  133. }
  134. static toHeaders(v2Headers) {
  135. let newHeaders = [];
  136. if (v2Headers) {
  137. Object.keys(v2Headers).forEach(key => {
  138. let values = v2Headers[key];
  139. if (typeof (values) === 'string') {
  140. newHeaders.push({ name: key, value: values });
  141. } else {
  142. for (let i = 0; i < values.length; ++i) {
  143. newHeaders.push({ name: key, value: values[i] });
  144. }
  145. }
  146. });
  147. }
  148. return newHeaders;
  149. }
  150. static toV2Headers(headers, arr = true) {
  151. let v2Headers = {};
  152. for (let i = 0; i < headers.length; ++i) {
  153. let name = headers[i].name;
  154. let value = headers[i].value;
  155. if (ObjectUtil.isEmpty(name) || ObjectUtil.isEmpty(value)) {
  156. continue;
  157. }
  158. if (!(name in v2Headers)) {
  159. v2Headers[name] = arr ? [value] : value;
  160. } else {
  161. if (arr) {
  162. v2Headers[name].push(value);
  163. } else {
  164. v2Headers[name] = value;
  165. }
  166. }
  167. }
  168. return v2Headers;
  169. }
  170. }
  171. class TcpStreamSettings extends XrayCommonClass {
  172. constructor(
  173. acceptProxyProtocol = false,
  174. type = 'none',
  175. request = new TcpStreamSettings.TcpRequest(),
  176. response = new TcpStreamSettings.TcpResponse(),
  177. ) {
  178. super();
  179. this.acceptProxyProtocol = acceptProxyProtocol;
  180. this.type = type;
  181. this.request = request;
  182. this.response = response;
  183. }
  184. static fromJson(json = {}) {
  185. let header = json.header;
  186. if (!header) {
  187. header = {};
  188. }
  189. return new TcpStreamSettings(json.acceptProxyProtocol,
  190. header.type,
  191. TcpStreamSettings.TcpRequest.fromJson(header.request),
  192. TcpStreamSettings.TcpResponse.fromJson(header.response),
  193. );
  194. }
  195. toJson() {
  196. return {
  197. acceptProxyProtocol: this.acceptProxyProtocol,
  198. header: {
  199. type: this.type,
  200. request: this.type === 'http' ? this.request.toJson() : undefined,
  201. response: this.type === 'http' ? this.response.toJson() : undefined,
  202. },
  203. };
  204. }
  205. }
  206. TcpStreamSettings.TcpRequest = class extends XrayCommonClass {
  207. constructor(
  208. version = '1.1',
  209. method = 'GET',
  210. path = ['/'],
  211. headers = [],
  212. ) {
  213. super();
  214. this.version = version;
  215. this.method = method;
  216. this.path = path.length === 0 ? ['/'] : path;
  217. this.headers = headers;
  218. }
  219. addPath(path) {
  220. this.path.push(path);
  221. }
  222. removePath(index) {
  223. this.path.splice(index, 1);
  224. }
  225. addHeader(name, value) {
  226. this.headers.push({ name: name, value: value });
  227. }
  228. removeHeader(index) {
  229. this.headers.splice(index, 1);
  230. }
  231. static fromJson(json = {}) {
  232. return new TcpStreamSettings.TcpRequest(
  233. json.version,
  234. json.method,
  235. json.path,
  236. XrayCommonClass.toHeaders(json.headers),
  237. );
  238. }
  239. toJson() {
  240. return {
  241. version: this.version,
  242. method: this.method,
  243. path: ObjectUtil.clone(this.path),
  244. headers: XrayCommonClass.toV2Headers(this.headers),
  245. };
  246. }
  247. };
  248. TcpStreamSettings.TcpResponse = class extends XrayCommonClass {
  249. constructor(
  250. version = '1.1',
  251. status = '200',
  252. reason = 'OK',
  253. headers = [],
  254. ) {
  255. super();
  256. this.version = version;
  257. this.status = status;
  258. this.reason = reason;
  259. this.headers = headers;
  260. }
  261. addHeader(name, value) {
  262. this.headers.push({ name: name, value: value });
  263. }
  264. removeHeader(index) {
  265. this.headers.splice(index, 1);
  266. }
  267. static fromJson(json = {}) {
  268. return new TcpStreamSettings.TcpResponse(
  269. json.version,
  270. json.status,
  271. json.reason,
  272. XrayCommonClass.toHeaders(json.headers),
  273. );
  274. }
  275. toJson() {
  276. return {
  277. version: this.version,
  278. status: this.status,
  279. reason: this.reason,
  280. headers: XrayCommonClass.toV2Headers(this.headers),
  281. };
  282. }
  283. };
  284. class KcpStreamSettings extends XrayCommonClass {
  285. constructor(
  286. mtu = 1350,
  287. tti = 50,
  288. uplinkCapacity = 5,
  289. downlinkCapacity = 20,
  290. congestion = false,
  291. readBufferSize = 2,
  292. writeBufferSize = 2,
  293. type = 'none',
  294. seed = RandomUtil.randomSeq(10),
  295. ) {
  296. super();
  297. this.mtu = mtu;
  298. this.tti = tti;
  299. this.upCap = uplinkCapacity;
  300. this.downCap = downlinkCapacity;
  301. this.congestion = congestion;
  302. this.readBuffer = readBufferSize;
  303. this.writeBuffer = writeBufferSize;
  304. this.type = type;
  305. this.seed = seed;
  306. }
  307. static fromJson(json = {}) {
  308. return new KcpStreamSettings(
  309. json.mtu,
  310. json.tti,
  311. json.uplinkCapacity,
  312. json.downlinkCapacity,
  313. json.congestion,
  314. json.readBufferSize,
  315. json.writeBufferSize,
  316. ObjectUtil.isEmpty(json.header) ? 'none' : json.header.type,
  317. json.seed,
  318. );
  319. }
  320. toJson() {
  321. return {
  322. mtu: this.mtu,
  323. tti: this.tti,
  324. uplinkCapacity: this.upCap,
  325. downlinkCapacity: this.downCap,
  326. congestion: this.congestion,
  327. readBufferSize: this.readBuffer,
  328. writeBufferSize: this.writeBuffer,
  329. header: {
  330. type: this.type,
  331. },
  332. seed: this.seed,
  333. };
  334. }
  335. }
  336. class WsStreamSettings extends XrayCommonClass {
  337. constructor(
  338. acceptProxyProtocol = false,
  339. path = '/',
  340. host = '',
  341. headers = [],
  342. heartbeatPeriod = 0,
  343. ) {
  344. super();
  345. this.acceptProxyProtocol = acceptProxyProtocol;
  346. this.path = path;
  347. this.host = host;
  348. this.headers = headers;
  349. this.heartbeatPeriod = heartbeatPeriod;
  350. }
  351. addHeader(name, value) {
  352. this.headers.push({ name: name, value: value });
  353. }
  354. removeHeader(index) {
  355. this.headers.splice(index, 1);
  356. }
  357. static fromJson(json = {}) {
  358. return new WsStreamSettings(
  359. json.acceptProxyProtocol,
  360. json.path,
  361. json.host,
  362. XrayCommonClass.toHeaders(json.headers),
  363. json.heartbeatPeriod,
  364. );
  365. }
  366. toJson() {
  367. return {
  368. acceptProxyProtocol: this.acceptProxyProtocol,
  369. path: this.path,
  370. host: this.host,
  371. headers: XrayCommonClass.toV2Headers(this.headers, false),
  372. heartbeatPeriod: this.heartbeatPeriod,
  373. };
  374. }
  375. }
  376. class GrpcStreamSettings extends XrayCommonClass {
  377. constructor(
  378. serviceName = "",
  379. authority = "",
  380. multiMode = false,
  381. ) {
  382. super();
  383. this.serviceName = serviceName;
  384. this.authority = authority;
  385. this.multiMode = multiMode;
  386. }
  387. static fromJson(json = {}) {
  388. return new GrpcStreamSettings(
  389. json.serviceName,
  390. json.authority,
  391. json.multiMode
  392. );
  393. }
  394. toJson() {
  395. return {
  396. serviceName: this.serviceName,
  397. authority: this.authority,
  398. multiMode: this.multiMode,
  399. }
  400. }
  401. }
  402. class HTTPUpgradeStreamSettings extends XrayCommonClass {
  403. constructor(
  404. acceptProxyProtocol = false,
  405. path = '/',
  406. host = '',
  407. headers = []
  408. ) {
  409. super();
  410. this.acceptProxyProtocol = acceptProxyProtocol;
  411. this.path = path;
  412. this.host = host;
  413. this.headers = headers;
  414. }
  415. addHeader(name, value) {
  416. this.headers.push({ name: name, value: value });
  417. }
  418. removeHeader(index) {
  419. this.headers.splice(index, 1);
  420. }
  421. static fromJson(json = {}) {
  422. return new HTTPUpgradeStreamSettings(
  423. json.acceptProxyProtocol,
  424. json.path,
  425. json.host,
  426. XrayCommonClass.toHeaders(json.headers),
  427. );
  428. }
  429. toJson() {
  430. return {
  431. acceptProxyProtocol: this.acceptProxyProtocol,
  432. path: this.path,
  433. host: this.host,
  434. headers: XrayCommonClass.toV2Headers(this.headers, false),
  435. };
  436. }
  437. }
  438. class xHTTPStreamSettings extends XrayCommonClass {
  439. constructor(
  440. path = '/',
  441. host = '',
  442. headers = [],
  443. scMaxBufferedPosts = 30,
  444. scMaxEachPostBytes = "1000000",
  445. scStreamUpServerSecs = "20-80",
  446. noSSEHeader = false,
  447. xPaddingBytes = "100-1000",
  448. mode = MODE_OPTION.AUTO,
  449. ) {
  450. super();
  451. this.path = path;
  452. this.host = host;
  453. this.headers = headers;
  454. this.scMaxBufferedPosts = scMaxBufferedPosts;
  455. this.scMaxEachPostBytes = scMaxEachPostBytes;
  456. this.scStreamUpServerSecs = scStreamUpServerSecs;
  457. this.noSSEHeader = noSSEHeader;
  458. this.xPaddingBytes = xPaddingBytes;
  459. this.mode = mode;
  460. }
  461. addHeader(name, value) {
  462. this.headers.push({ name: name, value: value });
  463. }
  464. removeHeader(index) {
  465. this.headers.splice(index, 1);
  466. }
  467. static fromJson(json = {}) {
  468. return new xHTTPStreamSettings(
  469. json.path,
  470. json.host,
  471. XrayCommonClass.toHeaders(json.headers),
  472. json.scMaxBufferedPosts,
  473. json.scMaxEachPostBytes,
  474. json.scStreamUpServerSecs,
  475. json.noSSEHeader,
  476. json.xPaddingBytes,
  477. json.mode,
  478. );
  479. }
  480. toJson() {
  481. return {
  482. path: this.path,
  483. host: this.host,
  484. headers: XrayCommonClass.toV2Headers(this.headers, false),
  485. scMaxBufferedPosts: this.scMaxBufferedPosts,
  486. scMaxEachPostBytes: this.scMaxEachPostBytes,
  487. scStreamUpServerSecs: this.scStreamUpServerSecs,
  488. noSSEHeader: this.noSSEHeader,
  489. xPaddingBytes: this.xPaddingBytes,
  490. mode: this.mode,
  491. };
  492. }
  493. }
  494. class TlsStreamSettings extends XrayCommonClass {
  495. constructor(
  496. serverName = '',
  497. minVersion = TLS_VERSION_OPTION.TLS12,
  498. maxVersion = TLS_VERSION_OPTION.TLS13,
  499. cipherSuites = '',
  500. rejectUnknownSni = false,
  501. verifyPeerCertInNames = ['dns.google', 'cloudflare-dns.com'],
  502. disableSystemRoot = false,
  503. enableSessionResumption = false,
  504. certificates = [new TlsStreamSettings.Cert()],
  505. alpn = [ALPN_OPTION.H3, ALPN_OPTION.H2, ALPN_OPTION.HTTP1],
  506. settings = new TlsStreamSettings.Settings()
  507. ) {
  508. super();
  509. this.sni = serverName;
  510. this.minVersion = minVersion;
  511. this.maxVersion = maxVersion;
  512. this.cipherSuites = cipherSuites;
  513. this.rejectUnknownSni = rejectUnknownSni;
  514. this.verifyPeerCertInNames = Array.isArray(verifyPeerCertInNames) ? verifyPeerCertInNames.join(",") : verifyPeerCertInNames;
  515. this.disableSystemRoot = disableSystemRoot;
  516. this.enableSessionResumption = enableSessionResumption;
  517. this.certs = certificates;
  518. this.alpn = alpn;
  519. this.settings = settings;
  520. }
  521. addCert() {
  522. this.certs.push(new TlsStreamSettings.Cert());
  523. }
  524. removeCert(index) {
  525. this.certs.splice(index, 1);
  526. }
  527. static fromJson(json = {}) {
  528. let certs;
  529. let settings;
  530. if (!ObjectUtil.isEmpty(json.certificates)) {
  531. certs = json.certificates.map(cert => TlsStreamSettings.Cert.fromJson(cert));
  532. }
  533. if (!ObjectUtil.isEmpty(json.settings)) {
  534. settings = new TlsStreamSettings.Settings(json.settings.allowInsecure, json.settings.fingerprint, json.settings.serverName, json.settings.domains);
  535. }
  536. return new TlsStreamSettings(
  537. json.serverName,
  538. json.minVersion,
  539. json.maxVersion,
  540. json.cipherSuites,
  541. json.rejectUnknownSni,
  542. json.verifyPeerCertInNames,
  543. json.disableSystemRoot,
  544. json.enableSessionResumption,
  545. certs,
  546. json.alpn,
  547. settings,
  548. );
  549. }
  550. toJson() {
  551. return {
  552. serverName: this.sni,
  553. minVersion: this.minVersion,
  554. maxVersion: this.maxVersion,
  555. cipherSuites: this.cipherSuites,
  556. rejectUnknownSni: this.rejectUnknownSni,
  557. verifyPeerCertInNames: this.verifyPeerCertInNames.split(","),
  558. disableSystemRoot: this.disableSystemRoot,
  559. enableSessionResumption: this.enableSessionResumption,
  560. certificates: TlsStreamSettings.toJsonArray(this.certs),
  561. alpn: this.alpn,
  562. settings: this.settings,
  563. };
  564. }
  565. }
  566. TlsStreamSettings.Cert = class extends XrayCommonClass {
  567. constructor(
  568. useFile = true,
  569. certificateFile = '',
  570. keyFile = '',
  571. certificate = '',
  572. key = '',
  573. ocspStapling = 3600,
  574. oneTimeLoading = false,
  575. usage = USAGE_OPTION.ENCIPHERMENT,
  576. buildChain = false,
  577. ) {
  578. super();
  579. this.useFile = useFile;
  580. this.certFile = certificateFile;
  581. this.keyFile = keyFile;
  582. this.cert = Array.isArray(certificate) ? certificate.join('\n') : certificate;
  583. this.key = Array.isArray(key) ? key.join('\n') : key;
  584. this.ocspStapling = ocspStapling;
  585. this.oneTimeLoading = oneTimeLoading;
  586. this.usage = usage;
  587. this.buildChain = buildChain
  588. }
  589. static fromJson(json = {}) {
  590. if ('certificateFile' in json && 'keyFile' in json) {
  591. return new TlsStreamSettings.Cert(
  592. true,
  593. json.certificateFile,
  594. json.keyFile, '', '',
  595. json.ocspStapling,
  596. json.oneTimeLoading,
  597. json.usage,
  598. json.buildChain,
  599. );
  600. } else {
  601. return new TlsStreamSettings.Cert(
  602. false, '', '',
  603. json.certificate.join('\n'),
  604. json.key.join('\n'),
  605. json.ocspStapling,
  606. json.oneTimeLoading,
  607. json.usage,
  608. json.buildChain,
  609. );
  610. }
  611. }
  612. toJson() {
  613. if (this.useFile) {
  614. return {
  615. certificateFile: this.certFile,
  616. keyFile: this.keyFile,
  617. ocspStapling: this.ocspStapling,
  618. oneTimeLoading: this.oneTimeLoading,
  619. usage: this.usage,
  620. buildChain: this.buildChain,
  621. };
  622. } else {
  623. return {
  624. certificate: this.cert.split('\n'),
  625. key: this.key.split('\n'),
  626. ocspStapling: this.ocspStapling,
  627. oneTimeLoading: this.oneTimeLoading,
  628. usage: this.usage,
  629. buildChain: this.buildChain,
  630. };
  631. }
  632. }
  633. };
  634. TlsStreamSettings.Settings = class extends XrayCommonClass {
  635. constructor(
  636. allowInsecure = false,
  637. fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
  638. ) {
  639. super();
  640. this.allowInsecure = allowInsecure;
  641. this.fingerprint = fingerprint;
  642. }
  643. static fromJson(json = {}) {
  644. return new TlsStreamSettings.Settings(
  645. json.allowInsecure,
  646. json.fingerprint,
  647. );
  648. }
  649. toJson() {
  650. return {
  651. allowInsecure: this.allowInsecure,
  652. fingerprint: this.fingerprint,
  653. };
  654. }
  655. };
  656. class RealityStreamSettings extends XrayCommonClass {
  657. constructor(
  658. show = false,
  659. xver = 0,
  660. dest = 'yahoo.com:443',
  661. serverNames = 'yahoo.com,www.yahoo.com',
  662. privateKey = '',
  663. minClient = '',
  664. maxClient = '',
  665. maxTimediff = 0,
  666. shortIds = RandomUtil.randomShortIds(),
  667. settings = new RealityStreamSettings.Settings()
  668. ) {
  669. super();
  670. this.show = show;
  671. this.xver = xver;
  672. this.dest = dest;
  673. this.serverNames = Array.isArray(serverNames) ? serverNames.join(",") : serverNames;
  674. this.privateKey = privateKey;
  675. this.minClient = minClient;
  676. this.maxClient = maxClient;
  677. this.maxTimediff = maxTimediff;
  678. this.shortIds = Array.isArray(shortIds) ? shortIds.join(",") : shortIds;
  679. this.settings = settings;
  680. }
  681. static fromJson(json = {}) {
  682. let settings;
  683. if (!ObjectUtil.isEmpty(json.settings)) {
  684. settings = new RealityStreamSettings.Settings(
  685. json.settings.publicKey,
  686. json.settings.fingerprint,
  687. json.settings.serverName,
  688. json.settings.spiderX
  689. );
  690. }
  691. return new RealityStreamSettings(
  692. json.show,
  693. json.xver,
  694. json.dest,
  695. json.serverNames,
  696. json.privateKey,
  697. json.minClient,
  698. json.maxClient,
  699. json.maxTimediff,
  700. json.shortIds,
  701. settings,
  702. );
  703. }
  704. toJson() {
  705. return {
  706. show: this.show,
  707. xver: this.xver,
  708. dest: this.dest,
  709. serverNames: this.serverNames.split(","),
  710. privateKey: this.privateKey,
  711. minClient: this.minClient,
  712. maxClient: this.maxClient,
  713. maxTimediff: this.maxTimediff,
  714. shortIds: this.shortIds.split(","),
  715. settings: this.settings,
  716. };
  717. }
  718. }
  719. RealityStreamSettings.Settings = class extends XrayCommonClass {
  720. constructor(
  721. publicKey = '',
  722. fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
  723. serverName = '',
  724. spiderX = '/'
  725. ) {
  726. super();
  727. this.publicKey = publicKey;
  728. this.fingerprint = fingerprint;
  729. this.serverName = serverName;
  730. this.spiderX = spiderX;
  731. }
  732. static fromJson(json = {}) {
  733. return new RealityStreamSettings.Settings(
  734. json.publicKey,
  735. json.fingerprint,
  736. json.serverName,
  737. json.spiderX,
  738. );
  739. }
  740. toJson() {
  741. return {
  742. publicKey: this.publicKey,
  743. fingerprint: this.fingerprint,
  744. serverName: this.serverName,
  745. spiderX: this.spiderX,
  746. };
  747. }
  748. };
  749. class SockoptStreamSettings extends XrayCommonClass {
  750. constructor(
  751. acceptProxyProtocol = false,
  752. tcpFastOpen = false,
  753. mark = 0,
  754. tproxy = "off",
  755. tcpMptcp = false,
  756. penetrate = false,
  757. domainStrategy = DOMAIN_STRATEGY_OPTION.USE_IP,
  758. tcpMaxSeg = 1440,
  759. dialerProxy = "",
  760. tcpKeepAliveInterval = 0,
  761. tcpKeepAliveIdle = 300,
  762. tcpUserTimeout = 10000,
  763. tcpcongestion = TCP_CONGESTION_OPTION.BBR,
  764. V6Only = false,
  765. tcpWindowClamp = 600,
  766. interfaceName = "",
  767. ) {
  768. super();
  769. this.acceptProxyProtocol = acceptProxyProtocol;
  770. this.tcpFastOpen = tcpFastOpen;
  771. this.mark = mark;
  772. this.tproxy = tproxy;
  773. this.tcpMptcp = tcpMptcp;
  774. this.penetrate = penetrate;
  775. this.domainStrategy = domainStrategy;
  776. this.tcpMaxSeg = tcpMaxSeg;
  777. this.dialerProxy = dialerProxy;
  778. this.tcpKeepAliveInterval = tcpKeepAliveInterval;
  779. this.tcpKeepAliveIdle = tcpKeepAliveIdle;
  780. this.tcpUserTimeout = tcpUserTimeout;
  781. this.tcpcongestion = tcpcongestion;
  782. this.V6Only = V6Only;
  783. this.tcpWindowClamp = tcpWindowClamp;
  784. this.interfaceName = interfaceName;
  785. }
  786. static fromJson(json = {}) {
  787. if (Object.keys(json).length === 0) return undefined;
  788. return new SockoptStreamSettings(
  789. json.acceptProxyProtocol,
  790. json.tcpFastOpen,
  791. json.mark,
  792. json.tproxy,
  793. json.tcpMptcp,
  794. json.penetrate,
  795. json.domainStrategy,
  796. json.tcpMaxSeg,
  797. json.dialerProxy,
  798. json.tcpKeepAliveInterval,
  799. json.tcpKeepAliveIdle,
  800. json.tcpUserTimeout,
  801. json.tcpcongestion,
  802. json.V6Only,
  803. json.tcpWindowClamp,
  804. json.interface,
  805. );
  806. }
  807. toJson() {
  808. return {
  809. acceptProxyProtocol: this.acceptProxyProtocol,
  810. tcpFastOpen: this.tcpFastOpen,
  811. mark: this.mark,
  812. tproxy: this.tproxy,
  813. tcpMptcp: this.tcpMptcp,
  814. penetrate: this.penetrate,
  815. domainStrategy: this.domainStrategy,
  816. tcpMaxSeg: this.tcpMaxSeg,
  817. dialerProxy: this.dialerProxy,
  818. tcpKeepAliveInterval: this.tcpKeepAliveInterval,
  819. tcpKeepAliveIdle: this.tcpKeepAliveIdle,
  820. tcpUserTimeout: this.tcpUserTimeout,
  821. tcpcongestion: this.tcpcongestion,
  822. V6Only: this.V6Only,
  823. tcpWindowClamp: this.tcpWindowClamp,
  824. interface: this.interfaceName,
  825. };
  826. }
  827. }
  828. class StreamSettings extends XrayCommonClass {
  829. constructor(network = 'tcp',
  830. security = 'none',
  831. externalProxy = [],
  832. tlsSettings = new TlsStreamSettings(),
  833. realitySettings = new RealityStreamSettings(),
  834. tcpSettings = new TcpStreamSettings(),
  835. kcpSettings = new KcpStreamSettings(),
  836. wsSettings = new WsStreamSettings(),
  837. grpcSettings = new GrpcStreamSettings(),
  838. httpupgradeSettings = new HTTPUpgradeStreamSettings(),
  839. xhttpSettings = new xHTTPStreamSettings(),
  840. sockopt = undefined,
  841. ) {
  842. super();
  843. this.network = network;
  844. this.security = security;
  845. this.externalProxy = externalProxy;
  846. this.tls = tlsSettings;
  847. this.reality = realitySettings;
  848. this.tcp = tcpSettings;
  849. this.kcp = kcpSettings;
  850. this.ws = wsSettings;
  851. this.grpc = grpcSettings;
  852. this.httpupgrade = httpupgradeSettings;
  853. this.xhttp = xhttpSettings;
  854. this.sockopt = sockopt;
  855. }
  856. get isTls() {
  857. return this.security === "tls";
  858. }
  859. set isTls(isTls) {
  860. if (isTls) {
  861. this.security = 'tls';
  862. } else {
  863. this.security = 'none';
  864. }
  865. }
  866. //for Reality
  867. get isReality() {
  868. return this.security === "reality";
  869. }
  870. set isReality(isReality) {
  871. if (isReality) {
  872. this.security = 'reality';
  873. } else {
  874. this.security = 'none';
  875. }
  876. }
  877. get sockoptSwitch() {
  878. return this.sockopt != undefined;
  879. }
  880. set sockoptSwitch(value) {
  881. this.sockopt = value ? new SockoptStreamSettings() : undefined;
  882. }
  883. static fromJson(json = {}) {
  884. return new StreamSettings(
  885. json.network,
  886. json.security,
  887. json.externalProxy,
  888. TlsStreamSettings.fromJson(json.tlsSettings),
  889. RealityStreamSettings.fromJson(json.realitySettings),
  890. TcpStreamSettings.fromJson(json.tcpSettings),
  891. KcpStreamSettings.fromJson(json.kcpSettings),
  892. WsStreamSettings.fromJson(json.wsSettings),
  893. GrpcStreamSettings.fromJson(json.grpcSettings),
  894. HTTPUpgradeStreamSettings.fromJson(json.httpupgradeSettings),
  895. xHTTPStreamSettings.fromJson(json.xhttpSettings),
  896. SockoptStreamSettings.fromJson(json.sockopt),
  897. );
  898. }
  899. toJson() {
  900. const network = this.network;
  901. return {
  902. network: network,
  903. security: this.security,
  904. externalProxy: this.externalProxy,
  905. tlsSettings: this.isTls ? this.tls.toJson() : undefined,
  906. realitySettings: this.isReality ? this.reality.toJson() : undefined,
  907. tcpSettings: network === 'tcp' ? this.tcp.toJson() : undefined,
  908. kcpSettings: network === 'kcp' ? this.kcp.toJson() : undefined,
  909. wsSettings: network === 'ws' ? this.ws.toJson() : undefined,
  910. grpcSettings: network === 'grpc' ? this.grpc.toJson() : undefined,
  911. httpupgradeSettings: network === 'httpupgrade' ? this.httpupgrade.toJson() : undefined,
  912. xhttpSettings: network === 'xhttp' ? this.xhttp.toJson() : undefined,
  913. sockopt: this.sockopt != undefined ? this.sockopt.toJson() : undefined,
  914. };
  915. }
  916. }
  917. class Sniffing extends XrayCommonClass {
  918. constructor(
  919. enabled = false,
  920. destOverride = ['http', 'tls', 'quic', 'fakedns'],
  921. metadataOnly = false,
  922. routeOnly = false) {
  923. super();
  924. this.enabled = enabled;
  925. this.destOverride = destOverride;
  926. this.metadataOnly = metadataOnly;
  927. this.routeOnly = routeOnly;
  928. }
  929. static fromJson(json = {}) {
  930. let destOverride = ObjectUtil.clone(json.destOverride);
  931. if (!ObjectUtil.isEmpty(destOverride) && !ObjectUtil.isArrEmpty(destOverride)) {
  932. if (ObjectUtil.isEmpty(destOverride[0])) {
  933. destOverride = ['http', 'tls', 'quic', 'fakedns'];
  934. }
  935. }
  936. return new Sniffing(
  937. !!json.enabled,
  938. destOverride,
  939. json.metadataOnly,
  940. json.routeOnly,
  941. );
  942. }
  943. }
  944. class Allocate extends XrayCommonClass {
  945. constructor(
  946. strategy = "always",
  947. refresh = 5,
  948. concurrency = 3,
  949. ) {
  950. super();
  951. this.strategy = strategy;
  952. this.refresh = refresh;
  953. this.concurrency = concurrency;
  954. }
  955. static fromJson(json = {}) {
  956. return new Allocate(
  957. json.strategy,
  958. json.refresh,
  959. json.concurrency,
  960. );
  961. }
  962. }
  963. class Inbound extends XrayCommonClass {
  964. constructor(
  965. port = RandomUtil.randomIntRange(10000, 60000),
  966. listen = '',
  967. protocol = Protocols.VLESS,
  968. settings = null,
  969. streamSettings = new StreamSettings(),
  970. tag = '',
  971. sniffing = new Sniffing(),
  972. allocate = new Allocate(),
  973. clientStats = '',
  974. ) {
  975. super();
  976. this.port = port;
  977. this.listen = listen;
  978. this._protocol = protocol;
  979. this.settings = ObjectUtil.isEmpty(settings) ? Inbound.Settings.getSettings(protocol) : settings;
  980. this.stream = streamSettings;
  981. this.tag = tag;
  982. this.sniffing = sniffing;
  983. this.allocate = allocate;
  984. this.clientStats = clientStats;
  985. }
  986. getClientStats() {
  987. return this.clientStats;
  988. }
  989. get clients() {
  990. switch (this.protocol) {
  991. case Protocols.VMESS: return this.settings.vmesses;
  992. case Protocols.VLESS: return this.settings.vlesses;
  993. case Protocols.TROJAN: return this.settings.trojans;
  994. case Protocols.SHADOWSOCKS: return this.isSSMultiUser ? this.settings.shadowsockses : null;
  995. default: return null;
  996. }
  997. }
  998. get protocol() {
  999. return this._protocol;
  1000. }
  1001. set protocol(protocol) {
  1002. this._protocol = protocol;
  1003. this.settings = Inbound.Settings.getSettings(protocol);
  1004. if (protocol === Protocols.TROJAN) {
  1005. this.tls = false;
  1006. }
  1007. }
  1008. get network() {
  1009. return this.stream.network;
  1010. }
  1011. set network(network) {
  1012. this.stream.network = network;
  1013. }
  1014. get isTcp() {
  1015. return this.network === "tcp";
  1016. }
  1017. get isWs() {
  1018. return this.network === "ws";
  1019. }
  1020. get isKcp() {
  1021. return this.network === "kcp";
  1022. }
  1023. get isGrpc() {
  1024. return this.network === "grpc";
  1025. }
  1026. get isHttpupgrade() {
  1027. return this.network === "httpupgrade";
  1028. }
  1029. get isXHTTP() {
  1030. return this.network === "xhttp";
  1031. }
  1032. // Shadowsocks
  1033. get method() {
  1034. switch (this.protocol) {
  1035. case Protocols.SHADOWSOCKS:
  1036. return this.settings.method;
  1037. default:
  1038. return "";
  1039. }
  1040. }
  1041. get isSSMultiUser() {
  1042. return this.method != SSMethods.BLAKE3_CHACHA20_POLY1305;
  1043. }
  1044. get isSS2022() {
  1045. return this.method.substring(0, 4) === "2022";
  1046. }
  1047. get serverName() {
  1048. if (this.stream.isTls) return this.stream.tls.sni;
  1049. if (this.stream.isReality) return this.stream.reality.serverNames;
  1050. return "";
  1051. }
  1052. getHeader(obj, name) {
  1053. for (const header of obj.headers) {
  1054. if (header.name.toLowerCase() === name.toLowerCase()) {
  1055. return header.value;
  1056. }
  1057. }
  1058. return "";
  1059. }
  1060. get host() {
  1061. if (this.isTcp) {
  1062. return this.getHeader(this.stream.tcp.request, 'host');
  1063. } else if (this.isWs) {
  1064. return this.stream.ws.host?.length > 0 ? this.stream.ws.host : this.getHeader(this.stream.ws, 'host');
  1065. } else if (this.isHttpupgrade) {
  1066. return this.stream.httpupgrade.host?.length > 0 ? this.stream.httpupgrade.host : this.getHeader(this.stream.httpupgrade, 'host');
  1067. } else if (this.isXHTTP) {
  1068. return this.stream.xhttp.host?.length > 0 ? this.stream.xhttp.host : this.getHeader(this.stream.xhttp, 'host');
  1069. }
  1070. return null;
  1071. }
  1072. get path() {
  1073. if (this.isTcp) {
  1074. return this.stream.tcp.request.path[0];
  1075. } else if (this.isWs) {
  1076. return this.stream.ws.path;
  1077. } else if (this.isHttpupgrade) {
  1078. return this.stream.httpupgrade.path;
  1079. } else if (this.isXHTTP) {
  1080. return this.stream.xhttp.path;
  1081. }
  1082. return null;
  1083. }
  1084. get kcpType() {
  1085. return this.stream.kcp.type;
  1086. }
  1087. get kcpSeed() {
  1088. return this.stream.kcp.seed;
  1089. }
  1090. get serviceName() {
  1091. return this.stream.grpc.serviceName;
  1092. }
  1093. isExpiry(index) {
  1094. let exp = this.clients[index].expiryTime;
  1095. return exp > 0 ? exp < new Date().getTime() : false;
  1096. }
  1097. canEnableTls() {
  1098. if (![Protocols.VMESS, Protocols.VLESS, Protocols.TROJAN, Protocols.SHADOWSOCKS].includes(this.protocol)) return false;
  1099. return ["tcp", "ws", "http", "grpc", "httpupgrade", "xhttp"].includes(this.network);
  1100. }
  1101. //this is used for xtls-rprx-vision
  1102. canEnableTlsFlow() {
  1103. if (((this.stream.security === 'tls') || (this.stream.security === 'reality')) && (this.network === "tcp")) {
  1104. return this.protocol === Protocols.VLESS;
  1105. }
  1106. return false;
  1107. }
  1108. canEnableReality() {
  1109. if (![Protocols.VLESS, Protocols.TROJAN].includes(this.protocol)) return false;
  1110. return ["tcp", "http", "grpc", "xhttp"].includes(this.network);
  1111. }
  1112. canEnableStream() {
  1113. return [Protocols.VMESS, Protocols.VLESS, Protocols.TROJAN, Protocols.SHADOWSOCKS].includes(this.protocol);
  1114. }
  1115. reset() {
  1116. this.port = RandomUtil.randomIntRange(10000, 60000);
  1117. this.listen = '';
  1118. this.protocol = Protocols.VMESS;
  1119. this.settings = Inbound.Settings.getSettings(Protocols.VMESS);
  1120. this.stream = new StreamSettings();
  1121. this.tag = '';
  1122. this.sniffing = new Sniffing();
  1123. this.allocate = new Allocate();
  1124. }
  1125. genVmessLink(address = '', port = this.port, forceTls, remark = '', clientId, security) {
  1126. if (this.protocol !== Protocols.VMESS) {
  1127. return '';
  1128. }
  1129. const tls = forceTls == 'same' ? this.stream.security : forceTls;
  1130. let obj = {
  1131. v: '2',
  1132. ps: remark,
  1133. add: address,
  1134. port: port,
  1135. id: clientId,
  1136. scy: security,
  1137. net: this.stream.network,
  1138. type: 'none',
  1139. tls: tls,
  1140. };
  1141. const network = this.stream.network;
  1142. if (network === 'tcp') {
  1143. const tcp = this.stream.tcp;
  1144. obj.type = tcp.type;
  1145. if (tcp.type === 'http') {
  1146. const request = tcp.request;
  1147. obj.path = request.path.join(',');
  1148. const host = this.getHeader(request, 'host');
  1149. if (host) obj.host = host;
  1150. }
  1151. } else if (network === 'kcp') {
  1152. const kcp = this.stream.kcp;
  1153. obj.type = kcp.type;
  1154. obj.path = kcp.seed;
  1155. } else if (network === 'ws') {
  1156. const ws = this.stream.ws;
  1157. obj.path = ws.path;
  1158. obj.host = ws.host?.length > 0 ? ws.host : this.getHeader(ws, 'host');
  1159. } else if (network === 'grpc') {
  1160. obj.path = this.stream.grpc.serviceName;
  1161. obj.authority = this.stream.grpc.authority;
  1162. if (this.stream.grpc.multiMode) {
  1163. obj.type = 'multi'
  1164. }
  1165. } else if (network === 'httpupgrade') {
  1166. const httpupgrade = this.stream.httpupgrade;
  1167. obj.path = httpupgrade.path;
  1168. obj.host = httpupgrade.host?.length > 0 ? httpupgrade.host : this.getHeader(httpupgrade, 'host');
  1169. } else if (network === 'xhttp') {
  1170. const xhttp = this.stream.xhttp;
  1171. obj.path = xhttp.path;
  1172. obj.host = xhttp.host?.length > 0 ? xhttp.host : this.getHeader(xhttp, 'host');
  1173. obj.mode = xhttp.mode;
  1174. }
  1175. if (tls === 'tls') {
  1176. if (!ObjectUtil.isEmpty(this.stream.tls.sni)) {
  1177. obj.sni = this.stream.tls.sni;
  1178. }
  1179. if (!ObjectUtil.isEmpty(this.stream.tls.settings.fingerprint)) {
  1180. obj.fp = this.stream.tls.settings.fingerprint;
  1181. }
  1182. if (this.stream.tls.alpn.length > 0) {
  1183. obj.alpn = this.stream.tls.alpn.join(',');
  1184. }
  1185. if (this.stream.tls.settings.allowInsecure) {
  1186. obj.allowInsecure = this.stream.tls.settings.allowInsecure;
  1187. }
  1188. }
  1189. return 'vmess://' + Base64.encode(JSON.stringify(obj, null, 2));
  1190. }
  1191. genVLESSLink(address = '', port = this.port, forceTls, remark = '', clientId, flow) {
  1192. const uuid = clientId;
  1193. const type = this.stream.network;
  1194. const security = forceTls == 'same' ? this.stream.security : forceTls;
  1195. const params = new Map();
  1196. params.set("type", this.stream.network);
  1197. switch (type) {
  1198. case "tcp":
  1199. const tcp = this.stream.tcp;
  1200. if (tcp.type === 'http') {
  1201. const request = tcp.request;
  1202. params.set("path", request.path.join(','));
  1203. const index = request.headers.findIndex(header => header.name.toLowerCase() === 'host');
  1204. if (index >= 0) {
  1205. const host = request.headers[index].value;
  1206. params.set("host", host);
  1207. }
  1208. params.set("headerType", 'http');
  1209. }
  1210. break;
  1211. case "kcp":
  1212. const kcp = this.stream.kcp;
  1213. params.set("headerType", kcp.type);
  1214. params.set("seed", kcp.seed);
  1215. break;
  1216. case "ws":
  1217. const ws = this.stream.ws;
  1218. params.set("path", ws.path);
  1219. params.set("host", ws.host?.length > 0 ? ws.host : this.getHeader(ws, 'host'));
  1220. break;
  1221. case "grpc":
  1222. const grpc = this.stream.grpc;
  1223. params.set("serviceName", grpc.serviceName);
  1224. params.set("authority", grpc.authority);
  1225. if (grpc.multiMode) {
  1226. params.set("mode", "multi");
  1227. }
  1228. break;
  1229. case "httpupgrade":
  1230. const httpupgrade = this.stream.httpupgrade;
  1231. params.set("path", httpupgrade.path);
  1232. params.set("host", httpupgrade.host?.length > 0 ? httpupgrade.host : this.getHeader(httpupgrade, 'host'));
  1233. break;
  1234. case "xhttp":
  1235. const xhttp = this.stream.xhttp;
  1236. params.set("path", xhttp.path);
  1237. params.set("host", xhttp.host?.length > 0 ? xhttp.host : this.getHeader(xhttp, 'host'));
  1238. params.set("mode", xhttp.mode);
  1239. break;
  1240. }
  1241. if (security === 'tls') {
  1242. params.set("security", "tls");
  1243. if (this.stream.isTls) {
  1244. params.set("fp", this.stream.tls.settings.fingerprint);
  1245. params.set("alpn", this.stream.tls.alpn);
  1246. if (this.stream.tls.settings.allowInsecure) {
  1247. params.set("allowInsecure", "1");
  1248. }
  1249. if (!ObjectUtil.isEmpty(this.stream.tls.sni)) {
  1250. params.set("sni", this.stream.tls.sni);
  1251. }
  1252. if (type == "tcp" && !ObjectUtil.isEmpty(flow)) {
  1253. params.set("flow", flow);
  1254. }
  1255. }
  1256. }
  1257. else if (security === 'reality') {
  1258. params.set("security", "reality");
  1259. params.set("pbk", this.stream.reality.settings.publicKey);
  1260. params.set("fp", this.stream.reality.settings.fingerprint);
  1261. if (!ObjectUtil.isArrEmpty(this.stream.reality.serverNames)) {
  1262. params.set("sni", this.stream.reality.serverNames.split(",")[0]);
  1263. }
  1264. if (this.stream.reality.shortIds.length > 0) {
  1265. params.set("sid", this.stream.reality.shortIds.split(",")[0]);
  1266. }
  1267. if (!ObjectUtil.isEmpty(this.stream.reality.settings.spiderX)) {
  1268. params.set("spx", this.stream.reality.settings.spiderX);
  1269. }
  1270. if (type == 'tcp' && !ObjectUtil.isEmpty(flow)) {
  1271. params.set("flow", flow);
  1272. }
  1273. }
  1274. else {
  1275. params.set("security", "none");
  1276. }
  1277. const link = `vless://${uuid}@${address}:${port}`;
  1278. const url = new URL(link);
  1279. for (const [key, value] of params) {
  1280. url.searchParams.set(key, value)
  1281. }
  1282. url.hash = encodeURIComponent(remark);
  1283. return url.toString();
  1284. }
  1285. genSSLink(address = '', port = this.port, forceTls, remark = '', clientPassword) {
  1286. let settings = this.settings;
  1287. const type = this.stream.network;
  1288. const security = forceTls == 'same' ? this.stream.security : forceTls;
  1289. const params = new Map();
  1290. params.set("type", this.stream.network);
  1291. switch (type) {
  1292. case "tcp":
  1293. const tcp = this.stream.tcp;
  1294. if (tcp.type === 'http') {
  1295. const request = tcp.request;
  1296. params.set("path", request.path.join(','));
  1297. const index = request.headers.findIndex(header => header.name.toLowerCase() === 'host');
  1298. if (index >= 0) {
  1299. const host = request.headers[index].value;
  1300. params.set("host", host);
  1301. }
  1302. params.set("headerType", 'http');
  1303. }
  1304. break;
  1305. case "kcp":
  1306. const kcp = this.stream.kcp;
  1307. params.set("headerType", kcp.type);
  1308. params.set("seed", kcp.seed);
  1309. break;
  1310. case "ws":
  1311. const ws = this.stream.ws;
  1312. params.set("path", ws.path);
  1313. params.set("host", ws.host?.length > 0 ? ws.host : this.getHeader(ws, 'host'));
  1314. break;
  1315. case "grpc":
  1316. const grpc = this.stream.grpc;
  1317. params.set("serviceName", grpc.serviceName);
  1318. params.set("authority", grpc.authority);
  1319. if (grpc.multiMode) {
  1320. params.set("mode", "multi");
  1321. }
  1322. break;
  1323. case "httpupgrade":
  1324. const httpupgrade = this.stream.httpupgrade;
  1325. params.set("path", httpupgrade.path);
  1326. params.set("host", httpupgrade.host?.length > 0 ? httpupgrade.host : this.getHeader(httpupgrade, 'host'));
  1327. break;
  1328. case "xhttp":
  1329. const xhttp = this.stream.xhttp;
  1330. params.set("path", xhttp.path);
  1331. params.set("host", xhttp.host?.length > 0 ? xhttp.host : this.getHeader(xhttp, 'host'));
  1332. params.set("mode", xhttp.mode);
  1333. break;
  1334. }
  1335. if (security === 'tls') {
  1336. params.set("security", "tls");
  1337. if (this.stream.isTls) {
  1338. params.set("fp", this.stream.tls.settings.fingerprint);
  1339. params.set("alpn", this.stream.tls.alpn);
  1340. if (this.stream.tls.settings.allowInsecure) {
  1341. params.set("allowInsecure", "1");
  1342. }
  1343. if (!ObjectUtil.isEmpty(this.stream.tls.sni)) {
  1344. params.set("sni", this.stream.tls.sni);
  1345. }
  1346. }
  1347. }
  1348. let password = new Array();
  1349. if (this.isSS2022) password.push(settings.password);
  1350. if (this.isSSMultiUser) password.push(clientPassword);
  1351. let link = `ss://${Base64.encode(`${settings.method}:${password.join(':')}`, true)}@${address}:${port}`;
  1352. const url = new URL(link);
  1353. for (const [key, value] of params) {
  1354. url.searchParams.set(key, value)
  1355. }
  1356. url.hash = encodeURIComponent(remark);
  1357. return url.toString();
  1358. }
  1359. genTrojanLink(address = '', port = this.port, forceTls, remark = '', clientPassword) {
  1360. const security = forceTls == 'same' ? this.stream.security : forceTls;
  1361. const type = this.stream.network;
  1362. const params = new Map();
  1363. params.set("type", this.stream.network);
  1364. switch (type) {
  1365. case "tcp":
  1366. const tcp = this.stream.tcp;
  1367. if (tcp.type === 'http') {
  1368. const request = tcp.request;
  1369. params.set("path", request.path.join(','));
  1370. const index = request.headers.findIndex(header => header.name.toLowerCase() === 'host');
  1371. if (index >= 0) {
  1372. const host = request.headers[index].value;
  1373. params.set("host", host);
  1374. }
  1375. params.set("headerType", 'http');
  1376. }
  1377. break;
  1378. case "kcp":
  1379. const kcp = this.stream.kcp;
  1380. params.set("headerType", kcp.type);
  1381. params.set("seed", kcp.seed);
  1382. break;
  1383. case "ws":
  1384. const ws = this.stream.ws;
  1385. params.set("path", ws.path);
  1386. params.set("host", ws.host?.length > 0 ? ws.host : this.getHeader(ws, 'host'));
  1387. break;
  1388. case "grpc":
  1389. const grpc = this.stream.grpc;
  1390. params.set("serviceName", grpc.serviceName);
  1391. params.set("authority", grpc.authority);
  1392. if (grpc.multiMode) {
  1393. params.set("mode", "multi");
  1394. }
  1395. break;
  1396. case "httpupgrade":
  1397. const httpupgrade = this.stream.httpupgrade;
  1398. params.set("path", httpupgrade.path);
  1399. params.set("host", httpupgrade.host?.length > 0 ? httpupgrade.host : this.getHeader(httpupgrade, 'host'));
  1400. break;
  1401. case "xhttp":
  1402. const xhttp = this.stream.xhttp;
  1403. params.set("path", xhttp.path);
  1404. params.set("host", xhttp.host?.length > 0 ? xhttp.host : this.getHeader(xhttp, 'host'));
  1405. params.set("mode", xhttp.mode);
  1406. break;
  1407. }
  1408. if (security === 'tls') {
  1409. params.set("security", "tls");
  1410. if (this.stream.isTls) {
  1411. params.set("fp", this.stream.tls.settings.fingerprint);
  1412. params.set("alpn", this.stream.tls.alpn);
  1413. if (this.stream.tls.settings.allowInsecure) {
  1414. params.set("allowInsecure", "1");
  1415. }
  1416. if (!ObjectUtil.isEmpty(this.stream.tls.sni)) {
  1417. params.set("sni", this.stream.tls.sni);
  1418. }
  1419. }
  1420. }
  1421. else if (security === 'reality') {
  1422. params.set("security", "reality");
  1423. params.set("pbk", this.stream.reality.settings.publicKey);
  1424. params.set("fp", this.stream.reality.settings.fingerprint);
  1425. if (!ObjectUtil.isArrEmpty(this.stream.reality.serverNames)) {
  1426. params.set("sni", this.stream.reality.serverNames.split(",")[0]);
  1427. }
  1428. if (this.stream.reality.shortIds.length > 0) {
  1429. params.set("sid", this.stream.reality.shortIds.split(",")[0]);
  1430. }
  1431. if (!ObjectUtil.isEmpty(this.stream.reality.settings.spiderX)) {
  1432. params.set("spx", this.stream.reality.settings.spiderX);
  1433. }
  1434. }
  1435. else {
  1436. params.set("security", "none");
  1437. }
  1438. const link = `trojan://${clientPassword}@${address}:${port}`;
  1439. const url = new URL(link);
  1440. for (const [key, value] of params) {
  1441. url.searchParams.set(key, value)
  1442. }
  1443. url.hash = encodeURIComponent(remark);
  1444. return url.toString();
  1445. }
  1446. getWireguardLink(address, port, remark, peerId) {
  1447. let txt = `[Interface]\n`
  1448. txt += `PrivateKey = ${this.settings.peers[peerId].privateKey}\n`
  1449. txt += `Address = ${this.settings.peers[peerId].allowedIPs[0]}\n`
  1450. txt += `DNS = 1.1.1.1, 1.0.0.1\n`
  1451. if (this.settings.mtu) {
  1452. txt += `MTU = ${this.settings.mtu}\n`
  1453. }
  1454. txt += `\n# ${remark}\n`
  1455. txt += `[Peer]\n`
  1456. txt += `PublicKey = ${this.settings.pubKey}\n`
  1457. txt += `AllowedIPs = 0.0.0.0/0, ::/0\n`
  1458. txt += `Endpoint = ${address}:${port}`
  1459. if (this.settings.peers[peerId].psk) {
  1460. txt += `\nPresharedKey = ${this.settings.peers[peerId].psk}`
  1461. }
  1462. if (this.settings.peers[peerId].keepAlive) {
  1463. txt += `\nPersistentKeepalive = ${this.settings.peers[peerId].keepAlive}\n`
  1464. }
  1465. return txt;
  1466. }
  1467. genLink(address = '', port = this.port, forceTls = 'same', remark = '', client) {
  1468. switch (this.protocol) {
  1469. case Protocols.VMESS:
  1470. return this.genVmessLink(address, port, forceTls, remark, client.id, client.security);
  1471. case Protocols.VLESS:
  1472. return this.genVLESSLink(address, port, forceTls, remark, client.id, client.flow);
  1473. case Protocols.SHADOWSOCKS:
  1474. return this.genSSLink(address, port, forceTls, remark, this.isSSMultiUser ? client.password : '');
  1475. case Protocols.TROJAN:
  1476. return this.genTrojanLink(address, port, forceTls, remark, client.password);
  1477. default: return '';
  1478. }
  1479. }
  1480. genAllLinks(remark = '', remarkModel = '-ieo', client) {
  1481. let result = [];
  1482. let email = client ? client.email : '';
  1483. let addr = !ObjectUtil.isEmpty(this.listen) && this.listen !== "0.0.0.0" ? this.listen : location.hostname;
  1484. let port = this.port;
  1485. const separationChar = remarkModel.charAt(0);
  1486. const orderChars = remarkModel.slice(1);
  1487. let orders = {
  1488. 'i': remark,
  1489. 'e': email,
  1490. 'o': '',
  1491. };
  1492. if (ObjectUtil.isArrEmpty(this.stream.externalProxy)) {
  1493. let r = orderChars.split('').map(char => orders[char]).filter(x => x.length > 0).join(separationChar);
  1494. result.push({
  1495. remark: r,
  1496. link: this.genLink(addr, port, 'same', r, client)
  1497. });
  1498. } else {
  1499. this.stream.externalProxy.forEach((ep) => {
  1500. orders['o'] = ep.remark;
  1501. let r = orderChars.split('').map(char => orders[char]).filter(x => x.length > 0).join(separationChar);
  1502. result.push({
  1503. remark: r,
  1504. link: this.genLink(ep.dest, ep.port, ep.forceTls, r, client)
  1505. });
  1506. });
  1507. }
  1508. return result;
  1509. }
  1510. genInboundLinks(remark = '', remarkModel = '-ieo') {
  1511. let addr = !ObjectUtil.isEmpty(this.listen) && this.listen !== "0.0.0.0" ? this.listen : location.hostname;
  1512. if (this.clients) {
  1513. let links = [];
  1514. this.clients.forEach((client) => {
  1515. this.genAllLinks(remark, remarkModel, client).forEach(l => {
  1516. links.push(l.link);
  1517. })
  1518. });
  1519. return links.join('\r\n');
  1520. } else {
  1521. if (this.protocol == Protocols.SHADOWSOCKS && !this.isSSMultiUser) return this.genSSLink(addr, this.port, 'same', remark);
  1522. if (this.protocol == Protocols.WIREGUARD) {
  1523. let links = [];
  1524. this.settings.peers.forEach((p, index) => {
  1525. links.push(this.getWireguardLink(addr, this.port, remark + remarkModel.charAt(0) + (index + 1), index));
  1526. });
  1527. return links.join('\r\n');
  1528. }
  1529. return '';
  1530. }
  1531. }
  1532. static fromJson(json = {}) {
  1533. return new Inbound(
  1534. json.port,
  1535. json.listen,
  1536. json.protocol,
  1537. Inbound.Settings.fromJson(json.protocol, json.settings),
  1538. StreamSettings.fromJson(json.streamSettings),
  1539. json.tag,
  1540. Sniffing.fromJson(json.sniffing),
  1541. Allocate.fromJson(json.allocate),
  1542. json.clientStats
  1543. )
  1544. }
  1545. toJson() {
  1546. let streamSettings;
  1547. if (this.canEnableStream()) {
  1548. streamSettings = this.stream.toJson();
  1549. }
  1550. return {
  1551. port: this.port,
  1552. listen: this.listen,
  1553. protocol: this.protocol,
  1554. settings: this.settings instanceof XrayCommonClass ? this.settings.toJson() : this.settings,
  1555. streamSettings: streamSettings,
  1556. tag: this.tag,
  1557. sniffing: this.sniffing.toJson(),
  1558. allocate: this.allocate.toJson(),
  1559. clientStats: this.clientStats
  1560. };
  1561. }
  1562. }
  1563. Inbound.Settings = class extends XrayCommonClass {
  1564. constructor(protocol) {
  1565. super();
  1566. this.protocol = protocol;
  1567. }
  1568. static getSettings(protocol) {
  1569. switch (protocol) {
  1570. case Protocols.VMESS: return new Inbound.VmessSettings(protocol);
  1571. case Protocols.VLESS: return new Inbound.VLESSSettings(protocol);
  1572. case Protocols.TROJAN: return new Inbound.TrojanSettings(protocol);
  1573. case Protocols.SHADOWSOCKS: return new Inbound.ShadowsocksSettings(protocol);
  1574. case Protocols.DOKODEMO: return new Inbound.DokodemoSettings(protocol);
  1575. case Protocols.SOCKS: return new Inbound.SocksSettings(protocol);
  1576. case Protocols.HTTP: return new Inbound.HttpSettings(protocol);
  1577. case Protocols.WIREGUARD: return new Inbound.WireguardSettings(protocol);
  1578. default: return null;
  1579. }
  1580. }
  1581. static fromJson(protocol, json) {
  1582. switch (protocol) {
  1583. case Protocols.VMESS: return Inbound.VmessSettings.fromJson(json);
  1584. case Protocols.VLESS: return Inbound.VLESSSettings.fromJson(json);
  1585. case Protocols.TROJAN: return Inbound.TrojanSettings.fromJson(json);
  1586. case Protocols.SHADOWSOCKS: return Inbound.ShadowsocksSettings.fromJson(json);
  1587. case Protocols.DOKODEMO: return Inbound.DokodemoSettings.fromJson(json);
  1588. case Protocols.SOCKS: return Inbound.SocksSettings.fromJson(json);
  1589. case Protocols.HTTP: return Inbound.HttpSettings.fromJson(json);
  1590. case Protocols.WIREGUARD: return Inbound.WireguardSettings.fromJson(json);
  1591. default: return null;
  1592. }
  1593. }
  1594. toJson() {
  1595. return {};
  1596. }
  1597. };
  1598. Inbound.VmessSettings = class extends Inbound.Settings {
  1599. constructor(protocol,
  1600. vmesses = [new Inbound.VmessSettings.VMESS()]) {
  1601. super(protocol);
  1602. this.vmesses = vmesses;
  1603. }
  1604. indexOfVmessById(id) {
  1605. return this.vmesses.findIndex(VMESS => VMESS.id === id);
  1606. }
  1607. addVmess(VMESS) {
  1608. if (this.indexOfVmessById(VMESS.id) >= 0) {
  1609. return false;
  1610. }
  1611. this.vmesses.push(VMESS);
  1612. }
  1613. delVmess(VMESS) {
  1614. const i = this.indexOfVmessById(VMESS.id);
  1615. if (i >= 0) {
  1616. this.vmesses.splice(i, 1);
  1617. }
  1618. }
  1619. static fromJson(json = {}) {
  1620. return new Inbound.VmessSettings(
  1621. Protocols.VMESS,
  1622. json.clients.map(client => Inbound.VmessSettings.VMESS.fromJson(client)),
  1623. );
  1624. }
  1625. toJson() {
  1626. return {
  1627. clients: Inbound.VmessSettings.toJsonArray(this.vmesses),
  1628. };
  1629. }
  1630. };
  1631. Inbound.VmessSettings.VMESS = class extends XrayCommonClass {
  1632. constructor(
  1633. id = RandomUtil.randomUUID(),
  1634. security = USERS_SECURITY.AUTO,
  1635. email = RandomUtil.randomLowerAndNum(8),
  1636. limitIp = 0,
  1637. totalGB = 0,
  1638. expiryTime = 0,
  1639. enable = true,
  1640. tgId = '',
  1641. subId = RandomUtil.randomLowerAndNum(16),
  1642. comment = '',
  1643. reset = 0
  1644. ) {
  1645. super();
  1646. this.id = id;
  1647. this.security = security;
  1648. this.email = email;
  1649. this.limitIp = limitIp;
  1650. this.totalGB = totalGB;
  1651. this.expiryTime = expiryTime;
  1652. this.enable = enable;
  1653. this.tgId = tgId;
  1654. this.subId = subId;
  1655. this.comment = comment;
  1656. this.reset = reset;
  1657. }
  1658. static fromJson(json = {}) {
  1659. return new Inbound.VmessSettings.VMESS(
  1660. json.id,
  1661. json.security,
  1662. json.email,
  1663. json.limitIp,
  1664. json.totalGB,
  1665. json.expiryTime,
  1666. json.enable,
  1667. json.tgId,
  1668. json.subId,
  1669. json.comment,
  1670. json.reset,
  1671. );
  1672. }
  1673. get _expiryTime() {
  1674. if (this.expiryTime === 0 || this.expiryTime === "") {
  1675. return null;
  1676. }
  1677. if (this.expiryTime < 0) {
  1678. return this.expiryTime / -86400000;
  1679. }
  1680. return moment(this.expiryTime);
  1681. }
  1682. set _expiryTime(t) {
  1683. if (t == null || t === "") {
  1684. this.expiryTime = 0;
  1685. } else {
  1686. this.expiryTime = t.valueOf();
  1687. }
  1688. }
  1689. get _totalGB() {
  1690. return toFixed(this.totalGB / ONE_GB, 2);
  1691. }
  1692. set _totalGB(gb) {
  1693. this.totalGB = toFixed(gb * ONE_GB, 0);
  1694. }
  1695. };
  1696. Inbound.VLESSSettings = class extends Inbound.Settings {
  1697. constructor(
  1698. protocol,
  1699. vlesses = [new Inbound.VLESSSettings.VLESS()],
  1700. decryption = 'none',
  1701. fallbacks = []
  1702. ) {
  1703. super(protocol);
  1704. this.vlesses = vlesses;
  1705. this.decryption = decryption;
  1706. this.fallbacks = fallbacks;
  1707. }
  1708. addFallback() {
  1709. this.fallbacks.push(new Inbound.VLESSSettings.Fallback());
  1710. }
  1711. delFallback(index) {
  1712. this.fallbacks.splice(index, 1);
  1713. }
  1714. // decryption should be set to static value
  1715. static fromJson(json = {}) {
  1716. return new Inbound.VLESSSettings(
  1717. Protocols.VLESS,
  1718. json.clients.map(client => Inbound.VLESSSettings.VLESS.fromJson(client)),
  1719. json.decryption || 'none',
  1720. Inbound.VLESSSettings.Fallback.fromJson(json.fallbacks),);
  1721. }
  1722. toJson() {
  1723. return {
  1724. clients: Inbound.VLESSSettings.toJsonArray(this.vlesses),
  1725. decryption: this.decryption,
  1726. fallbacks: Inbound.VLESSSettings.toJsonArray(this.fallbacks),
  1727. };
  1728. }
  1729. };
  1730. Inbound.VLESSSettings.VLESS = class extends XrayCommonClass {
  1731. constructor(
  1732. id = RandomUtil.randomUUID(),
  1733. flow = '',
  1734. email = RandomUtil.randomLowerAndNum(8),
  1735. limitIp = 0,
  1736. totalGB = 0,
  1737. expiryTime = 0,
  1738. enable = true,
  1739. tgId = '',
  1740. subId = RandomUtil.randomLowerAndNum(16),
  1741. comment = '',
  1742. reset = 0
  1743. ) {
  1744. super();
  1745. this.id = id;
  1746. this.flow = flow;
  1747. this.email = email;
  1748. this.limitIp = limitIp;
  1749. this.totalGB = totalGB;
  1750. this.expiryTime = expiryTime;
  1751. this.enable = enable;
  1752. this.tgId = tgId;
  1753. this.subId = subId;
  1754. this.comment = comment;
  1755. this.reset = reset;
  1756. }
  1757. static fromJson(json = {}) {
  1758. return new Inbound.VLESSSettings.VLESS(
  1759. json.id,
  1760. json.flow,
  1761. json.email,
  1762. json.limitIp,
  1763. json.totalGB,
  1764. json.expiryTime,
  1765. json.enable,
  1766. json.tgId,
  1767. json.subId,
  1768. json.comment,
  1769. json.reset,
  1770. );
  1771. }
  1772. get _expiryTime() {
  1773. if (this.expiryTime === 0 || this.expiryTime === "") {
  1774. return null;
  1775. }
  1776. if (this.expiryTime < 0) {
  1777. return this.expiryTime / -86400000;
  1778. }
  1779. return moment(this.expiryTime);
  1780. }
  1781. set _expiryTime(t) {
  1782. if (t == null || t === "") {
  1783. this.expiryTime = 0;
  1784. } else {
  1785. this.expiryTime = t.valueOf();
  1786. }
  1787. }
  1788. get _totalGB() {
  1789. return toFixed(this.totalGB / ONE_GB, 2);
  1790. }
  1791. set _totalGB(gb) {
  1792. this.totalGB = toFixed(gb * ONE_GB, 0);
  1793. }
  1794. };
  1795. Inbound.VLESSSettings.Fallback = class extends XrayCommonClass {
  1796. constructor(name = "", alpn = '', path = '', dest = '', xver = 0) {
  1797. super();
  1798. this.name = name;
  1799. this.alpn = alpn;
  1800. this.path = path;
  1801. this.dest = dest;
  1802. this.xver = xver;
  1803. }
  1804. toJson() {
  1805. let xver = this.xver;
  1806. if (!Number.isInteger(xver)) {
  1807. xver = 0;
  1808. }
  1809. return {
  1810. name: this.name,
  1811. alpn: this.alpn,
  1812. path: this.path,
  1813. dest: this.dest,
  1814. xver: xver,
  1815. }
  1816. }
  1817. static fromJson(json = []) {
  1818. const fallbacks = [];
  1819. for (let fallback of json) {
  1820. fallbacks.push(new Inbound.VLESSSettings.Fallback(
  1821. fallback.name,
  1822. fallback.alpn,
  1823. fallback.path,
  1824. fallback.dest,
  1825. fallback.xver,
  1826. ))
  1827. }
  1828. return fallbacks;
  1829. }
  1830. };
  1831. Inbound.TrojanSettings = class extends Inbound.Settings {
  1832. constructor(protocol,
  1833. trojans = [new Inbound.TrojanSettings.Trojan()],
  1834. fallbacks = [],) {
  1835. super(protocol);
  1836. this.trojans = trojans;
  1837. this.fallbacks = fallbacks;
  1838. }
  1839. addFallback() {
  1840. this.fallbacks.push(new Inbound.TrojanSettings.Fallback());
  1841. }
  1842. delFallback(index) {
  1843. this.fallbacks.splice(index, 1);
  1844. }
  1845. static fromJson(json = {}) {
  1846. return new Inbound.TrojanSettings(
  1847. Protocols.TROJAN,
  1848. json.clients.map(client => Inbound.TrojanSettings.Trojan.fromJson(client)),
  1849. Inbound.TrojanSettings.Fallback.fromJson(json.fallbacks),);
  1850. }
  1851. toJson() {
  1852. return {
  1853. clients: Inbound.TrojanSettings.toJsonArray(this.trojans),
  1854. fallbacks: Inbound.TrojanSettings.toJsonArray(this.fallbacks)
  1855. };
  1856. }
  1857. };
  1858. Inbound.TrojanSettings.Trojan = class extends XrayCommonClass {
  1859. constructor(
  1860. password = RandomUtil.randomSeq(10),
  1861. email = RandomUtil.randomLowerAndNum(8),
  1862. limitIp = 0,
  1863. totalGB = 0,
  1864. expiryTime = 0,
  1865. enable = true,
  1866. tgId = '',
  1867. subId = RandomUtil.randomLowerAndNum(16),
  1868. comment = '',
  1869. reset = 0
  1870. ) {
  1871. super();
  1872. this.password = password;
  1873. this.email = email;
  1874. this.limitIp = limitIp;
  1875. this.totalGB = totalGB;
  1876. this.expiryTime = expiryTime;
  1877. this.enable = enable;
  1878. this.tgId = tgId;
  1879. this.subId = subId;
  1880. this.comment = comment;
  1881. this.reset = reset;
  1882. }
  1883. toJson() {
  1884. return {
  1885. password: this.password,
  1886. email: this.email,
  1887. limitIp: this.limitIp,
  1888. totalGB: this.totalGB,
  1889. expiryTime: this.expiryTime,
  1890. enable: this.enable,
  1891. tgId: this.tgId,
  1892. subId: this.subId,
  1893. comment: this.comment,
  1894. reset: this.reset,
  1895. };
  1896. }
  1897. static fromJson(json = {}) {
  1898. return new Inbound.TrojanSettings.Trojan(
  1899. json.password,
  1900. json.email,
  1901. json.limitIp,
  1902. json.totalGB,
  1903. json.expiryTime,
  1904. json.enable,
  1905. json.tgId,
  1906. json.subId,
  1907. json.comment,
  1908. json.reset,
  1909. );
  1910. }
  1911. get _expiryTime() {
  1912. if (this.expiryTime === 0 || this.expiryTime === "") {
  1913. return null;
  1914. }
  1915. if (this.expiryTime < 0) {
  1916. return this.expiryTime / -86400000;
  1917. }
  1918. return moment(this.expiryTime);
  1919. }
  1920. set _expiryTime(t) {
  1921. if (t == null || t === "") {
  1922. this.expiryTime = 0;
  1923. } else {
  1924. this.expiryTime = t.valueOf();
  1925. }
  1926. }
  1927. get _totalGB() {
  1928. return toFixed(this.totalGB / ONE_GB, 2);
  1929. }
  1930. set _totalGB(gb) {
  1931. this.totalGB = toFixed(gb * ONE_GB, 0);
  1932. }
  1933. };
  1934. Inbound.TrojanSettings.Fallback = class extends XrayCommonClass {
  1935. constructor(name = "", alpn = '', path = '', dest = '', xver = 0) {
  1936. super();
  1937. this.name = name;
  1938. this.alpn = alpn;
  1939. this.path = path;
  1940. this.dest = dest;
  1941. this.xver = xver;
  1942. }
  1943. toJson() {
  1944. let xver = this.xver;
  1945. if (!Number.isInteger(xver)) {
  1946. xver = 0;
  1947. }
  1948. return {
  1949. name: this.name,
  1950. alpn: this.alpn,
  1951. path: this.path,
  1952. dest: this.dest,
  1953. xver: xver,
  1954. }
  1955. }
  1956. static fromJson(json = []) {
  1957. const fallbacks = [];
  1958. for (let fallback of json) {
  1959. fallbacks.push(new Inbound.TrojanSettings.Fallback(
  1960. fallback.name,
  1961. fallback.alpn,
  1962. fallback.path,
  1963. fallback.dest,
  1964. fallback.xver,
  1965. ))
  1966. }
  1967. return fallbacks;
  1968. }
  1969. };
  1970. Inbound.ShadowsocksSettings = class extends Inbound.Settings {
  1971. constructor(protocol,
  1972. method = SSMethods.BLAKE3_AES_256_GCM,
  1973. password = RandomUtil.randomShadowsocksPassword(),
  1974. network = 'tcp,udp',
  1975. shadowsockses = [new Inbound.ShadowsocksSettings.Shadowsocks()],
  1976. ivCheck = false,
  1977. ) {
  1978. super(protocol);
  1979. this.method = method;
  1980. this.password = password;
  1981. this.network = network;
  1982. this.shadowsockses = shadowsockses;
  1983. this.ivCheck = ivCheck;
  1984. }
  1985. static fromJson(json = {}) {
  1986. return new Inbound.ShadowsocksSettings(
  1987. Protocols.SHADOWSOCKS,
  1988. json.method,
  1989. json.password,
  1990. json.network,
  1991. json.clients.map(client => Inbound.ShadowsocksSettings.Shadowsocks.fromJson(client)),
  1992. json.ivCheck,
  1993. );
  1994. }
  1995. toJson() {
  1996. return {
  1997. method: this.method,
  1998. password: this.password,
  1999. network: this.network,
  2000. clients: Inbound.ShadowsocksSettings.toJsonArray(this.shadowsockses),
  2001. ivCheck: this.ivCheck,
  2002. };
  2003. }
  2004. };
  2005. Inbound.ShadowsocksSettings.Shadowsocks = class extends XrayCommonClass {
  2006. constructor(
  2007. method = '',
  2008. password = RandomUtil.randomShadowsocksPassword(),
  2009. email = RandomUtil.randomLowerAndNum(8),
  2010. limitIp = 0,
  2011. totalGB = 0,
  2012. expiryTime = 0,
  2013. enable = true,
  2014. tgId = '',
  2015. subId = RandomUtil.randomLowerAndNum(16),
  2016. comment = '',
  2017. reset = 0
  2018. ) {
  2019. super();
  2020. this.method = method;
  2021. this.password = password;
  2022. this.email = email;
  2023. this.limitIp = limitIp;
  2024. this.totalGB = totalGB;
  2025. this.expiryTime = expiryTime;
  2026. this.enable = enable;
  2027. this.tgId = tgId;
  2028. this.subId = subId;
  2029. this.comment = comment;
  2030. this.reset = reset;
  2031. }
  2032. toJson() {
  2033. return {
  2034. method: this.method,
  2035. password: this.password,
  2036. email: this.email,
  2037. limitIp: this.limitIp,
  2038. totalGB: this.totalGB,
  2039. expiryTime: this.expiryTime,
  2040. enable: this.enable,
  2041. tgId: this.tgId,
  2042. subId: this.subId,
  2043. comment: this.comment,
  2044. reset: this.reset,
  2045. };
  2046. }
  2047. static fromJson(json = {}) {
  2048. return new Inbound.ShadowsocksSettings.Shadowsocks(
  2049. json.method,
  2050. json.password,
  2051. json.email,
  2052. json.limitIp,
  2053. json.totalGB,
  2054. json.expiryTime,
  2055. json.enable,
  2056. json.tgId,
  2057. json.subId,
  2058. json.comment,
  2059. json.reset,
  2060. );
  2061. }
  2062. get _expiryTime() {
  2063. if (this.expiryTime === 0 || this.expiryTime === "") {
  2064. return null;
  2065. }
  2066. if (this.expiryTime < 0) {
  2067. return this.expiryTime / -86400000;
  2068. }
  2069. return moment(this.expiryTime);
  2070. }
  2071. set _expiryTime(t) {
  2072. if (t == null || t === "") {
  2073. this.expiryTime = 0;
  2074. } else {
  2075. this.expiryTime = t.valueOf();
  2076. }
  2077. }
  2078. get _totalGB() {
  2079. return toFixed(this.totalGB / ONE_GB, 2);
  2080. }
  2081. set _totalGB(gb) {
  2082. this.totalGB = toFixed(gb * ONE_GB, 0);
  2083. }
  2084. };
  2085. Inbound.DokodemoSettings = class extends Inbound.Settings {
  2086. constructor(
  2087. protocol,
  2088. address,
  2089. port,
  2090. network = 'tcp,udp',
  2091. followRedirect = false
  2092. ) {
  2093. super(protocol);
  2094. this.address = address;
  2095. this.port = port;
  2096. this.network = network;
  2097. this.followRedirect = followRedirect;
  2098. }
  2099. static fromJson(json = {}) {
  2100. return new Inbound.DokodemoSettings(
  2101. Protocols.DOKODEMO,
  2102. json.address,
  2103. json.port,
  2104. json.network,
  2105. json.followRedirect,
  2106. );
  2107. }
  2108. toJson() {
  2109. return {
  2110. address: this.address,
  2111. port: this.port,
  2112. network: this.network,
  2113. followRedirect: this.followRedirect,
  2114. };
  2115. }
  2116. };
  2117. Inbound.SocksSettings = class extends Inbound.Settings {
  2118. constructor(protocol, auth = 'password', accounts = [new Inbound.SocksSettings.SocksAccount()], udp = false, ip = '127.0.0.1') {
  2119. super(protocol);
  2120. this.auth = auth;
  2121. this.accounts = accounts;
  2122. this.udp = udp;
  2123. this.ip = ip;
  2124. }
  2125. addAccount(account) {
  2126. this.accounts.push(account);
  2127. }
  2128. delAccount(index) {
  2129. this.accounts.splice(index, 1);
  2130. }
  2131. static fromJson(json = {}) {
  2132. let accounts;
  2133. if (json.auth === 'password') {
  2134. accounts = json.accounts.map(
  2135. account => Inbound.SocksSettings.SocksAccount.fromJson(account)
  2136. )
  2137. }
  2138. return new Inbound.SocksSettings(
  2139. Protocols.SOCKS,
  2140. json.auth,
  2141. accounts,
  2142. json.udp,
  2143. json.ip,
  2144. );
  2145. }
  2146. toJson() {
  2147. return {
  2148. auth: this.auth,
  2149. accounts: this.auth === 'password' ? this.accounts.map(account => account.toJson()) : undefined,
  2150. udp: this.udp,
  2151. ip: this.ip,
  2152. };
  2153. }
  2154. };
  2155. Inbound.SocksSettings.SocksAccount = class extends XrayCommonClass {
  2156. constructor(user = RandomUtil.randomSeq(10), pass = RandomUtil.randomSeq(10)) {
  2157. super();
  2158. this.user = user;
  2159. this.pass = pass;
  2160. }
  2161. static fromJson(json = {}) {
  2162. return new Inbound.SocksSettings.SocksAccount(json.user, json.pass);
  2163. }
  2164. };
  2165. Inbound.HttpSettings = class extends Inbound.Settings {
  2166. constructor(
  2167. protocol,
  2168. accounts = [new Inbound.HttpSettings.HttpAccount()],
  2169. allowTransparent = false,
  2170. ) {
  2171. super(protocol);
  2172. this.accounts = accounts;
  2173. this.allowTransparent = allowTransparent;
  2174. }
  2175. addAccount(account) {
  2176. this.accounts.push(account);
  2177. }
  2178. delAccount(index) {
  2179. this.accounts.splice(index, 1);
  2180. }
  2181. static fromJson(json = {}) {
  2182. return new Inbound.HttpSettings(
  2183. Protocols.HTTP,
  2184. json.accounts.map(account => Inbound.HttpSettings.HttpAccount.fromJson(account)),
  2185. json.allowTransparent,
  2186. );
  2187. }
  2188. toJson() {
  2189. return {
  2190. accounts: Inbound.HttpSettings.toJsonArray(this.accounts),
  2191. allowTransparent: this.allowTransparent,
  2192. };
  2193. }
  2194. };
  2195. Inbound.HttpSettings.HttpAccount = class extends XrayCommonClass {
  2196. constructor(user = RandomUtil.randomSeq(10), pass = RandomUtil.randomSeq(10)) {
  2197. super();
  2198. this.user = user;
  2199. this.pass = pass;
  2200. }
  2201. static fromJson(json = {}) {
  2202. return new Inbound.HttpSettings.HttpAccount(json.user, json.pass);
  2203. }
  2204. };
  2205. Inbound.WireguardSettings = class extends XrayCommonClass {
  2206. constructor(
  2207. protocol,
  2208. mtu = 1420,
  2209. secretKey = Wireguard.generateKeypair().privateKey,
  2210. peers = [new Inbound.WireguardSettings.Peer()],
  2211. noKernelTun = false
  2212. ) {
  2213. super(protocol);
  2214. this.mtu = mtu;
  2215. this.secretKey = secretKey;
  2216. this.pubKey = secretKey.length > 0 ? Wireguard.generateKeypair(secretKey).publicKey : '';
  2217. this.peers = peers;
  2218. this.noKernelTun = noKernelTun;
  2219. }
  2220. addPeer() {
  2221. this.peers.push(new Inbound.WireguardSettings.Peer(null, null, '', ['10.0.0.' + (this.peers.length + 2)]));
  2222. }
  2223. delPeer(index) {
  2224. this.peers.splice(index, 1);
  2225. }
  2226. static fromJson(json = {}) {
  2227. return new Inbound.WireguardSettings(
  2228. Protocols.WIREGUARD,
  2229. json.mtu,
  2230. json.secretKey,
  2231. json.peers.map(peer => Inbound.WireguardSettings.Peer.fromJson(peer)),
  2232. json.noKernelTun,
  2233. );
  2234. }
  2235. toJson() {
  2236. return {
  2237. mtu: this.mtu ?? undefined,
  2238. secretKey: this.secretKey,
  2239. peers: Inbound.WireguardSettings.Peer.toJsonArray(this.peers),
  2240. noKernelTun: this.noKernelTun,
  2241. };
  2242. }
  2243. };
  2244. Inbound.WireguardSettings.Peer = class extends XrayCommonClass {
  2245. constructor(privateKey, publicKey, psk = '', allowedIPs = ['10.0.0.2/32'], keepAlive = 0) {
  2246. super();
  2247. this.privateKey = privateKey
  2248. this.publicKey = publicKey;
  2249. if (!this.publicKey) {
  2250. [this.publicKey, this.privateKey] = Object.values(Wireguard.generateKeypair())
  2251. }
  2252. this.psk = psk;
  2253. allowedIPs.forEach((a, index) => {
  2254. if (a.length > 0 && !a.includes('/')) allowedIPs[index] += '/32';
  2255. })
  2256. this.allowedIPs = allowedIPs;
  2257. this.keepAlive = keepAlive;
  2258. }
  2259. static fromJson(json = {}) {
  2260. return new Inbound.WireguardSettings.Peer(
  2261. json.privateKey,
  2262. json.publicKey,
  2263. json.preSharedKey,
  2264. json.allowedIPs,
  2265. json.keepAlive
  2266. );
  2267. }
  2268. toJson() {
  2269. this.allowedIPs.forEach((a, index) => {
  2270. if (a.length > 0 && !a.includes('/')) this.allowedIPs[index] += '/32';
  2271. });
  2272. return {
  2273. privateKey: this.privateKey,
  2274. publicKey: this.publicKey,
  2275. preSharedKey: this.psk.length > 0 ? this.psk : undefined,
  2276. allowedIPs: this.allowedIPs,
  2277. keepAlive: this.keepAlive ?? undefined,
  2278. };
  2279. }
  2280. };