outbound.js 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295
  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. userAgent = "",
  230. idleTimeout = 60,
  231. healthCheckTimeout = 20,
  232. permitWithoutStream = false,
  233. initialWindowsSize = 0
  234. ) {
  235. super();
  236. this.serviceName = serviceName;
  237. this.authority = authority;
  238. this.multiMode = multiMode;
  239. this.user_agent = userAgent;
  240. this.idle_timeout = idleTimeout;
  241. this.health_check_timeout = healthCheckTimeout;
  242. this.permit_without_stream = permitWithoutStream;
  243. this.initial_windows_size = initialWindowsSize;
  244. }
  245. static fromJson(json = {}) {
  246. return new GrpcStreamSettings(
  247. json.serviceName,
  248. json.authority,
  249. json.multiMode,
  250. json.user_agent,
  251. json.idle_timeout,
  252. json.health_check_timeout,
  253. json.permit_without_stream,
  254. json.initial_windows_size
  255. );
  256. }
  257. toJson() {
  258. return {
  259. serviceName: this.serviceName,
  260. authority: this.authority,
  261. multiMode: this.multiMode,
  262. user_agent: this.user_agent,
  263. idle_timeout: this.idle_timeout,
  264. health_check_timeout: this.health_check_timeout,
  265. permit_without_stream: this.permit_without_stream,
  266. initial_windows_size: this.initial_windows_size
  267. }
  268. }
  269. }
  270. class HttpUpgradeStreamSettings extends CommonClass {
  271. constructor(path = '/', host = '') {
  272. super();
  273. this.path = path;
  274. this.host = host;
  275. }
  276. static fromJson(json = {}) {
  277. return new HttpUpgradeStreamSettings(
  278. json.path,
  279. json.host,
  280. );
  281. }
  282. toJson() {
  283. return {
  284. path: this.path,
  285. host: this.host,
  286. };
  287. }
  288. }
  289. class xHTTPStreamSettings extends CommonClass {
  290. constructor(
  291. path = '/',
  292. host = '',
  293. mode = '',
  294. noGRPCHeader = false,
  295. scMinPostsIntervalMs = "30",
  296. xmux = {
  297. maxConcurrency: "16-32",
  298. maxConnections: 0,
  299. cMaxReuseTimes: 0,
  300. hMaxRequestTimes: "600-900",
  301. hMaxReusableSecs: "1800-3000",
  302. hKeepAlivePeriod: 0,
  303. },
  304. ) {
  305. super();
  306. this.path = path;
  307. this.host = host;
  308. this.mode = mode;
  309. this.noGRPCHeader = noGRPCHeader;
  310. this.scMinPostsIntervalMs = scMinPostsIntervalMs;
  311. this.xmux = xmux;
  312. }
  313. static fromJson(json = {}) {
  314. return new xHTTPStreamSettings(
  315. json.path,
  316. json.host,
  317. json.mode,
  318. json.noGRPCHeader,
  319. json.scMinPostsIntervalMs,
  320. json.xmux
  321. );
  322. }
  323. toJson() {
  324. return {
  325. path: this.path,
  326. host: this.host,
  327. mode: this.mode,
  328. noGRPCHeader: this.noGRPCHeader,
  329. scMinPostsIntervalMs: this.scMinPostsIntervalMs,
  330. xmux: {
  331. maxConcurrency: this.xmux.maxConcurrency,
  332. maxConnections: this.xmux.maxConnections,
  333. cMaxReuseTimes: this.xmux.cMaxReuseTimes,
  334. hMaxRequestTimes: this.xmux.hMaxRequestTimes,
  335. hMaxReusableSecs: this.xmux.hMaxReusableSecs,
  336. hKeepAlivePeriod: this.xmux.hKeepAlivePeriod,
  337. },
  338. };
  339. }
  340. }
  341. class TlsStreamSettings extends CommonClass {
  342. constructor(
  343. serverName = '',
  344. alpn = [],
  345. fingerprint = '',
  346. allowInsecure = false
  347. ) {
  348. super();
  349. this.serverName = serverName;
  350. this.alpn = alpn;
  351. this.fingerprint = fingerprint;
  352. this.allowInsecure = allowInsecure;
  353. }
  354. static fromJson(json = {}) {
  355. return new TlsStreamSettings(
  356. json.serverName,
  357. json.alpn,
  358. json.fingerprint,
  359. json.allowInsecure,
  360. );
  361. }
  362. toJson() {
  363. return {
  364. serverName: this.serverName,
  365. alpn: this.alpn,
  366. fingerprint: this.fingerprint,
  367. allowInsecure: this.allowInsecure,
  368. };
  369. }
  370. }
  371. class RealityStreamSettings extends CommonClass {
  372. constructor(
  373. publicKey = '',
  374. fingerprint = '',
  375. serverName = '',
  376. shortId = '',
  377. spiderX = '/'
  378. ) {
  379. super();
  380. this.publicKey = publicKey;
  381. this.fingerprint = fingerprint;
  382. this.serverName = serverName;
  383. this.shortId = shortId
  384. this.spiderX = spiderX;
  385. }
  386. static fromJson(json = {}) {
  387. return new RealityStreamSettings(
  388. json.publicKey,
  389. json.fingerprint,
  390. json.serverName,
  391. json.shortId,
  392. json.spiderX,
  393. );
  394. }
  395. toJson() {
  396. return {
  397. publicKey: this.publicKey,
  398. fingerprint: this.fingerprint,
  399. serverName: this.serverName,
  400. shortId: this.shortId,
  401. spiderX: this.spiderX,
  402. };
  403. }
  404. };
  405. class SockoptStreamSettings extends CommonClass {
  406. constructor(
  407. dialerProxy = "",
  408. tcpFastOpen = false,
  409. tcpKeepAliveInterval = 0,
  410. tcpMptcp = false,
  411. penetrate = false,
  412. addressPortStrategy = Address_Port_Strategy.NONE,
  413. ) {
  414. super();
  415. this.dialerProxy = dialerProxy;
  416. this.tcpFastOpen = tcpFastOpen;
  417. this.tcpKeepAliveInterval = tcpKeepAliveInterval;
  418. this.tcpMptcp = tcpMptcp;
  419. this.penetrate = penetrate;
  420. this.addressPortStrategy = addressPortStrategy;
  421. }
  422. static fromJson(json = {}) {
  423. if (Object.keys(json).length === 0) return undefined;
  424. return new SockoptStreamSettings(
  425. json.dialerProxy,
  426. json.tcpFastOpen,
  427. json.tcpKeepAliveInterval,
  428. json.tcpMptcp,
  429. json.penetrate,
  430. json.addressPortStrategy
  431. );
  432. }
  433. toJson() {
  434. return {
  435. dialerProxy: this.dialerProxy,
  436. tcpFastOpen: this.tcpFastOpen,
  437. tcpKeepAliveInterval: this.tcpKeepAliveInterval,
  438. tcpMptcp: this.tcpMptcp,
  439. penetrate: this.penetrate,
  440. addressPortStrategy: this.addressPortStrategy
  441. };
  442. }
  443. }
  444. class StreamSettings extends CommonClass {
  445. constructor(
  446. network = 'tcp',
  447. security = 'none',
  448. tlsSettings = new TlsStreamSettings(),
  449. realitySettings = new RealityStreamSettings(),
  450. tcpSettings = new TcpStreamSettings(),
  451. kcpSettings = new KcpStreamSettings(),
  452. wsSettings = new WsStreamSettings(),
  453. grpcSettings = new GrpcStreamSettings(),
  454. httpupgradeSettings = new HttpUpgradeStreamSettings(),
  455. xhttpSettings = new xHTTPStreamSettings(),
  456. sockopt = undefined,
  457. ) {
  458. super();
  459. this.network = network;
  460. this.security = security;
  461. this.tls = tlsSettings;
  462. this.reality = realitySettings;
  463. this.tcp = tcpSettings;
  464. this.kcp = kcpSettings;
  465. this.ws = wsSettings;
  466. this.grpc = grpcSettings;
  467. this.httpupgrade = httpupgradeSettings;
  468. this.xhttp = xhttpSettings;
  469. this.sockopt = sockopt;
  470. }
  471. get isTls() {
  472. return this.security === 'tls';
  473. }
  474. get isReality() {
  475. return this.security === "reality";
  476. }
  477. get sockoptSwitch() {
  478. return this.sockopt != undefined;
  479. }
  480. set sockoptSwitch(value) {
  481. this.sockopt = value ? new SockoptStreamSettings() : undefined;
  482. }
  483. static fromJson(json = {}) {
  484. return new StreamSettings(
  485. json.network,
  486. json.security,
  487. TlsStreamSettings.fromJson(json.tlsSettings),
  488. RealityStreamSettings.fromJson(json.realitySettings),
  489. TcpStreamSettings.fromJson(json.tcpSettings),
  490. KcpStreamSettings.fromJson(json.kcpSettings),
  491. WsStreamSettings.fromJson(json.wsSettings),
  492. GrpcStreamSettings.fromJson(json.grpcSettings),
  493. HttpUpgradeStreamSettings.fromJson(json.httpupgradeSettings),
  494. xHTTPStreamSettings.fromJson(json.xhttpSettings),
  495. SockoptStreamSettings.fromJson(json.sockopt),
  496. );
  497. }
  498. toJson() {
  499. const network = this.network;
  500. return {
  501. network: network,
  502. security: this.security,
  503. tlsSettings: this.security == 'tls' ? this.tls.toJson() : undefined,
  504. realitySettings: this.security == 'reality' ? this.reality.toJson() : undefined,
  505. tcpSettings: network === 'tcp' ? this.tcp.toJson() : undefined,
  506. kcpSettings: network === 'kcp' ? this.kcp.toJson() : undefined,
  507. wsSettings: network === 'ws' ? this.ws.toJson() : undefined,
  508. grpcSettings: network === 'grpc' ? this.grpc.toJson() : undefined,
  509. httpupgradeSettings: network === 'httpupgrade' ? this.httpupgrade.toJson() : undefined,
  510. xhttpSettings: network === 'xhttp' ? this.xhttp.toJson() : undefined,
  511. sockopt: this.sockopt != undefined ? this.sockopt.toJson() : undefined,
  512. };
  513. }
  514. }
  515. class Mux extends CommonClass {
  516. constructor(enabled = false, concurrency = 8, xudpConcurrency = 16, xudpProxyUDP443 = "reject") {
  517. super();
  518. this.enabled = enabled;
  519. this.concurrency = concurrency;
  520. this.xudpConcurrency = xudpConcurrency;
  521. this.xudpProxyUDP443 = xudpProxyUDP443;
  522. }
  523. static fromJson(json = {}) {
  524. if (Object.keys(json).length === 0) return undefined;
  525. return new Mux(
  526. json.enabled,
  527. json.concurrency,
  528. json.xudpConcurrency,
  529. json.xudpProxyUDP443,
  530. );
  531. }
  532. toJson() {
  533. return {
  534. enabled: this.enabled,
  535. concurrency: this.concurrency,
  536. xudpConcurrency: this.xudpConcurrency,
  537. xudpProxyUDP443: this.xudpProxyUDP443,
  538. };
  539. }
  540. }
  541. class Outbound extends CommonClass {
  542. constructor(
  543. tag = '',
  544. protocol = Protocols.VLESS,
  545. settings = null,
  546. streamSettings = new StreamSettings(),
  547. sendThrough,
  548. mux = new Mux(),
  549. ) {
  550. super();
  551. this.tag = tag;
  552. this._protocol = protocol;
  553. this.settings = settings == null ? Outbound.Settings.getSettings(protocol) : settings;
  554. this.stream = streamSettings;
  555. this.sendThrough = sendThrough;
  556. this.mux = mux;
  557. }
  558. get protocol() {
  559. return this._protocol;
  560. }
  561. set protocol(protocol) {
  562. this._protocol = protocol;
  563. this.settings = Outbound.Settings.getSettings(protocol);
  564. this.stream = new StreamSettings();
  565. }
  566. canEnableTls() {
  567. if (![Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks].includes(this.protocol)) return false;
  568. return ["tcp", "ws", "http", "grpc", "httpupgrade", "xhttp"].includes(this.stream.network);
  569. }
  570. //this is used for xtls-rprx-vision
  571. canEnableTlsFlow() {
  572. if ((this.stream.security != 'none') && (this.stream.network === "tcp")) {
  573. return this.protocol === Protocols.VLESS;
  574. }
  575. return false;
  576. }
  577. canEnableReality() {
  578. if (![Protocols.VLESS, Protocols.Trojan].includes(this.protocol)) return false;
  579. return ["tcp", "http", "grpc", "xhttp"].includes(this.stream.network);
  580. }
  581. canEnableStream() {
  582. return [Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks].includes(this.protocol);
  583. }
  584. canEnableMux() {
  585. if (this.settings.flow && this.settings.flow != '') {
  586. this.mux.enabled = false;
  587. return false;
  588. }
  589. return [Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks, Protocols.HTTP, Protocols.Socks].includes(this.protocol);
  590. }
  591. hasVnext() {
  592. return [Protocols.VMess, Protocols.VLESS].includes(this.protocol);
  593. }
  594. hasServers() {
  595. return [Protocols.Trojan, Protocols.Shadowsocks, Protocols.Socks, Protocols.HTTP].includes(this.protocol);
  596. }
  597. hasAddressPort() {
  598. return [
  599. Protocols.DNS,
  600. Protocols.VMess,
  601. Protocols.VLESS,
  602. Protocols.Trojan,
  603. Protocols.Shadowsocks,
  604. Protocols.Socks,
  605. Protocols.HTTP
  606. ].includes(this.protocol);
  607. }
  608. hasUsername() {
  609. return [Protocols.Socks, Protocols.HTTP].includes(this.protocol);
  610. }
  611. static fromJson(json = {}) {
  612. return new Outbound(
  613. json.tag,
  614. json.protocol,
  615. Outbound.Settings.fromJson(json.protocol, json.settings),
  616. StreamSettings.fromJson(json.streamSettings),
  617. json.sendThrough,
  618. Mux.fromJson(json.mux),
  619. )
  620. }
  621. toJson() {
  622. var stream;
  623. if (this.canEnableStream()) {
  624. stream = this.stream.toJson();
  625. } else {
  626. if (this.stream?.sockopt)
  627. stream = { sockopt: this.stream.sockopt.toJson() };
  628. }
  629. return {
  630. tag: this.tag == '' ? undefined : this.tag,
  631. protocol: this.protocol,
  632. settings: this.settings instanceof CommonClass ? this.settings.toJson() : this.settings,
  633. streamSettings: stream,
  634. sendThrough: this.sendThrough != "" ? this.sendThrough : undefined,
  635. mux: this.mux?.enabled ? this.mux : undefined,
  636. };
  637. }
  638. static fromLink(link) {
  639. data = link.split('://');
  640. if (data.length != 2) return null;
  641. switch (data[0].toLowerCase()) {
  642. case Protocols.VMess:
  643. return this.fromVmessLink(JSON.parse(Base64.decode(data[1])));
  644. case Protocols.VLESS:
  645. case Protocols.Trojan:
  646. case 'ss':
  647. return this.fromParamLink(link);
  648. default:
  649. return null;
  650. }
  651. }
  652. static fromVmessLink(json = {}) {
  653. let stream = new StreamSettings(json.net, json.tls);
  654. let network = json.net;
  655. if (network === 'tcp') {
  656. stream.tcp = new TcpStreamSettings(
  657. json.type,
  658. json.host ?? '',
  659. json.path ?? '');
  660. } else if (network === 'kcp') {
  661. stream.kcp = new KcpStreamSettings();
  662. stream.type = json.type;
  663. stream.seed = json.path;
  664. } else if (network === 'ws') {
  665. stream.ws = new WsStreamSettings(json.path, json.host);
  666. } else if (network === 'grpc') {
  667. 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);
  668. } else if (network === 'httpupgrade') {
  669. stream.httpupgrade = new HttpUpgradeStreamSettings(json.path, json.host);
  670. } else if (network === 'xhttp') {
  671. stream.xhttp = new xHTTPStreamSettings(json.path, json.host, json.mode);
  672. }
  673. if (json.tls && json.tls == 'tls') {
  674. stream.tls = new TlsStreamSettings(
  675. json.sni,
  676. json.alpn ? json.alpn.split(',') : [],
  677. json.fp,
  678. json.allowInsecure);
  679. }
  680. const port = json.port * 1;
  681. return new Outbound(json.ps, Protocols.VMess, new Outbound.VmessSettings(json.add, port, json.id, json.scy), stream);
  682. }
  683. static fromParamLink(link) {
  684. const url = new URL(link);
  685. let type = url.searchParams.get('type') ?? 'tcp';
  686. let security = url.searchParams.get('security') ?? 'none';
  687. let stream = new StreamSettings(type, security);
  688. let headerType = url.searchParams.get('headerType') ?? undefined;
  689. let host = url.searchParams.get('host') ?? undefined;
  690. let path = url.searchParams.get('path') ?? undefined;
  691. let mode = url.searchParams.get('mode') ?? undefined;
  692. if (type === 'tcp' || type === 'none') {
  693. stream.tcp = new TcpStreamSettings(headerType ?? 'none', host, path);
  694. } else if (type === 'kcp') {
  695. stream.kcp = new KcpStreamSettings();
  696. stream.kcp.type = headerType ?? 'none';
  697. stream.kcp.seed = path;
  698. } else if (type === 'ws') {
  699. stream.ws = new WsStreamSettings(path, host);
  700. } else if (type === 'grpc') {
  701. stream.grpc = new GrpcStreamSettings(
  702. url.searchParams.get('serviceName') ?? '',
  703. url.searchParams.get('authority') ?? '',
  704. url.searchParams.get('mode') == 'multi',
  705. url.searchParams.get('user_agent') ?? '',
  706. url.searchParams.get('idle_timeout') ?? '',
  707. url.searchParams.get('health_check_timeout') ?? '',
  708. url.searchParams.get('permit_without_stream') ?? '',
  709. url.searchParams.get('initial_windows_size') ?? '',
  710. );
  711. } else if (type === 'httpupgrade') {
  712. stream.httpupgrade = new HttpUpgradeStreamSettings(path, host);
  713. } else if (type === 'xhttp') {
  714. stream.xhttp = new xHTTPStreamSettings(path, host, mode);
  715. }
  716. if (security == 'tls') {
  717. let fp = url.searchParams.get('fp') ?? 'none';
  718. let alpn = url.searchParams.get('alpn');
  719. let allowInsecure = url.searchParams.get('allowInsecure');
  720. let sni = url.searchParams.get('sni') ?? '';
  721. stream.tls = new TlsStreamSettings(sni, alpn ? alpn.split(',') : [], fp, allowInsecure == 1);
  722. }
  723. if (security == 'reality') {
  724. let pbk = url.searchParams.get('pbk');
  725. let fp = url.searchParams.get('fp');
  726. let sni = url.searchParams.get('sni') ?? '';
  727. let sid = url.searchParams.get('sid') ?? '';
  728. let spx = url.searchParams.get('spx') ?? '';
  729. stream.reality = new RealityStreamSettings(pbk, fp, sni, sid, spx);
  730. }
  731. const regex = /([^@]+):\/\/([^@]+)@(.+):(\d+)(.*)$/;
  732. const match = link.match(regex);
  733. if (!match) return null;
  734. let [, protocol, userData, address, port,] = match;
  735. port *= 1;
  736. if (protocol == 'ss') {
  737. protocol = 'shadowsocks';
  738. userData = atob(userData).split(':');
  739. }
  740. var settings;
  741. switch (protocol) {
  742. case Protocols.VLESS:
  743. settings = new Outbound.VLESSSettings(address, port, userData, url.searchParams.get('flow') ?? '');
  744. break;
  745. case Protocols.Trojan:
  746. settings = new Outbound.TrojanSettings(address, port, userData);
  747. break;
  748. case Protocols.Shadowsocks:
  749. let method = userData.splice(0, 1)[0];
  750. settings = new Outbound.ShadowsocksSettings(address, port, userData.join(":"), method, true);
  751. break;
  752. default:
  753. return null;
  754. }
  755. let remark = decodeURIComponent(url.hash);
  756. // Remove '#' from url.hash
  757. remark = remark.length > 0 ? remark.substring(1) : 'out-' + protocol + '-' + port;
  758. return new Outbound(remark, protocol, settings, stream);
  759. }
  760. }
  761. Outbound.Settings = class extends CommonClass {
  762. constructor(protocol) {
  763. super();
  764. this.protocol = protocol;
  765. }
  766. static getSettings(protocol) {
  767. switch (protocol) {
  768. case Protocols.Freedom: return new Outbound.FreedomSettings();
  769. case Protocols.Blackhole: return new Outbound.BlackholeSettings();
  770. case Protocols.DNS: return new Outbound.DNSSettings();
  771. case Protocols.VMess: return new Outbound.VmessSettings();
  772. case Protocols.VLESS: return new Outbound.VLESSSettings();
  773. case Protocols.Trojan: return new Outbound.TrojanSettings();
  774. case Protocols.Shadowsocks: return new Outbound.ShadowsocksSettings();
  775. case Protocols.Socks: return new Outbound.SocksSettings();
  776. case Protocols.HTTP: return new Outbound.HttpSettings();
  777. case Protocols.Wireguard: return new Outbound.WireguardSettings();
  778. default: return null;
  779. }
  780. }
  781. static fromJson(protocol, json) {
  782. switch (protocol) {
  783. case Protocols.Freedom: return Outbound.FreedomSettings.fromJson(json);
  784. case Protocols.Blackhole: return Outbound.BlackholeSettings.fromJson(json);
  785. case Protocols.DNS: return Outbound.DNSSettings.fromJson(json);
  786. case Protocols.VMess: return Outbound.VmessSettings.fromJson(json);
  787. case Protocols.VLESS: return Outbound.VLESSSettings.fromJson(json);
  788. case Protocols.Trojan: return Outbound.TrojanSettings.fromJson(json);
  789. case Protocols.Shadowsocks: return Outbound.ShadowsocksSettings.fromJson(json);
  790. case Protocols.Socks: return Outbound.SocksSettings.fromJson(json);
  791. case Protocols.HTTP: return Outbound.HttpSettings.fromJson(json);
  792. case Protocols.Wireguard: return Outbound.WireguardSettings.fromJson(json);
  793. default: return null;
  794. }
  795. }
  796. toJson() {
  797. return {};
  798. }
  799. };
  800. Outbound.FreedomSettings = class extends CommonClass {
  801. constructor(
  802. domainStrategy = '',
  803. redirect = '',
  804. fragment = {},
  805. noises = []
  806. ) {
  807. super();
  808. this.domainStrategy = domainStrategy;
  809. this.redirect = redirect;
  810. this.fragment = fragment;
  811. this.noises = noises;
  812. }
  813. addNoise() {
  814. this.noises.push(new Outbound.FreedomSettings.Noise());
  815. }
  816. delNoise(index) {
  817. this.noises.splice(index, 1);
  818. }
  819. static fromJson(json = {}) {
  820. return new Outbound.FreedomSettings(
  821. json.domainStrategy,
  822. json.redirect,
  823. json.fragment ? Outbound.FreedomSettings.Fragment.fromJson(json.fragment) : undefined,
  824. json.noises ? json.noises.map(noise => Outbound.FreedomSettings.Noise.fromJson(noise)) : undefined,
  825. );
  826. }
  827. toJson() {
  828. return {
  829. domainStrategy: ObjectUtil.isEmpty(this.domainStrategy) ? undefined : this.domainStrategy,
  830. redirect: ObjectUtil.isEmpty(this.redirect) ? undefined: this.redirect,
  831. fragment: Object.keys(this.fragment).length === 0 ? undefined : this.fragment,
  832. noises: this.noises.length === 0 ? undefined : Outbound.FreedomSettings.Noise.toJsonArray(this.noises),
  833. };
  834. }
  835. };
  836. Outbound.FreedomSettings.Fragment = class extends CommonClass {
  837. constructor(
  838. packets = '1-3',
  839. length = '',
  840. interval = ''
  841. ) {
  842. super();
  843. this.packets = packets;
  844. this.length = length;
  845. this.interval = interval;
  846. }
  847. static fromJson(json = {}) {
  848. return new Outbound.FreedomSettings.Fragment(
  849. json.packets,
  850. json.length,
  851. json.interval,
  852. );
  853. }
  854. };
  855. Outbound.FreedomSettings.Noise = class extends CommonClass {
  856. constructor(
  857. type = 'rand',
  858. packet = '10-20',
  859. delay = '10-16'
  860. ) {
  861. super();
  862. this.type = type;
  863. this.packet = packet;
  864. this.delay = delay;
  865. }
  866. static fromJson(json = {}) {
  867. return new Outbound.FreedomSettings.Noise(
  868. json.type,
  869. json.packet,
  870. json.delay,
  871. );
  872. }
  873. toJson() {
  874. return {
  875. type: this.type,
  876. packet: this.packet,
  877. delay: this.delay,
  878. };
  879. }
  880. };
  881. Outbound.BlackholeSettings = class extends CommonClass {
  882. constructor(type) {
  883. super();
  884. this.type = type;
  885. }
  886. static fromJson(json = {}) {
  887. return new Outbound.BlackholeSettings(
  888. json.response ? json.response.type : undefined,
  889. );
  890. }
  891. toJson() {
  892. return {
  893. response: ObjectUtil.isEmpty(this.type) ? undefined : { type: this.type },
  894. };
  895. }
  896. };
  897. Outbound.DNSSettings = class extends CommonClass {
  898. constructor(
  899. network = 'udp',
  900. address = '',
  901. port = 53,
  902. nonIPQuery = 'drop',
  903. blockTypes = []
  904. ) {
  905. super();
  906. this.network = network;
  907. this.address = address;
  908. this.port = port;
  909. this.nonIPQuery = nonIPQuery;
  910. this.blockTypes = blockTypes;
  911. }
  912. static fromJson(json = {}) {
  913. return new Outbound.DNSSettings(
  914. json.network,
  915. json.address,
  916. json.port,
  917. json.nonIPQuery,
  918. json.blockTypes,
  919. );
  920. }
  921. };
  922. Outbound.VmessSettings = class extends CommonClass {
  923. constructor(address, port, id, security) {
  924. super();
  925. this.address = address;
  926. this.port = port;
  927. this.id = id;
  928. this.security = security;
  929. }
  930. static fromJson(json = {}) {
  931. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VmessSettings();
  932. return new Outbound.VmessSettings(
  933. json.vnext[0].address,
  934. json.vnext[0].port,
  935. json.vnext[0].users[0].id,
  936. json.vnext[0].users[0].security,
  937. );
  938. }
  939. toJson() {
  940. return {
  941. vnext: [{
  942. address: this.address,
  943. port: this.port,
  944. users: [{ id: this.id, security: this.security }],
  945. }],
  946. };
  947. }
  948. };
  949. Outbound.VLESSSettings = class extends CommonClass {
  950. constructor(address, port, id, flow, encryption = 'none') {
  951. super();
  952. this.address = address;
  953. this.port = port;
  954. this.id = id;
  955. this.flow = flow;
  956. this.encryption = encryption
  957. }
  958. static fromJson(json = {}) {
  959. if (ObjectUtil.isArrEmpty(json.vnext)) return new Outbound.VLESSSettings();
  960. return new Outbound.VLESSSettings(
  961. json.vnext[0].address,
  962. json.vnext[0].port,
  963. json.vnext[0].users[0].id,
  964. json.vnext[0].users[0].flow,
  965. json.vnext[0].users[0].encryption,
  966. );
  967. }
  968. toJson() {
  969. return {
  970. vnext: [{
  971. address: this.address,
  972. port: this.port,
  973. users: [{ id: this.id, flow: this.flow, encryption: 'none', }],
  974. }],
  975. };
  976. }
  977. };
  978. Outbound.TrojanSettings = class extends CommonClass {
  979. constructor(address, port, password) {
  980. super();
  981. this.address = address;
  982. this.port = port;
  983. this.password = password;
  984. }
  985. static fromJson(json = {}) {
  986. if (ObjectUtil.isArrEmpty(json.servers)) return new Outbound.TrojanSettings();
  987. return new Outbound.TrojanSettings(
  988. json.servers[0].address,
  989. json.servers[0].port,
  990. json.servers[0].password,
  991. );
  992. }
  993. toJson() {
  994. return {
  995. servers: [{
  996. address: this.address,
  997. port: this.port,
  998. password: this.password,
  999. }],
  1000. };
  1001. }
  1002. };
  1003. Outbound.ShadowsocksSettings = class extends CommonClass {
  1004. constructor(address, port, password, method, uot, UoTVersion) {
  1005. super();
  1006. this.address = address;
  1007. this.port = port;
  1008. this.password = password;
  1009. this.method = method;
  1010. this.uot = uot;
  1011. this.UoTVersion = UoTVersion;
  1012. }
  1013. static fromJson(json = {}) {
  1014. let servers = json.servers;
  1015. if (ObjectUtil.isArrEmpty(servers)) servers = [{}];
  1016. return new Outbound.ShadowsocksSettings(
  1017. servers[0].address,
  1018. servers[0].port,
  1019. servers[0].password,
  1020. servers[0].method,
  1021. servers[0].uot,
  1022. servers[0].UoTVersion,
  1023. );
  1024. }
  1025. toJson() {
  1026. return {
  1027. servers: [{
  1028. address: this.address,
  1029. port: this.port,
  1030. password: this.password,
  1031. method: this.method,
  1032. uot: this.uot,
  1033. UoTVersion: this.UoTVersion,
  1034. }],
  1035. };
  1036. }
  1037. };
  1038. Outbound.SocksSettings = class extends CommonClass {
  1039. constructor(address, port, user, pass) {
  1040. super();
  1041. this.address = address;
  1042. this.port = port;
  1043. this.user = user;
  1044. this.pass = pass;
  1045. }
  1046. static fromJson(json = {}) {
  1047. let servers = json.servers;
  1048. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1049. return new Outbound.SocksSettings(
  1050. servers[0].address,
  1051. servers[0].port,
  1052. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1053. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1054. );
  1055. }
  1056. toJson() {
  1057. return {
  1058. servers: [{
  1059. address: this.address,
  1060. port: this.port,
  1061. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1062. }],
  1063. };
  1064. }
  1065. };
  1066. Outbound.HttpSettings = class extends CommonClass {
  1067. constructor(address, port, user, pass) {
  1068. super();
  1069. this.address = address;
  1070. this.port = port;
  1071. this.user = user;
  1072. this.pass = pass;
  1073. }
  1074. static fromJson(json = {}) {
  1075. let servers = json.servers;
  1076. if (ObjectUtil.isArrEmpty(servers)) servers = [{ users: [{}] }];
  1077. return new Outbound.HttpSettings(
  1078. servers[0].address,
  1079. servers[0].port,
  1080. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].user,
  1081. ObjectUtil.isArrEmpty(servers[0].users) ? '' : servers[0].users[0].pass,
  1082. );
  1083. }
  1084. toJson() {
  1085. return {
  1086. servers: [{
  1087. address: this.address,
  1088. port: this.port,
  1089. users: ObjectUtil.isEmpty(this.user) ? [] : [{ user: this.user, pass: this.pass }],
  1090. }],
  1091. };
  1092. }
  1093. };
  1094. Outbound.WireguardSettings = class extends CommonClass {
  1095. constructor(
  1096. mtu = 1420,
  1097. secretKey = '',
  1098. address = [''],
  1099. workers = 2,
  1100. domainStrategy = '',
  1101. reserved = '',
  1102. peers = [new Outbound.WireguardSettings.Peer()],
  1103. noKernelTun = false,
  1104. ) {
  1105. super();
  1106. this.mtu = mtu;
  1107. this.secretKey = secretKey;
  1108. this.pubKey = secretKey.length > 0 ? Wireguard.generateKeypair(secretKey).publicKey : '';
  1109. this.address = Array.isArray(address) ? address.join(',') : address;
  1110. this.workers = workers;
  1111. this.domainStrategy = domainStrategy;
  1112. this.reserved = Array.isArray(reserved) ? reserved.join(',') : reserved;
  1113. this.peers = peers;
  1114. this.noKernelTun = noKernelTun;
  1115. }
  1116. addPeer() {
  1117. this.peers.push(new Outbound.WireguardSettings.Peer());
  1118. }
  1119. delPeer(index) {
  1120. this.peers.splice(index, 1);
  1121. }
  1122. static fromJson(json = {}) {
  1123. return new Outbound.WireguardSettings(
  1124. json.mtu,
  1125. json.secretKey,
  1126. json.address,
  1127. json.workers,
  1128. json.domainStrategy,
  1129. json.reserved,
  1130. json.peers.map(peer => Outbound.WireguardSettings.Peer.fromJson(peer)),
  1131. json.noKernelTun,
  1132. );
  1133. }
  1134. toJson() {
  1135. return {
  1136. mtu: this.mtu ?? undefined,
  1137. secretKey: this.secretKey,
  1138. address: this.address ? this.address.split(",") : [],
  1139. workers: this.workers ?? undefined,
  1140. domainStrategy: WireguardDomainStrategy.includes(this.domainStrategy) ? this.domainStrategy : undefined,
  1141. reserved: this.reserved ? this.reserved.split(",").map(Number) : undefined,
  1142. peers: Outbound.WireguardSettings.Peer.toJsonArray(this.peers),
  1143. noKernelTun: this.noKernelTun,
  1144. };
  1145. }
  1146. };
  1147. Outbound.WireguardSettings.Peer = class extends CommonClass {
  1148. constructor(
  1149. publicKey = '',
  1150. psk = '',
  1151. allowedIPs = ['0.0.0.0/0', '::/0'],
  1152. endpoint = '',
  1153. keepAlive = 0
  1154. ) {
  1155. super();
  1156. this.publicKey = publicKey;
  1157. this.psk = psk;
  1158. this.allowedIPs = allowedIPs;
  1159. this.endpoint = endpoint;
  1160. this.keepAlive = keepAlive;
  1161. }
  1162. static fromJson(json = {}) {
  1163. return new Outbound.WireguardSettings.Peer(
  1164. json.publicKey,
  1165. json.preSharedKey,
  1166. json.allowedIPs,
  1167. json.endpoint,
  1168. json.keepAlive
  1169. );
  1170. }
  1171. toJson() {
  1172. return {
  1173. publicKey: this.publicKey,
  1174. preSharedKey: this.psk.length > 0 ? this.psk : undefined,
  1175. allowedIPs: this.allowedIPs ? this.allowedIPs : undefined,
  1176. endpoint: this.endpoint,
  1177. keepAlive: this.keepAlive ?? undefined,
  1178. };
  1179. }
  1180. };