1
0

outbound.js 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265
  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');
  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. } else if (type === 'httpupgrade') {
  682. stream.httpupgrade = new HttpUpgradeStreamSettings(path, host);
  683. } else if (type === 'xhttp') {
  684. stream.xhttp = new xHTTPStreamSettings(path, host, mode);
  685. }
  686. if (security == 'tls') {
  687. let fp = url.searchParams.get('fp') ?? 'none';
  688. let alpn = url.searchParams.get('alpn');
  689. let allowInsecure = url.searchParams.get('allowInsecure');
  690. let sni = url.searchParams.get('sni') ?? '';
  691. stream.tls = new TlsStreamSettings(sni, alpn ? alpn.split(',') : [], fp, allowInsecure == 1);
  692. }
  693. if (security == 'reality') {
  694. let pbk = url.searchParams.get('pbk');
  695. let fp = url.searchParams.get('fp');
  696. let sni = url.searchParams.get('sni') ?? '';
  697. let sid = url.searchParams.get('sid') ?? '';
  698. let spx = url.searchParams.get('spx') ?? '';
  699. stream.reality = new RealityStreamSettings(pbk, fp, sni, sid, spx);
  700. }
  701. const regex = /([^@]+):\/\/([^@]+)@(.+):(\d+)(.*)$/;
  702. const match = link.match(regex);
  703. if (!match) return null;
  704. let [, protocol, userData, address, port,] = match;
  705. port *= 1;
  706. if (protocol == 'ss') {
  707. protocol = 'shadowsocks';
  708. userData = atob(userData).split(':');
  709. }
  710. var settings;
  711. switch (protocol) {
  712. case Protocols.VLESS:
  713. settings = new Outbound.VLESSSettings(address, port, userData, url.searchParams.get('flow') ?? '');
  714. break;
  715. case Protocols.Trojan:
  716. settings = new Outbound.TrojanSettings(address, port, userData);
  717. break;
  718. case Protocols.Shadowsocks:
  719. let method = userData.splice(0, 1)[0];
  720. settings = new Outbound.ShadowsocksSettings(address, port, userData.join(":"), method, true);
  721. break;
  722. default:
  723. return null;
  724. }
  725. let remark = decodeURIComponent(url.hash);
  726. // Remove '#' from url.hash
  727. remark = remark.length > 0 ? remark.substring(1) : 'out-' + protocol + '-' + port;
  728. return new Outbound(remark, protocol, settings, stream);
  729. }
  730. }
  731. Outbound.Settings = class extends CommonClass {
  732. constructor(protocol) {
  733. super();
  734. this.protocol = protocol;
  735. }
  736. static getSettings(protocol) {
  737. switch (protocol) {
  738. case Protocols.Freedom: return new Outbound.FreedomSettings();
  739. case Protocols.Blackhole: return new Outbound.BlackholeSettings();
  740. case Protocols.DNS: return new Outbound.DNSSettings();
  741. case Protocols.VMess: return new Outbound.VmessSettings();
  742. case Protocols.VLESS: return new Outbound.VLESSSettings();
  743. case Protocols.Trojan: return new Outbound.TrojanSettings();
  744. case Protocols.Shadowsocks: return new Outbound.ShadowsocksSettings();
  745. case Protocols.Socks: return new Outbound.SocksSettings();
  746. case Protocols.HTTP: return new Outbound.HttpSettings();
  747. case Protocols.Wireguard: return new Outbound.WireguardSettings();
  748. default: return null;
  749. }
  750. }
  751. static fromJson(protocol, json) {
  752. switch (protocol) {
  753. case Protocols.Freedom: return Outbound.FreedomSettings.fromJson(json);
  754. case Protocols.Blackhole: return Outbound.BlackholeSettings.fromJson(json);
  755. case Protocols.DNS: return Outbound.DNSSettings.fromJson(json);
  756. case Protocols.VMess: return Outbound.VmessSettings.fromJson(json);
  757. case Protocols.VLESS: return Outbound.VLESSSettings.fromJson(json);
  758. case Protocols.Trojan: return Outbound.TrojanSettings.fromJson(json);
  759. case Protocols.Shadowsocks: return Outbound.ShadowsocksSettings.fromJson(json);
  760. case Protocols.Socks: return Outbound.SocksSettings.fromJson(json);
  761. case Protocols.HTTP: return Outbound.HttpSettings.fromJson(json);
  762. case Protocols.Wireguard: return Outbound.WireguardSettings.fromJson(json);
  763. default: return null;
  764. }
  765. }
  766. toJson() {
  767. return {};
  768. }
  769. };
  770. Outbound.FreedomSettings = class extends CommonClass {
  771. constructor(
  772. domainStrategy = '',
  773. redirect = '',
  774. fragment = {},
  775. noises = []
  776. ) {
  777. super();
  778. this.domainStrategy = domainStrategy;
  779. this.redirect = redirect;
  780. this.fragment = fragment;
  781. this.noises = noises;
  782. }
  783. addNoise() {
  784. this.noises.push(new Outbound.FreedomSettings.Noise());
  785. }
  786. delNoise(index) {
  787. this.noises.splice(index, 1);
  788. }
  789. static fromJson(json = {}) {
  790. return new Outbound.FreedomSettings(
  791. json.domainStrategy,
  792. json.redirect,
  793. json.fragment ? Outbound.FreedomSettings.Fragment.fromJson(json.fragment) : undefined,
  794. json.noises ? json.noises.map(noise => Outbound.FreedomSettings.Noise.fromJson(noise)) : undefined,
  795. );
  796. }
  797. toJson() {
  798. return {
  799. domainStrategy: ObjectUtil.isEmpty(this.domainStrategy) ? undefined : this.domainStrategy,
  800. redirect: ObjectUtil.isEmpty(this.redirect) ? undefined: this.redirect,
  801. fragment: Object.keys(this.fragment).length === 0 ? undefined : this.fragment,
  802. noises: this.noises.length === 0 ? undefined : Outbound.FreedomSettings.Noise.toJsonArray(this.noises),
  803. };
  804. }
  805. };
  806. Outbound.FreedomSettings.Fragment = class extends CommonClass {
  807. constructor(
  808. packets = '1-3',
  809. length = '',
  810. interval = ''
  811. ) {
  812. super();
  813. this.packets = packets;
  814. this.length = length;
  815. this.interval = interval;
  816. }
  817. static fromJson(json = {}) {
  818. return new Outbound.FreedomSettings.Fragment(
  819. json.packets,
  820. json.length,
  821. json.interval,
  822. );
  823. }
  824. };
  825. Outbound.FreedomSettings.Noise = class extends CommonClass {
  826. constructor(
  827. type = 'rand',
  828. packet = '10-20',
  829. delay = '10-16'
  830. ) {
  831. super();
  832. this.type = type;
  833. this.packet = packet;
  834. this.delay = delay;
  835. }
  836. static fromJson(json = {}) {
  837. return new Outbound.FreedomSettings.Noise(
  838. json.type,
  839. json.packet,
  840. json.delay,
  841. );
  842. }
  843. toJson() {
  844. return {
  845. type: this.type,
  846. packet: this.packet,
  847. delay: this.delay,
  848. };
  849. }
  850. };
  851. Outbound.BlackholeSettings = class extends CommonClass {
  852. constructor(type) {
  853. super();
  854. this.type = type;
  855. }
  856. static fromJson(json = {}) {
  857. return new Outbound.BlackholeSettings(
  858. json.response ? json.response.type : undefined,
  859. );
  860. }
  861. toJson() {
  862. return {
  863. response: ObjectUtil.isEmpty(this.type) ? undefined : { type: this.type },
  864. };
  865. }
  866. };
  867. Outbound.DNSSettings = class extends CommonClass {
  868. constructor(
  869. network = 'udp',
  870. address = '',
  871. port = 53,
  872. nonIPQuery = 'drop',
  873. blockTypes = []
  874. ) {
  875. super();
  876. this.network = network;
  877. this.address = address;
  878. this.port = port;
  879. this.nonIPQuery = nonIPQuery;
  880. this.blockTypes = blockTypes;
  881. }
  882. static fromJson(json = {}) {
  883. return new Outbound.DNSSettings(
  884. json.network,
  885. json.address,
  886. json.port,
  887. json.nonIPQuery,
  888. json.blockTypes,
  889. );
  890. }
  891. };
  892. Outbound.VmessSettings = class extends CommonClass {
  893. constructor(address, port, id, security) {
  894. super();
  895. this.address = address;
  896. this.port = port;
  897. this.id = id;
  898. this.security = security;
  899. }
  900. static fromJson(json = {}) {
  901. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VmessSettings();
  902. return new Outbound.VmessSettings(
  903. json.vnext[0].address,
  904. json.vnext[0].port,
  905. json.vnext[0].users[0].id,
  906. json.vnext[0].users[0].security,
  907. );
  908. }
  909. toJson() {
  910. return {
  911. vnext: [{
  912. address: this.address,
  913. port: this.port,
  914. users: [{ id: this.id, security: this.security }],
  915. }],
  916. };
  917. }
  918. };
  919. Outbound.VLESSSettings = class extends CommonClass {
  920. constructor(address, port, id, flow, encryption = 'none') {
  921. super();
  922. this.address = address;
  923. this.port = port;
  924. this.id = id;
  925. this.flow = flow;
  926. this.encryption = encryption
  927. }
  928. static fromJson(json = {}) {
  929. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VLESSSettings();
  930. return new Outbound.VLESSSettings(
  931. json.vnext[0].address,
  932. json.vnext[0].port,
  933. json.vnext[0].users[0].id,
  934. json.vnext[0].users[0].flow,
  935. json.vnext[0].users[0].encryption,
  936. );
  937. }
  938. toJson() {
  939. return {
  940. vnext: [{
  941. address: this.address,
  942. port: this.port,
  943. users: [{ id: this.id, flow: this.flow, encryption: 'none', }],
  944. }],
  945. };
  946. }
  947. };
  948. Outbound.TrojanSettings = class extends CommonClass {
  949. constructor(address, port, password) {
  950. super();
  951. this.address = address;
  952. this.port = port;
  953. this.password = password;
  954. }
  955. static fromJson(json = {}) {
  956. if (ObjectUtil.isArrEmpty(json.servers)) return new Outbound.TrojanSettings();
  957. return new Outbound.TrojanSettings(
  958. json.servers[0].address,
  959. json.servers[0].port,
  960. json.servers[0].password,
  961. );
  962. }
  963. toJson() {
  964. return {
  965. servers: [{
  966. address: this.address,
  967. port: this.port,
  968. password: this.password,
  969. }],
  970. };
  971. }
  972. };
  973. Outbound.ShadowsocksSettings = class extends CommonClass {
  974. constructor(address, port, password, method, uot, UoTVersion) {
  975. super();
  976. this.address = address;
  977. this.port = port;
  978. this.password = password;
  979. this.method = method;
  980. this.uot = uot;
  981. this.UoTVersion = UoTVersion;
  982. }
  983. static fromJson(json = {}) {
  984. let servers = json.servers;
  985. if (ObjectUtil.isArrEmpty(servers)) servers = [{}];
  986. return new Outbound.ShadowsocksSettings(
  987. servers[0].address,
  988. servers[0].port,
  989. servers[0].password,
  990. servers[0].method,
  991. servers[0].uot,
  992. servers[0].UoTVersion,
  993. );
  994. }
  995. toJson() {
  996. return {
  997. servers: [{
  998. address: this.address,
  999. port: this.port,
  1000. password: this.password,
  1001. method: this.method,
  1002. uot: this.uot,
  1003. UoTVersion: this.UoTVersion,
  1004. }],
  1005. };
  1006. }
  1007. };
  1008. Outbound.SocksSettings = class extends CommonClass {
  1009. constructor(address, port, user, pass) {
  1010. super();
  1011. this.address = address;
  1012. this.port = port;
  1013. this.user = user;
  1014. this.pass = pass;
  1015. }
  1016. static fromJson(json = {}) {
  1017. let servers = json.servers;
  1018. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1019. return new Outbound.SocksSettings(
  1020. servers[0].address,
  1021. servers[0].port,
  1022. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1023. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1024. );
  1025. }
  1026. toJson() {
  1027. return {
  1028. servers: [{
  1029. address: this.address,
  1030. port: this.port,
  1031. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1032. }],
  1033. };
  1034. }
  1035. };
  1036. Outbound.HttpSettings = class extends CommonClass {
  1037. constructor(address, port, user, pass) {
  1038. super();
  1039. this.address = address;
  1040. this.port = port;
  1041. this.user = user;
  1042. this.pass = pass;
  1043. }
  1044. static fromJson(json = {}) {
  1045. let servers = json.servers;
  1046. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1047. return new Outbound.HttpSettings(
  1048. servers[0].address,
  1049. servers[0].port,
  1050. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1051. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1052. );
  1053. }
  1054. toJson() {
  1055. return {
  1056. servers: [{
  1057. address: this.address,
  1058. port: this.port,
  1059. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1060. }],
  1061. };
  1062. }
  1063. };
  1064. Outbound.WireguardSettings = class extends CommonClass {
  1065. constructor(
  1066. mtu = 1420,
  1067. secretKey = '',
  1068. address = [''],
  1069. workers = 2,
  1070. domainStrategy = '',
  1071. reserved = '',
  1072. peers = [new Outbound.WireguardSettings.Peer()],
  1073. noKernelTun = false,
  1074. ) {
  1075. super();
  1076. this.mtu = mtu;
  1077. this.secretKey = secretKey;
  1078. this.pubKey = secretKey.length > 0 ? Wireguard.generateKeypair(secretKey).publicKey : '';
  1079. this.address = Array.isArray(address) ? address.join(',') : address;
  1080. this.workers = workers;
  1081. this.domainStrategy = domainStrategy;
  1082. this.reserved = Array.isArray(reserved) ? reserved.join(',') : reserved;
  1083. this.peers = peers;
  1084. this.noKernelTun = noKernelTun;
  1085. }
  1086. addPeer() {
  1087. this.peers.push(new Outbound.WireguardSettings.Peer());
  1088. }
  1089. delPeer(index) {
  1090. this.peers.splice(index, 1);
  1091. }
  1092. static fromJson(json = {}) {
  1093. return new Outbound.WireguardSettings(
  1094. json.mtu,
  1095. json.secretKey,
  1096. json.address,
  1097. json.workers,
  1098. json.domainStrategy,
  1099. json.reserved,
  1100. json.peers.map(peer => Outbound.WireguardSettings.Peer.fromJson(peer)),
  1101. json.noKernelTun,
  1102. );
  1103. }
  1104. toJson() {
  1105. return {
  1106. mtu: this.mtu ?? undefined,
  1107. secretKey: this.secretKey,
  1108. address: this.address ? this.address.split(",") : [],
  1109. workers: this.workers ?? undefined,
  1110. domainStrategy: WireguardDomainStrategy.includes(this.domainStrategy) ? this.domainStrategy : undefined,
  1111. reserved: this.reserved ? this.reserved.split(",").map(Number) : undefined,
  1112. peers: Outbound.WireguardSettings.Peer.toJsonArray(this.peers),
  1113. noKernelTun: this.noKernelTun,
  1114. };
  1115. }
  1116. };
  1117. Outbound.WireguardSettings.Peer = class extends CommonClass {
  1118. constructor(
  1119. publicKey = '',
  1120. psk = '',
  1121. allowedIPs = ['0.0.0.0/0', '::/0'],
  1122. endpoint = '',
  1123. keepAlive = 0
  1124. ) {
  1125. super();
  1126. this.publicKey = publicKey;
  1127. this.psk = psk;
  1128. this.allowedIPs = allowedIPs;
  1129. this.endpoint = endpoint;
  1130. this.keepAlive = keepAlive;
  1131. }
  1132. static fromJson(json = {}) {
  1133. return new Outbound.WireguardSettings.Peer(
  1134. json.publicKey,
  1135. json.preSharedKey,
  1136. json.allowedIPs,
  1137. json.endpoint,
  1138. json.keepAlive
  1139. );
  1140. }
  1141. toJson() {
  1142. return {
  1143. publicKey: this.publicKey,
  1144. preSharedKey: this.psk.length > 0 ? this.psk : undefined,
  1145. allowedIPs: this.allowedIPs ? this.allowedIPs : undefined,
  1146. endpoint: this.endpoint,
  1147. keepAlive: this.keepAlive ?? undefined,
  1148. };
  1149. }
  1150. };