1
0

outbound.js 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271
  1. const Protocols = {
  2. Freedom: "freedom",
  3. Blackhole: "blackhole",
  4. DNS: "dns",
  5. VMess: "vmess",
  6. VLESS: "vless",
  7. Trojan: "trojan",
  8. Shadowsocks: "shadowsocks",
  9. Socks: "socks",
  10. HTTP: "http",
  11. Wireguard: "wireguard"
  12. };
  13. const SSMethods = {
  14. AES_256_GCM: 'aes-256-gcm',
  15. AES_128_GCM: 'aes-128-gcm',
  16. CHACHA20_POLY1305: 'chacha20-poly1305',
  17. CHACHA20_IETF_POLY1305: 'chacha20-ietf-poly1305',
  18. XCHACHA20_POLY1305: 'xchacha20-poly1305',
  19. XCHACHA20_IETF_POLY1305: 'xchacha20-ietf-poly1305',
  20. BLAKE3_AES_128_GCM: '2022-blake3-aes-128-gcm',
  21. BLAKE3_AES_256_GCM: '2022-blake3-aes-256-gcm',
  22. BLAKE3_CHACHA20_POLY1305: '2022-blake3-chacha20-poly1305',
  23. };
  24. const TLS_FLOW_CONTROL = {
  25. VISION: "xtls-rprx-vision",
  26. VISION_UDP443: "xtls-rprx-vision-udp443",
  27. };
  28. const UTLS_FINGERPRINT = {
  29. UTLS_CHROME: "chrome",
  30. UTLS_FIREFOX: "firefox",
  31. UTLS_SAFARI: "safari",
  32. UTLS_IOS: "ios",
  33. UTLS_android: "android",
  34. UTLS_EDGE: "edge",
  35. UTLS_360: "360",
  36. UTLS_QQ: "qq",
  37. UTLS_RANDOM: "random",
  38. UTLS_RANDOMIZED: "randomized",
  39. UTLS_RONDOMIZEDNOALPN: "randomizednoalpn",
  40. UTLS_UNSAFE: "unsafe",
  41. };
  42. const ALPN_OPTION = {
  43. H3: "h3",
  44. H2: "h2",
  45. HTTP1: "http/1.1",
  46. };
  47. const OutboundDomainStrategies = [
  48. "AsIs",
  49. "UseIP",
  50. "UseIPv4",
  51. "UseIPv6",
  52. "UseIPv6v4",
  53. "UseIPv4v6",
  54. "ForceIP",
  55. "ForceIPv6v4",
  56. "ForceIPv6",
  57. "ForceIPv4v6",
  58. "ForceIPv4"
  59. ];
  60. const WireguardDomainStrategy = [
  61. "ForceIP",
  62. "ForceIPv4",
  63. "ForceIPv4v6",
  64. "ForceIPv6",
  65. "ForceIPv6v4"
  66. ];
  67. const USERS_SECURITY = {
  68. AES_128_GCM: "aes-128-gcm",
  69. CHACHA20_POLY1305: "chacha20-poly1305",
  70. AUTO: "auto",
  71. NONE: "none",
  72. ZERO: "zero",
  73. };
  74. const MODE_OPTION = {
  75. AUTO: "auto",
  76. PACKET_UP: "packet-up",
  77. STREAM_UP: "stream-up",
  78. STREAM_ONE: "stream-one",
  79. };
  80. const Address_Port_Strategy = {
  81. NONE: "none",
  82. SrvPortOnly: "srvportonly",
  83. SrvAddressOnly: "srvaddressonly",
  84. SrvPortAndAddress: "srvportandaddress",
  85. TxtPortOnly: "txtportonly",
  86. TxtAddressOnly: "txtaddressonly",
  87. TxtPortAndAddress: "txtportandaddress"
  88. };
  89. Object.freeze(Protocols);
  90. Object.freeze(SSMethods);
  91. Object.freeze(TLS_FLOW_CONTROL);
  92. Object.freeze(UTLS_FINGERPRINT);
  93. Object.freeze(ALPN_OPTION);
  94. Object.freeze(OutboundDomainStrategies);
  95. Object.freeze(WireguardDomainStrategy);
  96. Object.freeze(USERS_SECURITY);
  97. Object.freeze(MODE_OPTION);
  98. Object.freeze(Address_Port_Strategy);
  99. class CommonClass {
  100. static toJsonArray(arr) {
  101. return arr.map(obj => obj.toJson());
  102. }
  103. static fromJson() {
  104. return new CommonClass();
  105. }
  106. toJson() {
  107. return this;
  108. }
  109. toString(format = true) {
  110. return format ? JSON.stringify(this.toJson(), null, 2) : JSON.stringify(this.toJson());
  111. }
  112. }
  113. class TcpStreamSettings extends CommonClass {
  114. constructor(type = 'none', host, path) {
  115. super();
  116. this.type = type;
  117. this.host = host;
  118. this.path = path;
  119. }
  120. static fromJson(json = {}) {
  121. let header = json.header;
  122. if (!header) return new TcpStreamSettings();
  123. if (header.type == 'http' && header.request) {
  124. return new TcpStreamSettings(
  125. header.type,
  126. header.request.headers.Host.join(','),
  127. header.request.path.join(','),
  128. );
  129. }
  130. return new TcpStreamSettings(header.type, '', '');
  131. }
  132. toJson() {
  133. return {
  134. header: {
  135. type: this.type,
  136. request: this.type === 'http' ? {
  137. headers: {
  138. Host: ObjectUtil.isEmpty(this.host) ? [] : this.host.split(',')
  139. },
  140. path: ObjectUtil.isEmpty(this.path) ? ["/"] : this.path.split(',')
  141. } : undefined,
  142. }
  143. };
  144. }
  145. }
  146. class KcpStreamSettings extends CommonClass {
  147. constructor(
  148. mtu = 1350,
  149. tti = 50,
  150. uplinkCapacity = 5,
  151. downlinkCapacity = 20,
  152. congestion = false,
  153. readBufferSize = 2,
  154. writeBufferSize = 2,
  155. type = 'none',
  156. seed = '',
  157. ) {
  158. super();
  159. this.mtu = mtu;
  160. this.tti = tti;
  161. this.upCap = uplinkCapacity;
  162. this.downCap = downlinkCapacity;
  163. this.congestion = congestion;
  164. this.readBuffer = readBufferSize;
  165. this.writeBuffer = writeBufferSize;
  166. this.type = type;
  167. this.seed = seed;
  168. }
  169. static fromJson(json = {}) {
  170. return new KcpStreamSettings(
  171. json.mtu,
  172. json.tti,
  173. json.uplinkCapacity,
  174. json.downlinkCapacity,
  175. json.congestion,
  176. json.readBufferSize,
  177. json.writeBufferSize,
  178. ObjectUtil.isEmpty(json.header) ? 'none' : json.header.type,
  179. json.seed,
  180. );
  181. }
  182. toJson() {
  183. return {
  184. mtu: this.mtu,
  185. tti: this.tti,
  186. uplinkCapacity: this.upCap,
  187. downlinkCapacity: this.downCap,
  188. congestion: this.congestion,
  189. readBufferSize: this.readBuffer,
  190. writeBufferSize: this.writeBuffer,
  191. header: {
  192. type: this.type,
  193. },
  194. seed: this.seed,
  195. };
  196. }
  197. }
  198. class WsStreamSettings extends CommonClass {
  199. constructor(
  200. path = '/',
  201. host = '',
  202. heartbeatPeriod = 0,
  203. ) {
  204. super();
  205. this.path = path;
  206. this.host = host;
  207. this.heartbeatPeriod = heartbeatPeriod;
  208. }
  209. static fromJson(json = {}) {
  210. return new WsStreamSettings(
  211. json.path,
  212. json.host,
  213. json.heartbeatPeriod,
  214. );
  215. }
  216. toJson() {
  217. return {
  218. path: this.path,
  219. host: this.host,
  220. heartbeatPeriod: this.heartbeatPeriod
  221. };
  222. }
  223. }
  224. class GrpcStreamSettings extends CommonClass {
  225. constructor(
  226. serviceName = "",
  227. authority = "",
  228. multiMode = false
  229. ) {
  230. super();
  231. this.serviceName = serviceName;
  232. this.authority = authority;
  233. this.multiMode = multiMode;
  234. }
  235. static fromJson(json = {}) {
  236. return new GrpcStreamSettings(json.serviceName, json.authority, json.multiMode);
  237. }
  238. toJson() {
  239. return {
  240. serviceName: this.serviceName,
  241. authority: this.authority,
  242. multiMode: this.multiMode
  243. }
  244. }
  245. }
  246. class HttpUpgradeStreamSettings extends CommonClass {
  247. constructor(path = '/', host = '') {
  248. super();
  249. this.path = path;
  250. this.host = host;
  251. }
  252. static fromJson(json = {}) {
  253. return new HttpUpgradeStreamSettings(
  254. json.path,
  255. json.host,
  256. );
  257. }
  258. toJson() {
  259. return {
  260. path: this.path,
  261. host: this.host,
  262. };
  263. }
  264. }
  265. class xHTTPStreamSettings extends CommonClass {
  266. constructor(
  267. path = '/',
  268. host = '',
  269. mode = '',
  270. noGRPCHeader = false,
  271. scMinPostsIntervalMs = "30",
  272. xmux = {
  273. maxConcurrency: "16-32",
  274. maxConnections: 0,
  275. cMaxReuseTimes: 0,
  276. hMaxRequestTimes: "600-900",
  277. hMaxReusableSecs: "1800-3000",
  278. hKeepAlivePeriod: 0,
  279. },
  280. ) {
  281. super();
  282. this.path = path;
  283. this.host = host;
  284. this.mode = mode;
  285. this.noGRPCHeader = noGRPCHeader;
  286. this.scMinPostsIntervalMs = scMinPostsIntervalMs;
  287. this.xmux = xmux;
  288. }
  289. static fromJson(json = {}) {
  290. return new xHTTPStreamSettings(
  291. json.path,
  292. json.host,
  293. json.mode,
  294. json.noGRPCHeader,
  295. json.scMinPostsIntervalMs,
  296. json.xmux
  297. );
  298. }
  299. toJson() {
  300. return {
  301. path: this.path,
  302. host: this.host,
  303. mode: this.mode,
  304. noGRPCHeader: this.noGRPCHeader,
  305. scMinPostsIntervalMs: this.scMinPostsIntervalMs,
  306. xmux: {
  307. maxConcurrency: this.xmux.maxConcurrency,
  308. maxConnections: this.xmux.maxConnections,
  309. cMaxReuseTimes: this.xmux.cMaxReuseTimes,
  310. hMaxRequestTimes: this.xmux.hMaxRequestTimes,
  311. hMaxReusableSecs: this.xmux.hMaxReusableSecs,
  312. hKeepAlivePeriod: this.xmux.hKeepAlivePeriod,
  313. },
  314. };
  315. }
  316. }
  317. class TlsStreamSettings extends CommonClass {
  318. constructor(
  319. serverName = '',
  320. alpn = [],
  321. fingerprint = '',
  322. allowInsecure = false
  323. ) {
  324. super();
  325. this.serverName = serverName;
  326. this.alpn = alpn;
  327. this.fingerprint = fingerprint;
  328. this.allowInsecure = allowInsecure;
  329. }
  330. static fromJson(json = {}) {
  331. return new TlsStreamSettings(
  332. json.serverName,
  333. json.alpn,
  334. json.fingerprint,
  335. json.allowInsecure,
  336. );
  337. }
  338. toJson() {
  339. return {
  340. serverName: this.serverName,
  341. alpn: this.alpn,
  342. fingerprint: this.fingerprint,
  343. allowInsecure: this.allowInsecure,
  344. };
  345. }
  346. }
  347. class RealityStreamSettings extends CommonClass {
  348. constructor(
  349. publicKey = '',
  350. fingerprint = '',
  351. serverName = '',
  352. shortId = '',
  353. spiderX = '/'
  354. ) {
  355. super();
  356. this.publicKey = publicKey;
  357. this.fingerprint = fingerprint;
  358. this.serverName = serverName;
  359. this.shortId = shortId
  360. this.spiderX = spiderX;
  361. }
  362. static fromJson(json = {}) {
  363. return new RealityStreamSettings(
  364. json.publicKey,
  365. json.fingerprint,
  366. json.serverName,
  367. json.shortId,
  368. json.spiderX,
  369. );
  370. }
  371. toJson() {
  372. return {
  373. publicKey: this.publicKey,
  374. fingerprint: this.fingerprint,
  375. serverName: this.serverName,
  376. shortId: this.shortId,
  377. spiderX: this.spiderX,
  378. };
  379. }
  380. };
  381. class SockoptStreamSettings extends CommonClass {
  382. constructor(
  383. dialerProxy = "",
  384. tcpFastOpen = false,
  385. tcpKeepAliveInterval = 0,
  386. tcpMptcp = false,
  387. penetrate = false,
  388. addressPortStrategy = Address_Port_Strategy.NONE,
  389. ) {
  390. super();
  391. this.dialerProxy = dialerProxy;
  392. this.tcpFastOpen = tcpFastOpen;
  393. this.tcpKeepAliveInterval = tcpKeepAliveInterval;
  394. this.tcpMptcp = tcpMptcp;
  395. this.penetrate = penetrate;
  396. this.addressPortStrategy = addressPortStrategy;
  397. }
  398. static fromJson(json = {}) {
  399. if (Object.keys(json).length === 0) return undefined;
  400. return new SockoptStreamSettings(
  401. json.dialerProxy,
  402. json.tcpFastOpen,
  403. json.tcpKeepAliveInterval,
  404. json.tcpMptcp,
  405. json.penetrate,
  406. json.addressPortStrategy
  407. );
  408. }
  409. toJson() {
  410. return {
  411. dialerProxy: this.dialerProxy,
  412. tcpFastOpen: this.tcpFastOpen,
  413. tcpKeepAliveInterval: this.tcpKeepAliveInterval,
  414. tcpMptcp: this.tcpMptcp,
  415. penetrate: this.penetrate,
  416. addressPortStrategy: this.addressPortStrategy
  417. };
  418. }
  419. }
  420. class StreamSettings extends CommonClass {
  421. constructor(
  422. network = 'tcp',
  423. security = 'none',
  424. tlsSettings = new TlsStreamSettings(),
  425. realitySettings = new RealityStreamSettings(),
  426. tcpSettings = new TcpStreamSettings(),
  427. kcpSettings = new KcpStreamSettings(),
  428. wsSettings = new WsStreamSettings(),
  429. grpcSettings = new GrpcStreamSettings(),
  430. httpupgradeSettings = new HttpUpgradeStreamSettings(),
  431. xhttpSettings = new xHTTPStreamSettings(),
  432. sockopt = undefined,
  433. ) {
  434. super();
  435. this.network = network;
  436. this.security = security;
  437. this.tls = tlsSettings;
  438. this.reality = realitySettings;
  439. this.tcp = tcpSettings;
  440. this.kcp = kcpSettings;
  441. this.ws = wsSettings;
  442. this.grpc = grpcSettings;
  443. this.httpupgrade = httpupgradeSettings;
  444. this.xhttp = xhttpSettings;
  445. this.sockopt = sockopt;
  446. }
  447. get isTls() {
  448. return this.security === 'tls';
  449. }
  450. get isReality() {
  451. return this.security === "reality";
  452. }
  453. get sockoptSwitch() {
  454. return this.sockopt != undefined;
  455. }
  456. set sockoptSwitch(value) {
  457. this.sockopt = value ? new SockoptStreamSettings() : undefined;
  458. }
  459. static fromJson(json = {}) {
  460. return new StreamSettings(
  461. json.network,
  462. json.security,
  463. TlsStreamSettings.fromJson(json.tlsSettings),
  464. RealityStreamSettings.fromJson(json.realitySettings),
  465. TcpStreamSettings.fromJson(json.tcpSettings),
  466. KcpStreamSettings.fromJson(json.kcpSettings),
  467. WsStreamSettings.fromJson(json.wsSettings),
  468. GrpcStreamSettings.fromJson(json.grpcSettings),
  469. HttpUpgradeStreamSettings.fromJson(json.httpupgradeSettings),
  470. xHTTPStreamSettings.fromJson(json.xhttpSettings),
  471. SockoptStreamSettings.fromJson(json.sockopt),
  472. );
  473. }
  474. toJson() {
  475. const network = this.network;
  476. return {
  477. network: network,
  478. security: this.security,
  479. tlsSettings: this.security == 'tls' ? this.tls.toJson() : undefined,
  480. realitySettings: this.security == 'reality' ? this.reality.toJson() : undefined,
  481. tcpSettings: network === 'tcp' ? this.tcp.toJson() : undefined,
  482. kcpSettings: network === 'kcp' ? this.kcp.toJson() : undefined,
  483. wsSettings: network === 'ws' ? this.ws.toJson() : undefined,
  484. grpcSettings: network === 'grpc' ? this.grpc.toJson() : undefined,
  485. httpupgradeSettings: network === 'httpupgrade' ? this.httpupgrade.toJson() : undefined,
  486. xhttpSettings: network === 'xhttp' ? this.xhttp.toJson() : undefined,
  487. sockopt: this.sockopt != undefined ? this.sockopt.toJson() : undefined,
  488. };
  489. }
  490. }
  491. class Mux extends CommonClass {
  492. constructor(enabled = false, concurrency = 8, xudpConcurrency = 16, xudpProxyUDP443 = "reject") {
  493. super();
  494. this.enabled = enabled;
  495. this.concurrency = concurrency;
  496. this.xudpConcurrency = xudpConcurrency;
  497. this.xudpProxyUDP443 = xudpProxyUDP443;
  498. }
  499. static fromJson(json = {}) {
  500. if (Object.keys(json).length === 0) return undefined;
  501. return new Mux(
  502. json.enabled,
  503. json.concurrency,
  504. json.xudpConcurrency,
  505. json.xudpProxyUDP443,
  506. );
  507. }
  508. toJson() {
  509. return {
  510. enabled: this.enabled,
  511. concurrency: this.concurrency,
  512. xudpConcurrency: this.xudpConcurrency,
  513. xudpProxyUDP443: this.xudpProxyUDP443,
  514. };
  515. }
  516. }
  517. class Outbound extends CommonClass {
  518. constructor(
  519. tag = '',
  520. protocol = Protocols.VLESS,
  521. settings = null,
  522. streamSettings = new StreamSettings(),
  523. sendThrough,
  524. mux = new Mux(),
  525. ) {
  526. super();
  527. this.tag = tag;
  528. this._protocol = protocol;
  529. this.settings = settings == null ? Outbound.Settings.getSettings(protocol) : settings;
  530. this.stream = streamSettings;
  531. this.sendThrough = sendThrough;
  532. this.mux = mux;
  533. }
  534. get protocol() {
  535. return this._protocol;
  536. }
  537. set protocol(protocol) {
  538. this._protocol = protocol;
  539. this.settings = Outbound.Settings.getSettings(protocol);
  540. this.stream = new StreamSettings();
  541. }
  542. canEnableTls() {
  543. if (![Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks].includes(this.protocol)) return false;
  544. return ["tcp", "ws", "http", "grpc", "httpupgrade", "xhttp"].includes(this.stream.network);
  545. }
  546. //this is used for xtls-rprx-vision
  547. canEnableTlsFlow() {
  548. if ((this.stream.security != 'none') && (this.stream.network === "tcp")) {
  549. return this.protocol === Protocols.VLESS;
  550. }
  551. return false;
  552. }
  553. canEnableReality() {
  554. if (![Protocols.VLESS, Protocols.Trojan].includes(this.protocol)) return false;
  555. return ["tcp", "http", "grpc", "xhttp"].includes(this.stream.network);
  556. }
  557. canEnableStream() {
  558. return [Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks].includes(this.protocol);
  559. }
  560. canEnableMux() {
  561. if (this.settings.flow && this.settings.flow != '') {
  562. this.mux.enabled = false;
  563. return false;
  564. }
  565. return [Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks, Protocols.HTTP, Protocols.Socks].includes(this.protocol);
  566. }
  567. hasVnext() {
  568. return [Protocols.VMess, Protocols.VLESS].includes(this.protocol);
  569. }
  570. hasServers() {
  571. return [Protocols.Trojan, Protocols.Shadowsocks, Protocols.Socks, Protocols.HTTP].includes(this.protocol);
  572. }
  573. hasAddressPort() {
  574. return [
  575. Protocols.DNS,
  576. Protocols.VMess,
  577. Protocols.VLESS,
  578. Protocols.Trojan,
  579. Protocols.Shadowsocks,
  580. Protocols.Socks,
  581. Protocols.HTTP
  582. ].includes(this.protocol);
  583. }
  584. hasUsername() {
  585. return [Protocols.Socks, Protocols.HTTP].includes(this.protocol);
  586. }
  587. static fromJson(json = {}) {
  588. return new Outbound(
  589. json.tag,
  590. json.protocol,
  591. Outbound.Settings.fromJson(json.protocol, json.settings),
  592. StreamSettings.fromJson(json.streamSettings),
  593. json.sendThrough,
  594. Mux.fromJson(json.mux),
  595. )
  596. }
  597. toJson() {
  598. var stream;
  599. if (this.canEnableStream()) {
  600. stream = this.stream.toJson();
  601. } else {
  602. if (this.stream?.sockopt)
  603. stream = { sockopt: this.stream.sockopt.toJson() };
  604. }
  605. return {
  606. tag: this.tag == '' ? undefined : this.tag,
  607. protocol: this.protocol,
  608. settings: this.settings instanceof CommonClass ? this.settings.toJson() : this.settings,
  609. streamSettings: stream,
  610. sendThrough: this.sendThrough != "" ? this.sendThrough : undefined,
  611. mux: this.mux?.enabled ? this.mux : undefined,
  612. };
  613. }
  614. static fromLink(link) {
  615. data = link.split('://');
  616. if (data.length != 2) return null;
  617. switch (data[0].toLowerCase()) {
  618. case Protocols.VMess:
  619. return this.fromVmessLink(JSON.parse(Base64.decode(data[1])));
  620. case Protocols.VLESS:
  621. case Protocols.Trojan:
  622. case 'ss':
  623. return this.fromParamLink(link);
  624. default:
  625. return null;
  626. }
  627. }
  628. static fromVmessLink(json = {}) {
  629. let stream = new StreamSettings(json.net, json.tls);
  630. let network = json.net;
  631. if (network === 'tcp') {
  632. stream.tcp = new TcpStreamSettings(
  633. json.type,
  634. json.host ?? '',
  635. json.path ?? '');
  636. } else if (network === 'kcp') {
  637. stream.kcp = new KcpStreamSettings();
  638. stream.type = json.type;
  639. stream.seed = json.path;
  640. } else if (network === 'ws') {
  641. stream.ws = new WsStreamSettings(json.path, json.host);
  642. } else if (network === 'grpc') {
  643. stream.grpc = new GrpcStreamSettings(json.path, json.authority, json.type == 'multi', json.user_agent, json.idle_timeout, json.health_check_timeout, json.permit_without_stream, json.initial_windows_size);
  644. } else if (network === 'httpupgrade') {
  645. stream.httpupgrade = new HttpUpgradeStreamSettings(json.path, json.host);
  646. } else if (network === 'xhttp') {
  647. stream.xhttp = new xHTTPStreamSettings(json.path, json.host, json.mode);
  648. }
  649. if (json.tls && json.tls == 'tls') {
  650. stream.tls = new TlsStreamSettings(
  651. json.sni,
  652. json.alpn ? json.alpn.split(',') : [],
  653. json.fp,
  654. json.allowInsecure);
  655. }
  656. const port = json.port * 1;
  657. return new Outbound(json.ps, Protocols.VMess, new Outbound.VmessSettings(json.add, port, json.id, json.scy), stream);
  658. }
  659. static fromParamLink(link) {
  660. const url = new URL(link);
  661. let type = url.searchParams.get('type') ?? 'tcp';
  662. let security = url.searchParams.get('security') ?? 'none';
  663. let stream = new StreamSettings(type, security);
  664. let headerType = url.searchParams.get('headerType') ?? undefined;
  665. let host = url.searchParams.get('host') ?? undefined;
  666. let path = url.searchParams.get('path') ?? undefined;
  667. let mode = url.searchParams.get('mode') ?? undefined;
  668. if (type === 'tcp' || type === 'none') {
  669. stream.tcp = new TcpStreamSettings(headerType ?? 'none', host, path);
  670. } else if (type === 'kcp') {
  671. stream.kcp = new KcpStreamSettings();
  672. stream.kcp.type = headerType ?? 'none';
  673. stream.kcp.seed = path;
  674. } else if (type === 'ws') {
  675. stream.ws = new WsStreamSettings(path, host);
  676. } else if (type === 'grpc') {
  677. stream.grpc = new GrpcStreamSettings(
  678. url.searchParams.get('serviceName') ?? '',
  679. url.searchParams.get('authority') ?? '',
  680. url.searchParams.get('mode') == 'multi',
  681. url.searchParams.get('user_agent') ?? '',
  682. url.searchParams.get('idle_timeout') ?? '',
  683. url.searchParams.get('health_check_timeout') ?? '',
  684. url.searchParams.get('permit_without_stream') ?? '',
  685. url.searchParams.get('initial_windows_size') ?? '',
  686. );
  687. } else if (type === 'httpupgrade') {
  688. stream.httpupgrade = new HttpUpgradeStreamSettings(path, host);
  689. } else if (type === 'xhttp') {
  690. stream.xhttp = new xHTTPStreamSettings(path, host, mode);
  691. }
  692. if (security == 'tls') {
  693. let fp = url.searchParams.get('fp') ?? 'none';
  694. let alpn = url.searchParams.get('alpn');
  695. let allowInsecure = url.searchParams.get('allowInsecure');
  696. let sni = url.searchParams.get('sni') ?? '';
  697. stream.tls = new TlsStreamSettings(sni, alpn ? alpn.split(',') : [], fp, allowInsecure == 1);
  698. }
  699. if (security == 'reality') {
  700. let pbk = url.searchParams.get('pbk');
  701. let fp = url.searchParams.get('fp');
  702. let sni = url.searchParams.get('sni') ?? '';
  703. let sid = url.searchParams.get('sid') ?? '';
  704. let spx = url.searchParams.get('spx') ?? '';
  705. stream.reality = new RealityStreamSettings(pbk, fp, sni, sid, spx);
  706. }
  707. const regex = /([^@]+):\/\/([^@]+)@(.+):(\d+)(.*)$/;
  708. const match = link.match(regex);
  709. if (!match) return null;
  710. let [, protocol, userData, address, port,] = match;
  711. port *= 1;
  712. if (protocol == 'ss') {
  713. protocol = 'shadowsocks';
  714. userData = atob(userData).split(':');
  715. }
  716. var settings;
  717. switch (protocol) {
  718. case Protocols.VLESS:
  719. settings = new Outbound.VLESSSettings(address, port, userData, url.searchParams.get('flow') ?? '');
  720. break;
  721. case Protocols.Trojan:
  722. settings = new Outbound.TrojanSettings(address, port, userData);
  723. break;
  724. case Protocols.Shadowsocks:
  725. let method = userData.splice(0, 1)[0];
  726. settings = new Outbound.ShadowsocksSettings(address, port, userData.join(":"), method, true);
  727. break;
  728. default:
  729. return null;
  730. }
  731. let remark = decodeURIComponent(url.hash);
  732. // Remove '#' from url.hash
  733. remark = remark.length > 0 ? remark.substring(1) : 'out-' + protocol + '-' + port;
  734. return new Outbound(remark, protocol, settings, stream);
  735. }
  736. }
  737. Outbound.Settings = class extends CommonClass {
  738. constructor(protocol) {
  739. super();
  740. this.protocol = protocol;
  741. }
  742. static getSettings(protocol) {
  743. switch (protocol) {
  744. case Protocols.Freedom: return new Outbound.FreedomSettings();
  745. case Protocols.Blackhole: return new Outbound.BlackholeSettings();
  746. case Protocols.DNS: return new Outbound.DNSSettings();
  747. case Protocols.VMess: return new Outbound.VmessSettings();
  748. case Protocols.VLESS: return new Outbound.VLESSSettings();
  749. case Protocols.Trojan: return new Outbound.TrojanSettings();
  750. case Protocols.Shadowsocks: return new Outbound.ShadowsocksSettings();
  751. case Protocols.Socks: return new Outbound.SocksSettings();
  752. case Protocols.HTTP: return new Outbound.HttpSettings();
  753. case Protocols.Wireguard: return new Outbound.WireguardSettings();
  754. default: return null;
  755. }
  756. }
  757. static fromJson(protocol, json) {
  758. switch (protocol) {
  759. case Protocols.Freedom: return Outbound.FreedomSettings.fromJson(json);
  760. case Protocols.Blackhole: return Outbound.BlackholeSettings.fromJson(json);
  761. case Protocols.DNS: return Outbound.DNSSettings.fromJson(json);
  762. case Protocols.VMess: return Outbound.VmessSettings.fromJson(json);
  763. case Protocols.VLESS: return Outbound.VLESSSettings.fromJson(json);
  764. case Protocols.Trojan: return Outbound.TrojanSettings.fromJson(json);
  765. case Protocols.Shadowsocks: return Outbound.ShadowsocksSettings.fromJson(json);
  766. case Protocols.Socks: return Outbound.SocksSettings.fromJson(json);
  767. case Protocols.HTTP: return Outbound.HttpSettings.fromJson(json);
  768. case Protocols.Wireguard: return Outbound.WireguardSettings.fromJson(json);
  769. default: return null;
  770. }
  771. }
  772. toJson() {
  773. return {};
  774. }
  775. };
  776. Outbound.FreedomSettings = class extends CommonClass {
  777. constructor(
  778. domainStrategy = '',
  779. redirect = '',
  780. fragment = {},
  781. noises = []
  782. ) {
  783. super();
  784. this.domainStrategy = domainStrategy;
  785. this.redirect = redirect;
  786. this.fragment = fragment;
  787. this.noises = noises;
  788. }
  789. addNoise() {
  790. this.noises.push(new Outbound.FreedomSettings.Noise());
  791. }
  792. delNoise(index) {
  793. this.noises.splice(index, 1);
  794. }
  795. static fromJson(json = {}) {
  796. return new Outbound.FreedomSettings(
  797. json.domainStrategy,
  798. json.redirect,
  799. json.fragment ? Outbound.FreedomSettings.Fragment.fromJson(json.fragment) : undefined,
  800. json.noises ? json.noises.map(noise => Outbound.FreedomSettings.Noise.fromJson(noise)) : undefined,
  801. );
  802. }
  803. toJson() {
  804. return {
  805. domainStrategy: ObjectUtil.isEmpty(this.domainStrategy) ? undefined : this.domainStrategy,
  806. redirect: ObjectUtil.isEmpty(this.redirect) ? undefined: this.redirect,
  807. fragment: Object.keys(this.fragment).length === 0 ? undefined : this.fragment,
  808. noises: this.noises.length === 0 ? undefined : Outbound.FreedomSettings.Noise.toJsonArray(this.noises),
  809. };
  810. }
  811. };
  812. Outbound.FreedomSettings.Fragment = class extends CommonClass {
  813. constructor(
  814. packets = '1-3',
  815. length = '',
  816. interval = ''
  817. ) {
  818. super();
  819. this.packets = packets;
  820. this.length = length;
  821. this.interval = interval;
  822. }
  823. static fromJson(json = {}) {
  824. return new Outbound.FreedomSettings.Fragment(
  825. json.packets,
  826. json.length,
  827. json.interval,
  828. );
  829. }
  830. };
  831. Outbound.FreedomSettings.Noise = class extends CommonClass {
  832. constructor(
  833. type = 'rand',
  834. packet = '10-20',
  835. delay = '10-16'
  836. ) {
  837. super();
  838. this.type = type;
  839. this.packet = packet;
  840. this.delay = delay;
  841. }
  842. static fromJson(json = {}) {
  843. return new Outbound.FreedomSettings.Noise(
  844. json.type,
  845. json.packet,
  846. json.delay,
  847. );
  848. }
  849. toJson() {
  850. return {
  851. type: this.type,
  852. packet: this.packet,
  853. delay: this.delay,
  854. };
  855. }
  856. };
  857. Outbound.BlackholeSettings = class extends CommonClass {
  858. constructor(type) {
  859. super();
  860. this.type = type;
  861. }
  862. static fromJson(json = {}) {
  863. return new Outbound.BlackholeSettings(
  864. json.response ? json.response.type : undefined,
  865. );
  866. }
  867. toJson() {
  868. return {
  869. response: ObjectUtil.isEmpty(this.type) ? undefined : { type: this.type },
  870. };
  871. }
  872. };
  873. Outbound.DNSSettings = class extends CommonClass {
  874. constructor(
  875. network = 'udp',
  876. address = '',
  877. port = 53,
  878. nonIPQuery = 'drop',
  879. blockTypes = []
  880. ) {
  881. super();
  882. this.network = network;
  883. this.address = address;
  884. this.port = port;
  885. this.nonIPQuery = nonIPQuery;
  886. this.blockTypes = blockTypes;
  887. }
  888. static fromJson(json = {}) {
  889. return new Outbound.DNSSettings(
  890. json.network,
  891. json.address,
  892. json.port,
  893. json.nonIPQuery,
  894. json.blockTypes,
  895. );
  896. }
  897. };
  898. Outbound.VmessSettings = class extends CommonClass {
  899. constructor(address, port, id, security) {
  900. super();
  901. this.address = address;
  902. this.port = port;
  903. this.id = id;
  904. this.security = security;
  905. }
  906. static fromJson(json = {}) {
  907. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VmessSettings();
  908. return new Outbound.VmessSettings(
  909. json.vnext[0].address,
  910. json.vnext[0].port,
  911. json.vnext[0].users[0].id,
  912. json.vnext[0].users[0].security,
  913. );
  914. }
  915. toJson() {
  916. return {
  917. vnext: [{
  918. address: this.address,
  919. port: this.port,
  920. users: [{ id: this.id, security: this.security }],
  921. }],
  922. };
  923. }
  924. };
  925. Outbound.VLESSSettings = class extends CommonClass {
  926. constructor(address, port, id, flow, encryption = 'none') {
  927. super();
  928. this.address = address;
  929. this.port = port;
  930. this.id = id;
  931. this.flow = flow;
  932. this.encryption = encryption
  933. }
  934. static fromJson(json = {}) {
  935. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VLESSSettings();
  936. return new Outbound.VLESSSettings(
  937. json.vnext[0].address,
  938. json.vnext[0].port,
  939. json.vnext[0].users[0].id,
  940. json.vnext[0].users[0].flow,
  941. json.vnext[0].users[0].encryption,
  942. );
  943. }
  944. toJson() {
  945. return {
  946. vnext: [{
  947. address: this.address,
  948. port: this.port,
  949. users: [{ id: this.id, flow: this.flow, encryption: 'none', }],
  950. }],
  951. };
  952. }
  953. };
  954. Outbound.TrojanSettings = class extends CommonClass {
  955. constructor(address, port, password) {
  956. super();
  957. this.address = address;
  958. this.port = port;
  959. this.password = password;
  960. }
  961. static fromJson(json = {}) {
  962. if (ObjectUtil.isArrEmpty(json.servers)) return new Outbound.TrojanSettings();
  963. return new Outbound.TrojanSettings(
  964. json.servers[0].address,
  965. json.servers[0].port,
  966. json.servers[0].password,
  967. );
  968. }
  969. toJson() {
  970. return {
  971. servers: [{
  972. address: this.address,
  973. port: this.port,
  974. password: this.password,
  975. }],
  976. };
  977. }
  978. };
  979. Outbound.ShadowsocksSettings = class extends CommonClass {
  980. constructor(address, port, password, method, uot, UoTVersion) {
  981. super();
  982. this.address = address;
  983. this.port = port;
  984. this.password = password;
  985. this.method = method;
  986. this.uot = uot;
  987. this.UoTVersion = UoTVersion;
  988. }
  989. static fromJson(json = {}) {
  990. let servers = json.servers;
  991. if (ObjectUtil.isArrEmpty(servers)) servers = [{}];
  992. return new Outbound.ShadowsocksSettings(
  993. servers[0].address,
  994. servers[0].port,
  995. servers[0].password,
  996. servers[0].method,
  997. servers[0].uot,
  998. servers[0].UoTVersion,
  999. );
  1000. }
  1001. toJson() {
  1002. return {
  1003. servers: [{
  1004. address: this.address,
  1005. port: this.port,
  1006. password: this.password,
  1007. method: this.method,
  1008. uot: this.uot,
  1009. UoTVersion: this.UoTVersion,
  1010. }],
  1011. };
  1012. }
  1013. };
  1014. Outbound.SocksSettings = class extends CommonClass {
  1015. constructor(address, port, user, pass) {
  1016. super();
  1017. this.address = address;
  1018. this.port = port;
  1019. this.user = user;
  1020. this.pass = pass;
  1021. }
  1022. static fromJson(json = {}) {
  1023. let servers = json.servers;
  1024. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1025. return new Outbound.SocksSettings(
  1026. servers[0].address,
  1027. servers[0].port,
  1028. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1029. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1030. );
  1031. }
  1032. toJson() {
  1033. return {
  1034. servers: [{
  1035. address: this.address,
  1036. port: this.port,
  1037. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1038. }],
  1039. };
  1040. }
  1041. };
  1042. Outbound.HttpSettings = class extends CommonClass {
  1043. constructor(address, port, user, pass) {
  1044. super();
  1045. this.address = address;
  1046. this.port = port;
  1047. this.user = user;
  1048. this.pass = pass;
  1049. }
  1050. static fromJson(json = {}) {
  1051. let servers = json.servers;
  1052. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1053. return new Outbound.HttpSettings(
  1054. servers[0].address,
  1055. servers[0].port,
  1056. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1057. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1058. );
  1059. }
  1060. toJson() {
  1061. return {
  1062. servers: [{
  1063. address: this.address,
  1064. port: this.port,
  1065. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1066. }],
  1067. };
  1068. }
  1069. };
  1070. Outbound.WireguardSettings = class extends CommonClass {
  1071. constructor(
  1072. mtu = 1420,
  1073. secretKey = '',
  1074. address = [''],
  1075. workers = 2,
  1076. domainStrategy = '',
  1077. reserved = '',
  1078. peers = [new Outbound.WireguardSettings.Peer()],
  1079. noKernelTun = false,
  1080. ) {
  1081. super();
  1082. this.mtu = mtu;
  1083. this.secretKey = secretKey;
  1084. this.pubKey = secretKey.length > 0 ? Wireguard.generateKeypair(secretKey).publicKey : '';
  1085. this.address = Array.isArray(address) ? address.join(',') : address;
  1086. this.workers = workers;
  1087. this.domainStrategy = domainStrategy;
  1088. this.reserved = Array.isArray(reserved) ? reserved.join(',') : reserved;
  1089. this.peers = peers;
  1090. this.noKernelTun = noKernelTun;
  1091. }
  1092. addPeer() {
  1093. this.peers.push(new Outbound.WireguardSettings.Peer());
  1094. }
  1095. delPeer(index) {
  1096. this.peers.splice(index, 1);
  1097. }
  1098. static fromJson(json = {}) {
  1099. return new Outbound.WireguardSettings(
  1100. json.mtu,
  1101. json.secretKey,
  1102. json.address,
  1103. json.workers,
  1104. json.domainStrategy,
  1105. json.reserved,
  1106. json.peers.map(peer => Outbound.WireguardSettings.Peer.fromJson(peer)),
  1107. json.noKernelTun,
  1108. );
  1109. }
  1110. toJson() {
  1111. return {
  1112. mtu: this.mtu ?? undefined,
  1113. secretKey: this.secretKey,
  1114. address: this.address ? this.address.split(",") : [],
  1115. workers: this.workers ?? undefined,
  1116. domainStrategy: WireguardDomainStrategy.includes(this.domainStrategy) ? this.domainStrategy : undefined,
  1117. reserved: this.reserved ? this.reserved.split(",").map(Number) : undefined,
  1118. peers: Outbound.WireguardSettings.Peer.toJsonArray(this.peers),
  1119. noKernelTun: this.noKernelTun,
  1120. };
  1121. }
  1122. };
  1123. Outbound.WireguardSettings.Peer = class extends CommonClass {
  1124. constructor(
  1125. publicKey = '',
  1126. psk = '',
  1127. allowedIPs = ['0.0.0.0/0', '::/0'],
  1128. endpoint = '',
  1129. keepAlive = 0
  1130. ) {
  1131. super();
  1132. this.publicKey = publicKey;
  1133. this.psk = psk;
  1134. this.allowedIPs = allowedIPs;
  1135. this.endpoint = endpoint;
  1136. this.keepAlive = keepAlive;
  1137. }
  1138. static fromJson(json = {}) {
  1139. return new Outbound.WireguardSettings.Peer(
  1140. json.publicKey,
  1141. json.preSharedKey,
  1142. json.allowedIPs,
  1143. json.endpoint,
  1144. json.keepAlive
  1145. );
  1146. }
  1147. toJson() {
  1148. return {
  1149. publicKey: this.publicKey,
  1150. preSharedKey: this.psk.length > 0 ? this.psk : undefined,
  1151. allowedIPs: this.allowedIPs ? this.allowedIPs : undefined,
  1152. endpoint: this.endpoint,
  1153. keepAlive: this.keepAlive ?? undefined,
  1154. };
  1155. }
  1156. };