xray.html 70 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {{template "head" .}}
  4. <link rel="stylesheet" href="{{ .base_path }}assets/codemirror/codemirror.min.css?{{ .cur_ver }}">
  5. <link rel="stylesheet" href="{{ .base_path }}assets/codemirror/fold/foldgutter.css">
  6. <link rel="stylesheet" href="{{ .base_path }}assets/codemirror/xq.min.css?{{ .cur_ver }}">
  7. <link rel="stylesheet" href="{{ .base_path }}assets/codemirror/lint/lint.css">
  8. <script src="{{ .base_path }}assets/js/model/outbound.js?{{ .cur_ver }}"></script>
  9. <script src="{{ .base_path }}assets/codemirror/codemirror.min.js?{{ .cur_ver }}"></script>
  10. <script src="{{ .base_path }}assets/codemirror/javascript.js"></script>
  11. <script src="{{ .base_path }}assets/codemirror/jshint.js"></script>
  12. <script src="{{ .base_path }}assets/codemirror/jsonlint.js"></script>
  13. <script src="{{ .base_path }}assets/codemirror/lint/lint.js"></script>
  14. <script src="{{ .base_path }}assets/codemirror/lint/javascript-lint.js"></script>
  15. <script src="{{ .base_path }}assets/codemirror/hint/javascript-hint.js"></script>
  16. <script src="{{ .base_path }}assets/codemirror/fold/foldcode.js"></script>
  17. <script src="{{ .base_path }}assets/codemirror/fold/foldgutter.js"></script>
  18. <script src="{{ .base_path }}assets/codemirror/fold/brace-fold.js"></script>
  19. <style>
  20. @media (min-width: 769px) {
  21. .ant-layout-content {
  22. margin: 24px 16px;
  23. }
  24. }
  25. @media (max-width: 768px) {
  26. .ant-tabs-nav .ant-tabs-tab {
  27. margin: 0;
  28. padding: 12px .5rem;
  29. }
  30. .ant-table-thead>tr>th,
  31. .ant-table-tbody>tr>td {
  32. padding: 10px 0px;
  33. }
  34. }
  35. .ant-tabs-bar {
  36. margin: 0;
  37. }
  38. .ant-list-item {
  39. display: block;
  40. }
  41. .ant-list-item>li {
  42. padding: 10px 20px !important;
  43. }
  44. </style>
  45. <body>
  46. <a-layout id="app" v-cloak :class="themeSwitcher.currentTheme">
  47. <a-sidebar></a-sidebar>
  48. <a-layout id="content-layout">
  49. <a-layout-content>
  50. <a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
  51. <transition name="list" appear>
  52. <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
  53. message='{{ i18n "secAlertTitle" }}'
  54. color="red"
  55. description='{{ i18n "secAlertSsl" }}'
  56. show-icon closable>
  57. </a-alert>
  58. </transition>
  59. <a-space direction="vertical">
  60. <a-card hoverable style="margin-bottom: .5rem;">
  61. <a-row style="display: flex; flex-wrap: wrap; align-items: center;">
  62. <a-col :xs="24" :sm="10" style="padding: 4px;">
  63. <a-space direction="horizontal">
  64. <a-button type="primary" :disabled="saveBtnDisable" @click="updateXraySetting">{{ i18n "pages.xray.save" }}</a-button>
  65. <a-button type="danger" :disabled="!saveBtnDisable" @click="restartXray">{{ i18n "pages.xray.restart" }}</a-button>
  66. <a-popover v-if="restartResult"
  67. :overlay-class-name="themeSwitcher.currentTheme">
  68. <span slot="title" style="font-size: 12pt">Error in running xray-core</span>
  69. <template slot="content">
  70. <p style="max-width: 400px" v-for="line in restartResult.split('\n')">[[ line ]]</p>
  71. </template>
  72. <a-icon type="question-circle"></a-icon>
  73. </a-popover>
  74. </a-space>
  75. </a-col>
  76. <a-col :xs="24" :sm="14">
  77. <template>
  78. <div>
  79. <a-back-top :target="() => document.getElementById('content-layout')" visibility-height="200"></a-back-top>
  80. <a-alert type="warning" style="float: right; width: fit-content" message='{{ i18n "pages.settings.infoDesc" }}' show-icon>
  81. </a-alert>
  82. </div>
  83. </template>
  84. </a-col>
  85. </a-row>
  86. </a-card>
  87. <a-tabs class="ant-card-dark-box-nohover" default-active-key="1"
  88. @change="(activeKey) => { this.changePage(activeKey); }"
  89. :class="themeSwitcher.currentTheme">
  90. <a-tab-pane key="tpl-basic" tab='{{ i18n "pages.xray.basicTemplate"}}' style="padding-top: 20px;">
  91. {{ template "settings/xray/basics" . }}
  92. </a-tab-pane>
  93. <a-tab-pane key="tpl-routing" tab='{{ i18n "pages.xray.Routings"}}' style="padding-top: 20px;">
  94. {{ template "settings/xray/routing" . }}
  95. </a-tab-pane>
  96. <a-tab-pane key="tpl-outbound" tab='{{ i18n "pages.xray.Outbounds"}}' force-render="true">
  97. {{ template "settings/xray/outbounds" . }}
  98. </a-tab-pane>
  99. <a-tab-pane key="tpl-reverse" tab='{{ i18n "pages.xray.outbound.reverse"}}' style="padding-top: 20px;" force-render="true">
  100. {{ template "settings/xray/reverse" . }}
  101. </a-tab-pane>
  102. <a-tab-pane key="tpl-balancer" tab='{{ i18n "pages.xray.Balancers"}}' style="padding-top: 20px;" force-render="true">
  103. {{ template "settings/xray/balancers" . }}
  104. </a-tab-pane>
  105. <a-tab-pane key="tpl-dns" tab='DNS' style="padding-top: 20px;" force-render="true">
  106. {{ template "settings/xray/dns" . }}
  107. </a-tab-pane>
  108. <a-tab-pane key="tpl-advanced" tab='{{ i18n "pages.xray.advancedTemplate"}}' style="padding-top: 20px;" force-render="true">
  109. {{ template "settings/xray/advanced" . }}
  110. </a-tab-pane>
  111. </a-tabs>
  112. </a-space>
  113. </a-spin>
  114. </a-layout-content>
  115. </a-layout>
  116. </a-layout>
  117. {{template "js" .}}
  118. {{template "component/aSidebar" .}}
  119. {{template "component/aThemeSwitch" .}}
  120. {{template "component/aTableSortable" .}}
  121. {{template "component/aSettingListItem" .}}
  122. {{template "modals/ruleModal"}}
  123. {{template "modals/outModal"}}
  124. {{template "modals/reverseModal"}}
  125. {{template "modals/balancerModal"}}
  126. {{template "modals/dnsModal"}}
  127. {{template "modals/fakednsModal"}}
  128. {{template "modals/warpModal"}}
  129. <script>
  130. const rulesColumns = [
  131. { title: "#", align: 'center', width: 15, scopedSlots: { customRender: 'action' } },
  132. { title: '{{ i18n "pages.xray.rules.source"}}', children: [
  133. { title: 'IP', dataIndex: "source", align: 'center', width: 20, ellipsis: true },
  134. { title: 'Port', dataIndex: 'sourcePort', align: 'center', width: 10, ellipsis: true } ]},
  135. { title: '{{ i18n "pages.inbounds.network"}}', children: [
  136. { title: 'L4', dataIndex: 'network', align: 'center', width: 10 },
  137. { title: 'Protocol', dataIndex: 'protocol', align: 'center', width: 15, ellipsis: true },
  138. { title: 'Attrs', dataIndex: 'attrs', align: 'center', width: 10, ellipsis: true } ]},
  139. { title: '{{ i18n "pages.xray.rules.dest"}}', children: [
  140. { title: 'IP', dataIndex: 'ip', align: 'center', width: 20, ellipsis: true },
  141. { title: 'Domain', dataIndex: 'domain', align: 'center', width: 20, ellipsis: true },
  142. { title: 'Port', dataIndex: 'port', align: 'center', width: 10, ellipsis: true }]},
  143. { title: '{{ i18n "pages.xray.rules.inbound"}}', children: [
  144. { title: 'Tag', dataIndex: 'inboundTag', align: 'center', width: 15, ellipsis: true },
  145. { title: 'Client Email', dataIndex: 'user', align: 'center', width: 20, ellipsis: true }]},
  146. { title: '{{ i18n "pages.xray.rules.outbound"}}', dataIndex: 'outboundTag', align: 'center', width: 17 },
  147. { title: '{{ i18n "pages.xray.rules.balancer"}}', dataIndex: 'balancerTag', align: 'center', width: 15 },
  148. ];
  149. const rulesMobileColumns = [
  150. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  151. { title: '{{ i18n "pages.xray.rules.inbound"}}', align: 'center', width: 50, ellipsis: true, scopedSlots: { customRender: 'inbound' } },
  152. { title: '{{ i18n "pages.xray.rules.outbound"}}', align: 'center', width: 50, ellipsis: true, scopedSlots: { customRender: 'outbound' } },
  153. { title: '{{ i18n "pages.xray.rules.info"}}', align: 'center', width: 50, ellipsis: true, scopedSlots: { customRender: 'info' } },
  154. ];
  155. const outboundColumns = [
  156. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  157. { title: '{{ i18n "pages.xray.outbound.tag"}}', dataIndex: 'tag', align: 'center', width: 50 },
  158. { title: '{{ i18n "protocol"}}', align: 'center', width: 50, scopedSlots: { customRender: 'protocol' } },
  159. { title: '{{ i18n "pages.xray.outbound.address"}}', align: 'center', width: 50, scopedSlots: { customRender: 'address' } },
  160. { title: '{{ i18n "pages.inbounds.traffic" }}', align: 'center', width: 50, scopedSlots: { customRender: 'traffic' } },
  161. ];
  162. const reverseColumns = [
  163. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  164. { title: '{{ i18n "pages.xray.outbound.type"}}', dataIndex: 'type', align: 'center', width: 50 },
  165. { title: '{{ i18n "pages.xray.outbound.tag"}}', dataIndex: 'tag', align: 'center', width: 50 },
  166. { title: '{{ i18n "pages.xray.outbound.domain"}}', dataIndex: 'domain', align: 'center', width: 50 },
  167. ];
  168. const balancerColumns = [
  169. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  170. { title: '{{ i18n "pages.xray.balancer.tag"}}', dataIndex: 'tag', align: 'center', width: 50 },
  171. { title: '{{ i18n "pages.xray.balancer.balancerStrategy"}}', align: 'center', width: 50, scopedSlots: { customRender: 'strategy' }},
  172. { title: '{{ i18n "pages.xray.balancer.balancerSelectors"}}', align: 'center', width: 100, scopedSlots: { customRender: 'selector' }},
  173. ];
  174. const dnsColumns = [
  175. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  176. { title: '{{ i18n "pages.xray.outbound.address"}}', align: 'center', width: 50, scopedSlots: { customRender: 'address' } },
  177. { title: '{{ i18n "pages.xray.dns.domains"}}', align: 'center', width: 50, scopedSlots: { customRender: 'domain' } },
  178. { title: '{{ i18n "pages.xray.dns.expectIPs"}}', align: 'center', width: 50, scopedSlots: { customRender: 'expectIPs' } },
  179. ];
  180. const fakednsColumns = [
  181. { title: "#", align: 'center', width: 20, scopedSlots: { customRender: 'action' } },
  182. { title: '{{ i18n "pages.xray.fakedns.ipPool"}}', dataIndex: 'ipPool', align: 'center', width: 50 },
  183. { title: '{{ i18n "pages.xray.fakedns.poolSize"}}', dataIndex: 'poolSize', align: 'center', width: 50 },
  184. ];
  185. const app = new Vue({
  186. delimiters: ['[[', ']]'],
  187. el: '#app',
  188. data: {
  189. themeSwitcher,
  190. isDarkTheme: themeSwitcher.isDarkTheme,
  191. spinning: false,
  192. oldXraySetting: '',
  193. xraySetting: '',
  194. inboundTags: [],
  195. outboundsTraffic: [],
  196. saveBtnDisable: true,
  197. refreshing: false,
  198. restartResult: '',
  199. showAlert: false,
  200. isMobile: DeviceUtils.isMobile(),
  201. advSettings: 'xraySetting',
  202. obsSettings: '',
  203. cm: null,
  204. cmOptions: {
  205. lineNumbers: true,
  206. mode: "application/json",
  207. lint: true,
  208. styleActiveLine: true,
  209. matchBrackets: true,
  210. theme: "xq",
  211. autoCloseTags: true,
  212. lineWrapping: true,
  213. indentUnit: 2,
  214. indentWithTabs: true,
  215. smartIndent: true,
  216. tabSize: 2,
  217. lineWiseCopyCut: false,
  218. foldGutter: true,
  219. gutters: [
  220. "CodeMirror-lint-markers",
  221. "CodeMirror-linenumbers",
  222. "CodeMirror-foldgutter",
  223. ],
  224. },
  225. ipv4Settings: {
  226. tag: "IPv4",
  227. protocol: "freedom",
  228. settings: {
  229. domainStrategy: "UseIPv4"
  230. }
  231. },
  232. directSettings: {
  233. tag: "direct",
  234. protocol: "freedom"
  235. },
  236. routingDomainStrategies: ["AsIs", "IPIfNonMatch", "IPOnDemand"],
  237. log: {
  238. loglevel: ["none", "debug", "info", "warning", "error"],
  239. access: ["none", "./access.log"],
  240. error: ["none", "./error.log"],
  241. dnsLog: false,
  242. maskAddress: ["quarter", "half", "full"],
  243. },
  244. settingsData: {
  245. protocols: {
  246. bittorrent: ["bittorrent"],
  247. },
  248. IPsOptions: [
  249. { label: 'Private IPs', value: 'geoip:private' },
  250. { label: '🇮🇷 Iran', value: 'ext:geoip_IR.dat:ir' },
  251. { label: '🇨🇳 China', value: 'geoip:cn' },
  252. { label: '🇷🇺 Russia', value: 'ext:geoip_RU.dat:ru' },
  253. { label: '🇻🇳 Vietnam', value: 'geoip:vn' },
  254. { label: '🇪🇸 Spain', value: 'geoip:es' },
  255. { label: '🇮🇩 Indonesia', value: 'geoip:id' },
  256. { label: '🇺🇦 Ukraine', value: 'geoip:ua' },
  257. { label: '🇹🇷 Türkiye', value: 'geoip:tr' },
  258. { label: '🇧🇷 Brazil', value: 'geoip:br' },
  259. ],
  260. DomainsOptions: [
  261. { label: '🇮🇷 Iran', value: 'ext:geosite_IR.dat:ir' },
  262. { label: '🇮🇷 .ir', value: 'regexp:.*\\.ir$' },
  263. { label: '🇮🇷 .ایران', value: 'regexp:.*\\.xn--mgba3a4f16a$' },
  264. { label: '🇨🇳 China', value: 'geosite:cn' },
  265. { label: '🇨🇳 .cn', value: 'regexp:.*\\.cn$' },
  266. { label: '🇷🇺 Russia', value: 'ext:geosite_RU.dat:ru-available-only-inside' },
  267. { label: '🇷🇺 .ru', value: 'regexp:.*\\.ru$' },
  268. { label: '🇷🇺 .su', value: 'regexp:.*\\.su$' },
  269. { label: '🇷🇺 .рф', value: 'regexp:.*\\.xn--p1ai$' },
  270. { label: '🇻🇳 .vn', value: 'regexp:.*\\.vn$' },
  271. ],
  272. BlockDomainsOptions: [
  273. { label: 'Ads All', value: 'geosite:category-ads-all' },
  274. { label: 'Ads IR 🇮🇷', value: 'ext:geosite_IR.dat:category-ads-all' },
  275. { label: 'Ads RU 🇷🇺', value: 'ext:geosite_RU.dat:category-ads-all' },
  276. { label: 'Malware 🇮🇷', value: 'ext:geosite_IR.dat:malware' },
  277. { label: 'Phishing 🇮🇷', value: 'ext:geosite_IR.dat:phishing' },
  278. { label: 'Cryptominers 🇮🇷', value: 'ext:geosite_IR.dat:cryptominers' },
  279. { label: '🇮🇷 Iran', value: 'ext:geosite_IR.dat:ir' },
  280. { label: '🇮🇷 .ir', value: 'regexp:.*\\.ir$' },
  281. { label: '🇮🇷 .ایران', value: 'regexp:.*\\.xn--mgba3a4f16a$' },
  282. { label: '🇨🇳 China', value: 'geosite:cn' },
  283. { label: '🇨🇳 .cn', value: 'regexp:.*\\.cn$' },
  284. { label: '🇷🇺 Russia', value: 'ext:geosite_RU.dat:ru-available-only-inside' },
  285. { label: '🇷🇺 .ru', value: 'regexp:.*\\.ru' },
  286. { label: '🇷🇺 .su', value: 'regexp:.*\\.su$' },
  287. { label: '🇷🇺 .рф', value: 'regexp:.*\\.xn--p1ai$' },
  288. { label: '🇻🇳 .vn', value: 'regexp:.*\\.vn$' },
  289. ],
  290. ServicesOptions: [
  291. { label: 'Apple', value: 'geosite:apple' },
  292. { label: 'Meta', value: 'geosite:meta' },
  293. { label: 'Google', value: 'geosite:google' },
  294. { label: 'OpenAI', value: 'geosite:openai' },
  295. { label: 'Spotify', value: 'geosite:spotify' },
  296. { label: 'Netflix', value: 'geosite:netflix' },
  297. { label: 'Reddit', value: 'geosite:reddit' },
  298. { label: 'Speedtest', value: 'geosite:speedtest' },
  299. ],
  300. familyProtectDNS: {
  301. "servers": [
  302. "1.1.1.3", // https://developers.cloudflare.com/1.1.1.1/setup/
  303. "1.0.0.3",
  304. "2606:4700:4700::1113",
  305. "2606:4700:4700::1003"
  306. ],
  307. "queryStrategy": "UseIP"
  308. },
  309. },
  310. defaultObservatory: {
  311. subjectSelector: [],
  312. probeURL: "http://www.google.com/gen_204",
  313. probeInterval: "10m",
  314. enableConcurrency: true
  315. },
  316. defaultBurstObservatory: {
  317. subjectSelector: [],
  318. pingConfig: {
  319. destination: "http://www.google.com/gen_204",
  320. interval: "30m",
  321. connectivity: "http://connectivitycheck.platform.hicloud.com/generate_204",
  322. timeout: "10s",
  323. sampling: 2
  324. }
  325. }
  326. },
  327. methods: {
  328. loading(spinning = true) {
  329. this.spinning = spinning;
  330. },
  331. async getOutboundsTraffic() {
  332. const msg = await HttpUtil.get("/panel/xray/getOutboundsTraffic");
  333. if (msg.success) {
  334. this.outboundsTraffic = msg.obj;
  335. }
  336. },
  337. async getXraySetting() {
  338. this.loading(true);
  339. const msg = await HttpUtil.post("/panel/xray/");
  340. this.loading(false);
  341. if (msg.success) {
  342. result = JSON.parse(msg.obj);
  343. xs = JSON.stringify(result.xraySetting, null, 2);
  344. this.oldXraySetting = xs;
  345. this.xraySetting = xs;
  346. this.inboundTags = result.inboundTags;
  347. this.saveBtnDisable = true;
  348. }
  349. },
  350. async updateXraySetting() {
  351. this.loading(true);
  352. const msg = await HttpUtil.post("/panel/xray/update", {xraySetting : this.xraySetting});
  353. this.loading(false);
  354. if (msg.success) {
  355. await this.getXraySetting();
  356. }
  357. },
  358. async restartXray() {
  359. this.loading(true);
  360. const msg = await HttpUtil.post("server/restartXrayService");
  361. this.loading(false);
  362. if (msg.success) {
  363. await PromiseUtil.sleep(500);
  364. await this.getXrayResult();
  365. }
  366. this.loading(false);
  367. },
  368. async getXrayResult() {
  369. const msg = await HttpUtil.get("/panel/xray/getXrayResult");
  370. if (msg.success) {
  371. this.restartResult=msg.obj;
  372. if(msg.obj.length > 1) Vue.prototype.$message.error(msg.obj);
  373. }
  374. },
  375. async fetchUserSecret() {
  376. this.loading(true);
  377. const userMessage = await HttpUtil.post("/panel/setting/getUserSecret", this.user);
  378. if (userMessage.success) {
  379. this.user = userMessage.obj;
  380. }
  381. this.loading(false);
  382. },
  383. async updateSecret() {
  384. this.loading(true);
  385. const msg = await HttpUtil.post("/panel/setting/updateUserSecret", this.user);
  386. if (msg.success) {
  387. this.user = msg.obj;
  388. window.location.replace(basePath + "logout");
  389. }
  390. this.loading(false);
  391. await this.updateXraySetting();
  392. },
  393. generateRandomString(length) {
  394. var chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
  395. let randomString = "";
  396. for (let i = 0; i < length; i++) {
  397. randomString += chars[Math.floor(Math.random() * chars.length)];
  398. }
  399. return randomString;
  400. },
  401. async getNewSecret() {
  402. this.loading(true);
  403. await PromiseUtil.sleep(600);
  404. const newSecret = this.generateRandomString(64);
  405. this.user.loginSecret = newSecret;
  406. document.getElementById("token").textContent = newSecret;
  407. this.loading(false);
  408. },
  409. async toggleToken(value) {
  410. if (value) {
  411. await this.getNewSecret();
  412. } else {
  413. this.user.loginSecret = "";
  414. }
  415. },
  416. async resetXrayConfigToDefault() {
  417. this.loading(true);
  418. const msg = await HttpUtil.get("/panel/setting/getDefaultJsonConfig");
  419. this.loading(false);
  420. if (msg.success) {
  421. this.templateSettings = JSON.parse(JSON.stringify(msg.obj, null, 2));
  422. this.saveBtnDisable = true;
  423. }
  424. },
  425. changePage(pageKey) {
  426. if(pageKey == 'tpl-advanced') this.changeCode();
  427. if(pageKey == 'tpl-balancer') this.changeObsCode();
  428. },
  429. syncRulesWithOutbound(tag, setting) {
  430. const newTemplateSettings = this.templateSettings;
  431. const haveRules = newTemplateSettings.routing.rules.some((r) => r?.outboundTag === tag);
  432. const outboundIndex = newTemplateSettings.outbounds.findIndex((o) => o.tag === tag);
  433. if (!haveRules && outboundIndex > 0) {
  434. newTemplateSettings.outbounds.splice(outboundIndex);
  435. }
  436. if (haveRules && outboundIndex < 0) {
  437. newTemplateSettings.outbounds.push(setting);
  438. }
  439. this.templateSettings = newTemplateSettings;
  440. },
  441. templateRuleGetter(routeSettings) {
  442. const { property, outboundTag } = routeSettings;
  443. let result = [];
  444. if (this.templateSettings != null) {
  445. this.templateSettings.routing.rules.forEach(
  446. (routingRule) => {
  447. if (
  448. routingRule.hasOwnProperty(property) &&
  449. routingRule.hasOwnProperty("outboundTag") &&
  450. routingRule.outboundTag === outboundTag
  451. ) {
  452. result.push(...routingRule[property]);
  453. }
  454. }
  455. );
  456. }
  457. return result;
  458. },
  459. templateRuleSetter(routeSettings) {
  460. const { data, property, outboundTag } = routeSettings;
  461. const oldTemplateSettings = this.templateSettings;
  462. const newTemplateSettings = oldTemplateSettings;
  463. currentProperty = this.templateRuleGetter({ outboundTag, property })
  464. if (currentProperty.length == 0) {
  465. const propertyRule = {
  466. type: "field",
  467. outboundTag,
  468. [property]: data
  469. };
  470. newTemplateSettings.routing.rules.push(propertyRule);
  471. }
  472. else {
  473. const newRules = [];
  474. insertedOnce = false;
  475. newTemplateSettings.routing.rules.forEach(
  476. (routingRule) => {
  477. if (
  478. routingRule.hasOwnProperty(property) &&
  479. routingRule.hasOwnProperty("outboundTag") &&
  480. routingRule.outboundTag === outboundTag
  481. ) {
  482. if (!insertedOnce && data.length > 0) {
  483. insertedOnce = true;
  484. routingRule[property] = data;
  485. newRules.push(routingRule);
  486. }
  487. }
  488. else {
  489. newRules.push(routingRule);
  490. }
  491. }
  492. );
  493. newTemplateSettings.routing.rules = newRules;
  494. }
  495. this.templateSettings = newTemplateSettings;
  496. },
  497. changeCode() {
  498. if(this.cm != null) {
  499. this.cm.toTextArea();
  500. }
  501. textAreaObj = document.getElementById('xraySetting');
  502. textAreaObj.value = this[this.advSettings];
  503. this.cm = CodeMirror.fromTextArea(textAreaObj, this.cmOptions);
  504. this.cm.on('change',editor => {
  505. value = editor.getValue();
  506. if (this.isJsonString(value)) {
  507. this[this.advSettings] = value;
  508. }
  509. });
  510. },
  511. changeObsCode() {
  512. if(this.cm != null) {
  513. this.cm.toTextArea();
  514. }
  515. if (this.obsSettings == ''){
  516. this.cm = null;
  517. return
  518. }
  519. textAreaObj = document.getElementById('obsSetting');
  520. textAreaObj.value = this[this.obsSettings];
  521. this.cm = CodeMirror.fromTextArea(textAreaObj, this.cmOptions);
  522. this.cm.on('change',editor => {
  523. value = editor.getValue();
  524. if(this.isJsonString(value)){
  525. this[this.obsSettings] = value;
  526. }
  527. });
  528. },
  529. isJsonString(str) {
  530. try {
  531. JSON.parse(str);
  532. } catch (e) {
  533. return false;
  534. }
  535. return true;
  536. },
  537. findOutboundTraffic(o) {
  538. for (const otraffic of this.outboundsTraffic) {
  539. if (otraffic.tag == o.tag) {
  540. return SizeFormatter.sizeFormat(otraffic.up) + ' / ' + SizeFormatter.sizeFormat(otraffic.down);
  541. }
  542. }
  543. return SizeFormatter.sizeFormat(0) + ' / ' + SizeFormatter.sizeFormat(0);
  544. },
  545. findOutboundAddress(o) {
  546. serverObj = null;
  547. switch(o.protocol){
  548. case Protocols.VMess:
  549. case Protocols.VLESS:
  550. serverObj = o.settings.vnext;
  551. break;
  552. case Protocols.HTTP:
  553. case Protocols.Socks:
  554. case Protocols.Shadowsocks:
  555. case Protocols.Trojan:
  556. serverObj = o.settings.servers;
  557. break;
  558. case Protocols.DNS:
  559. return [o.settings?.address + ':' + o.settings?.port];
  560. case Protocols.Wireguard:
  561. return o.settings.peers.map(peer => peer.endpoint);
  562. default:
  563. return null;
  564. }
  565. return serverObj ? serverObj.map(obj => obj.address + ':' + obj.port) : null;
  566. },
  567. addOutbound(){
  568. outModal.show({
  569. title: '{{ i18n "pages.xray.outbound.addOutbound"}}',
  570. okText: '{{ i18n "pages.xray.outbound.addOutbound" }}',
  571. confirm: (outbound) => {
  572. outModal.loading();
  573. if(outbound.tag.length > 0){
  574. this.templateSettings.outbounds.push(outbound);
  575. this.outboundSettings = JSON.stringify(this.templateSettings.outbounds);
  576. }
  577. outModal.close();
  578. },
  579. isEdit: false,
  580. tags: this.templateSettings.outbounds.map(obj => obj.tag)
  581. });
  582. },
  583. editOutbound(index){
  584. outModal.show({
  585. title: '{{ i18n "pages.xray.outbound.editOutbound"}} ' + (index+1),
  586. outbound: app.templateSettings.outbounds[index],
  587. confirm: (outbound) => {
  588. outModal.loading();
  589. this.templateSettings.outbounds[index] = outbound;
  590. this.outboundSettings = JSON.stringify(this.templateSettings.outbounds);
  591. outModal.close();
  592. },
  593. isEdit: true,
  594. tags: this.outboundData.filter((o) => o.key != index ).map(obj => obj.tag)
  595. });
  596. },
  597. deleteOutbound(index){
  598. outbounds = this.templateSettings.outbounds;
  599. outbounds.splice(index,1);
  600. this.outboundSettings = JSON.stringify(outbounds);
  601. },
  602. setFirstOutbound(index){
  603. outbounds = this.templateSettings.outbounds;
  604. outbounds.splice(0, 0, outbounds.splice(index, 1)[0]);
  605. this.outboundSettings = JSON.stringify(outbounds);
  606. },
  607. addReverse(){
  608. reverseModal.show({
  609. title: '{{ i18n "pages.xray.outbound.addReverse"}}',
  610. okText: '{{ i18n "pages.xray.outbound.addReverse" }}',
  611. confirm: (reverse, rules) => {
  612. reverseModal.loading();
  613. if(reverse.tag.length > 0){
  614. newTemplateSettings = this.templateSettings;
  615. if(newTemplateSettings.reverse == undefined) newTemplateSettings.reverse = {};
  616. if(newTemplateSettings.reverse[reverse.type+'s'] == undefined) newTemplateSettings.reverse[reverse.type+'s'] = [];
  617. newTemplateSettings.reverse[reverse.type+'s'].push({ tag: reverse.tag, domain: reverse.domain });
  618. this.templateSettings = newTemplateSettings;
  619. // Add related rules
  620. this.templateSettings.routing.rules.push(...rules);
  621. this.routingRuleSettings = JSON.stringify(this.templateSettings.routing.rules);
  622. }
  623. reverseModal.close();
  624. },
  625. isEdit: false
  626. });
  627. },
  628. editReverse(index){
  629. if(this.reverseData[index].type == "bridge") {
  630. oldRules = this.templateSettings.routing.rules.filter(r => r.inboundTag && r.inboundTag[0] == this.reverseData[index].tag);
  631. } else {
  632. oldRules = this.templateSettings.routing.rules.filter(r => r.outboundTag && r.outboundTag == this.reverseData[index].tag);
  633. }
  634. reverseModal.show({
  635. title: '{{ i18n "pages.xray.outbound.editReverse"}} ' + (index+1),
  636. reverse: this.reverseData[index],
  637. rules: oldRules,
  638. confirm: (reverse, rules) => {
  639. reverseModal.loading();
  640. if(reverse.tag.length > 0){
  641. oldData = this.reverseData[index];
  642. newTemplateSettings = this.templateSettings;
  643. oldReverseIndex = newTemplateSettings.reverse[oldData.type+'s'].findIndex(rs => rs.tag == oldData.tag);
  644. oldRuleIndex0 = oldRules.length>0 ? newTemplateSettings.routing.rules.findIndex(r => JSON.stringify(r) == JSON.stringify(oldRules[0])) : -1;
  645. oldRuleIndex1 = oldRules.length==2 ? newTemplateSettings.routing.rules.findIndex(r => JSON.stringify(r) == JSON.stringify(oldRules[1])) : -1;
  646. if(oldData.type == reverse.type){
  647. newTemplateSettings.reverse[oldData.type + 's'][oldReverseIndex] = { tag: reverse.tag, domain: reverse.domain };
  648. } else {
  649. newTemplateSettings.reverse[oldData.type+'s'].splice(oldReverseIndex,1);
  650. // delete empty object
  651. if(newTemplateSettings.reverse[oldData.type+'s'].length == 0) Reflect.deleteProperty(newTemplateSettings.reverse, oldData.type+'s');
  652. // add other type of reverse if it is not exist
  653. if(!newTemplateSettings.reverse[reverse.type+'s']) newTemplateSettings.reverse[reverse.type+'s'] = [];
  654. newTemplateSettings.reverse[reverse.type+'s'].push({ tag: reverse.tag, domain: reverse.domain });
  655. }
  656. this.templateSettings = newTemplateSettings;
  657. // Adjust Rules
  658. newRules = this.templateSettings.routing.rules;
  659. oldRuleIndex0 != -1 ? newRules[oldRuleIndex0] = rules[0] : newRules.push(rules[0]);
  660. oldRuleIndex1 != -1 ? newRules[oldRuleIndex1] = rules[1] : newRules.push(rules[1]);
  661. this.routingRuleSettings = JSON.stringify(newRules);
  662. }
  663. reverseModal.close();
  664. },
  665. isEdit: true
  666. });
  667. },
  668. deleteReverse(index){
  669. oldData = this.reverseData[index];
  670. newTemplateSettings = this.templateSettings;
  671. reverseTypeObj = newTemplateSettings.reverse[oldData.type+'s'];
  672. realIndex = reverseTypeObj.findIndex(r => r.tag==oldData.tag && r.domain==oldData.domain);
  673. newTemplateSettings.reverse[oldData.type+'s'].splice(realIndex,1);
  674. // delete empty objects
  675. if(reverseTypeObj.length == 0) Reflect.deleteProperty(newTemplateSettings.reverse, oldData.type+'s');
  676. if(Object.keys(newTemplateSettings.reverse).length === 0) Reflect.deleteProperty(newTemplateSettings, 'reverse');
  677. // delete related routing rules
  678. newRules = newTemplateSettings.routing.rules;
  679. if(oldData.type == "bridge"){
  680. newRules = newTemplateSettings.routing.rules.filter(r => !( r.inboundTag && r.inboundTag.length == 1 && r.inboundTag[0] == oldData.tag));
  681. } else if(oldData.type == "portal"){
  682. newRules = newTemplateSettings.routing.rules.filter(r => r.outboundTag != oldData.tag);
  683. }
  684. newTemplateSettings.routing.rules = newRules;
  685. this.templateSettings = newTemplateSettings;
  686. },
  687. async refreshOutboundTraffic() {
  688. if (!this.refreshing) {
  689. this.refreshing = true;
  690. await this.getOutboundsTraffic();
  691. data = []
  692. if (this.templateSettings != null) {
  693. this.templateSettings.outbounds.forEach((o, index) => {
  694. data.push({'key': index, ...o});
  695. });
  696. }
  697. this.outboundData = data;
  698. this.refreshing = false;
  699. }
  700. },
  701. async resetOutboundTraffic(index) {
  702. let tag = "-alltags-";
  703. if (index >= 0) {
  704. tag = this.outboundData[index].tag ? this.outboundData[index].tag : ""
  705. }
  706. const msg = await HttpUtil.post("/panel/xray/resetOutboundsTraffic", { tag: tag });
  707. if (msg.success) {
  708. await this.refreshOutboundTraffic();
  709. }
  710. },
  711. addBalancer() {
  712. balancerModal.show({
  713. title: '{{ i18n "pages.xray.balancer.addBalancer"}}',
  714. okText: '{{ i18n "pages.xray.balancer.addBalancer"}}',
  715. balancerTags: this.balancersData.filter((o) => !ObjectUtil.isEmpty(o.tag)).map(obj => obj.tag),
  716. balancer: {
  717. tag: '',
  718. strategy: 'random',
  719. selector: [],
  720. fallbackTag: ''
  721. },
  722. confirm: (balancer) => {
  723. balancerModal.loading();
  724. newTemplateSettings = this.templateSettings;
  725. if (newTemplateSettings.routing.balancers == undefined) {
  726. newTemplateSettings.routing.balancers = [];
  727. }
  728. let tmpBalancer = {
  729. 'tag': balancer.tag,
  730. 'selector': balancer.selector,
  731. 'fallbackTag': balancer.fallbackTag
  732. };
  733. if (balancer.strategy && balancer.strategy != 'random') {
  734. tmpBalancer.strategy = {
  735. 'type': balancer.strategy
  736. };
  737. }
  738. newTemplateSettings.routing.balancers.push(tmpBalancer);
  739. this.templateSettings = newTemplateSettings;
  740. this.updateObservatorySelectors();
  741. balancerModal.close();
  742. this.changeObsCode();
  743. },
  744. isEdit: false
  745. });
  746. },
  747. editBalancer(index) {
  748. const oldTag = this.balancersData[index].tag;
  749. balancerModal.show({
  750. title: '{{ i18n "pages.xray.balancer.editBalancer"}}',
  751. okText: '{{ i18n "sure" }}',
  752. balancerTags: this.balancersData.filter((o) => !ObjectUtil.isEmpty(o.tag)).map(obj => obj.tag),
  753. balancer: this.balancersData[index],
  754. confirm: (balancer) => {
  755. balancerModal.loading();
  756. newTemplateSettings = this.templateSettings;
  757. let tmpBalancer = {
  758. 'tag': balancer.tag,
  759. 'selector': balancer.selector,
  760. 'fallbackTag': balancer.fallbackTag
  761. };
  762. // Remove old tag
  763. if (newTemplateSettings.observatory){
  764. newTemplateSettings.observatory.subjectSelector = newTemplateSettings.observatory.subjectSelector.filter(s => s != oldTag);
  765. }
  766. if (newTemplateSettings.burstObservatory){
  767. newTemplateSettings.burstObservatory.subjectSelector = newTemplateSettings.burstObservatory.subjectSelector.filter(s => s != oldTag);
  768. }
  769. if (balancer.strategy && balancer.strategy != 'random') {
  770. tmpBalancer.strategy = {
  771. 'type': balancer.strategy
  772. };
  773. }
  774. newTemplateSettings.routing.balancers[index] = tmpBalancer;
  775. // change edited tag if used in rule section
  776. if (oldTag != balancer.tag) {
  777. newTemplateSettings.routing.rules.forEach((rule) => {
  778. if (rule.balancerTag && rule.balancerTag == oldTag) {
  779. rule.balancerTag = balancer.tag;
  780. }
  781. });
  782. }
  783. this.templateSettings = newTemplateSettings;
  784. this.updateObservatorySelectors();
  785. balancerModal.close();
  786. this.changeObsCode();
  787. },
  788. isEdit: true
  789. });
  790. },
  791. updateObservatorySelectors(){
  792. newTemplateSettings = this.templateSettings;
  793. const leastPings = this.balancersData.filter((b) => b.strategy == 'leastPing');
  794. const leastLoads = this.balancersData.filter((b) =>
  795. b.strategy === 'leastLoad' ||
  796. b.strategy === 'roundRobin' ||
  797. b.strategy === 'random'
  798. );
  799. if (leastPings.length>0){
  800. if (!newTemplateSettings.observatory)
  801. newTemplateSettings.observatory = this.defaultObservatory;
  802. newTemplateSettings.observatory.subjectSelector = [];
  803. leastPings.forEach((b) => {
  804. b.selector.forEach((s) => {
  805. if (!newTemplateSettings.observatory.subjectSelector.includes(s))
  806. newTemplateSettings.observatory.subjectSelector.push(s);
  807. });
  808. });
  809. } else {
  810. delete newTemplateSettings.observatory
  811. }
  812. if (leastLoads.length>0){
  813. if (!newTemplateSettings.burstObservatory)
  814. newTemplateSettings.burstObservatory = this.defaultBurstObservatory;
  815. newTemplateSettings.burstObservatory.subjectSelector = [];
  816. leastLoads.forEach((b) => {
  817. b.selector.forEach((s) => {
  818. if (!newTemplateSettings.burstObservatory.subjectSelector.includes(s))
  819. newTemplateSettings.burstObservatory.subjectSelector.push(s);
  820. });
  821. });
  822. } else {
  823. delete newTemplateSettings.burstObservatory
  824. }
  825. this.templateSettings = newTemplateSettings;
  826. this.changeObsCode();
  827. },
  828. deleteBalancer(index) {
  829. newTemplateSettings = this.templateSettings;
  830. // Remove from balancers
  831. const removedBalancer = this.balancersData.splice(index, 1)[0];
  832. // Remove from settings
  833. let realIndex = newTemplateSettings.routing.balancers.findIndex((b) => b.tag === removedBalancer.tag);
  834. newTemplateSettings.routing.balancers.splice(realIndex, 1);
  835. // Update balancers property to an empty array if there are no more balancers
  836. if (newTemplateSettings.routing.balancers.length === 0) {
  837. delete newTemplateSettings.routing.balancers;
  838. }
  839. this.templateSettings = newTemplateSettings;
  840. this.updateObservatorySelectors();
  841. this.obsSettings = '';
  842. this.changeObsCode()
  843. },
  844. addDNSServer(){
  845. dnsModal.show({
  846. title: '{{ i18n "pages.xray.dns.add" }}',
  847. confirm: (dnsServer) => {
  848. dnsServers = this.dnsServers;
  849. dnsServers.push(dnsServer);
  850. this.dnsServers = dnsServers;
  851. dnsModal.close();
  852. },
  853. isEdit: false
  854. });
  855. },
  856. editDNSServer(index){
  857. dnsModal.show({
  858. title: '{{ i18n "pages.xray.dns.edit" }} #' + (index+1),
  859. dnsServer: this.dnsServers[index],
  860. confirm: (dnsServer) => {
  861. dnsServers = this.dnsServers;
  862. dnsServers[index] = dnsServer;
  863. this.dnsServers = dnsServers;
  864. dnsModal.close();
  865. },
  866. isEdit: true
  867. });
  868. },
  869. deleteDNSServer(index){
  870. newDnsServers = this.dnsServers;
  871. newDnsServers.splice(index,1);
  872. this.dnsServers = newDnsServers;
  873. },
  874. addFakedns() {
  875. fakednsModal.show({
  876. title: '{{ i18n "pages.xray.fakedns.add" }}',
  877. confirm: (item) => {
  878. fakeDns = this.fakeDns?? [];
  879. fakeDns.push(item);
  880. this.fakeDns = fakeDns;
  881. fakednsModal.close();
  882. },
  883. isEdit: false
  884. });
  885. },
  886. editFakedns(index){
  887. fakednsModal.show({
  888. title: '{{ i18n "pages.xray.fakedns.edit" }} #' + (index+1),
  889. fakeDns: this.fakeDns[index],
  890. confirm: (item) => {
  891. fakeDns = this.fakeDns;
  892. fakeDns[index] = item;
  893. this.fakeDns = fakeDns;
  894. fakednsModal.close();
  895. },
  896. isEdit: true
  897. });
  898. },
  899. deleteFakedns(index){
  900. fakeDns = this.fakeDns;
  901. fakeDns.splice(index,1);
  902. this.fakeDns = fakeDns;
  903. },
  904. addRule(){
  905. ruleModal.show({
  906. title: '{{ i18n "pages.xray.rules.add"}}',
  907. okText: '{{ i18n "pages.xray.rules.add" }}',
  908. confirm: (rule) => {
  909. ruleModal.loading();
  910. if(JSON.stringify(rule).length > 3){
  911. this.templateSettings.routing.rules.push(rule);
  912. this.routingRuleSettings = JSON.stringify(this.templateSettings.routing.rules);
  913. }
  914. ruleModal.close();
  915. },
  916. isEdit: false
  917. });
  918. },
  919. editRule(index){
  920. ruleModal.show({
  921. title: '{{ i18n "pages.xray.rules.edit"}} ' + (index+1),
  922. rule: app.templateSettings.routing.rules[index],
  923. confirm: (rule) => {
  924. ruleModal.loading();
  925. if(JSON.stringify(rule).length > 3){
  926. this.templateSettings.routing.rules[index] = rule;
  927. this.routingRuleSettings = JSON.stringify(this.templateSettings.routing.rules);
  928. }
  929. ruleModal.close();
  930. },
  931. isEdit: true
  932. });
  933. },
  934. replaceRule(old_index,new_index){
  935. rules = this.templateSettings.routing.rules;
  936. if (new_index >= rules.length) rules.push(undefined);
  937. rules.splice(new_index, 0, rules.splice(old_index, 1)[0]);
  938. this.routingRuleSettings = JSON.stringify(rules);
  939. },
  940. deleteRule(index){
  941. rules = this.templateSettings.routing.rules;
  942. rules.splice(index,1);
  943. this.routingRuleSettings = JSON.stringify(rules);
  944. },
  945. showWarp(){
  946. warpModal.show();
  947. }
  948. },
  949. async mounted() {
  950. if (window.location.protocol !== "https:") {
  951. this.showAlert = true;
  952. }
  953. await this.getXraySetting();
  954. await this.getXrayResult();
  955. await this.getOutboundsTraffic();
  956. while (true) {
  957. await PromiseUtil.sleep(800);
  958. this.saveBtnDisable = this.oldXraySetting === this.xraySetting;
  959. }
  960. },
  961. computed: {
  962. templateSettings: {
  963. get: function () {
  964. const parsedSettings = this.xraySetting ? JSON.parse(this.xraySetting) : null;
  965. return parsedSettings;
  966. },
  967. set: function (newValue) {
  968. if (newValue) {
  969. this.xraySetting = JSON.stringify(newValue, null, 2);
  970. }
  971. },
  972. },
  973. inboundSettings: {
  974. get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.inbounds, null, 2) : null; },
  975. set: function (newValue) {
  976. newTemplateSettings = this.templateSettings;
  977. newTemplateSettings.inbounds = JSON.parse(newValue);
  978. this.templateSettings = newTemplateSettings;
  979. },
  980. },
  981. outboundSettings: {
  982. get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.outbounds, null, 2) : null; },
  983. set: function (newValue) {
  984. newTemplateSettings = this.templateSettings;
  985. newTemplateSettings.outbounds = JSON.parse(newValue);
  986. this.templateSettings = newTemplateSettings;
  987. },
  988. },
  989. outboundData: {
  990. get: function () {
  991. data = []
  992. if (this.templateSettings != null) {
  993. this.templateSettings.outbounds.forEach((o, index) => {
  994. data.push({'key': index, ...o});
  995. });
  996. }
  997. return data;
  998. },
  999. },
  1000. reverseData: {
  1001. get: function () {
  1002. data = []
  1003. if (this.templateSettings != null && this.templateSettings.reverse != null) {
  1004. if(this.templateSettings.reverse.bridges) {
  1005. this.templateSettings.reverse.bridges.forEach((o, index) => {
  1006. data.push({'key': index, 'type':'bridge', ...o});
  1007. });
  1008. }
  1009. if(this.templateSettings.reverse.portals){
  1010. this.templateSettings.reverse.portals.forEach((o, index) => {
  1011. data.push({'key': index, 'type':'portal', ...o});
  1012. });
  1013. }
  1014. }
  1015. return data;
  1016. },
  1017. },
  1018. routingRuleSettings: {
  1019. get: function () { return this.templateSettings ? JSON.stringify(this.templateSettings.routing.rules, null, 2) : null; },
  1020. set: function (newValue) {
  1021. newTemplateSettings = this.templateSettings;
  1022. newTemplateSettings.routing.rules = JSON.parse(newValue);
  1023. this.templateSettings = newTemplateSettings;
  1024. },
  1025. },
  1026. routingRuleData: {
  1027. get: function () {
  1028. data = [];
  1029. if (this.templateSettings != null) {
  1030. this.templateSettings.routing.rules.forEach((r, index) => {
  1031. data.push({'key': index, ...r});
  1032. });
  1033. // Make rules readable
  1034. data.forEach(r => {
  1035. if(r.domain) r.domain = r.domain.join(',')
  1036. if(r.ip) r.ip = r.ip.join(',')
  1037. if(r.source) r.source = r.source.join(',');
  1038. if(r.user) r.user = r.user.join(',')
  1039. if(r.inboundTag) r.inboundTag = r.inboundTag.join(',')
  1040. if(r.protocol) r.protocol = r.protocol.join(',')
  1041. if(r.attrs) r.attrs = JSON.stringify(r.attrs, null, 2)
  1042. });
  1043. }
  1044. return data;
  1045. }
  1046. },
  1047. balancersData: {
  1048. get: function () {
  1049. data = []
  1050. if (this.templateSettings != null && this.templateSettings.routing != null && this.templateSettings.routing.balancers != null) {
  1051. this.templateSettings.routing.balancers.forEach((o, index) => {
  1052. data.push({
  1053. 'key': index,
  1054. 'tag': o.tag ? o.tag : "",
  1055. 'strategy': o.strategy?.type ?? "random",
  1056. 'selector': o.selector ? o.selector : [],
  1057. 'fallbackTag': o.fallbackTag?? '',
  1058. });
  1059. });
  1060. }
  1061. return data;
  1062. }
  1063. },
  1064. observatory: {
  1065. get: function () {
  1066. return this.templateSettings?.observatory ? JSON.stringify(this.templateSettings.observatory, null, 2) : null;
  1067. },
  1068. set: function (newValue) {
  1069. newTemplateSettings = this.templateSettings;
  1070. newTemplateSettings.observatory = JSON.parse(newValue);
  1071. this.templateSettings = newTemplateSettings;
  1072. },
  1073. },
  1074. burstObservatory: {
  1075. get: function () {
  1076. return this.templateSettings?.burstObservatory ? JSON.stringify(this.templateSettings.burstObservatory, null, 2) : null;
  1077. },
  1078. set: function (newValue) {
  1079. newTemplateSettings = this.templateSettings;
  1080. newTemplateSettings.burstObservatory = JSON.parse(newValue);
  1081. this.templateSettings = newTemplateSettings;
  1082. },
  1083. },
  1084. observatoryEnable: function () { return this.templateSettings != null && this.templateSettings.observatory != undefined },
  1085. burstObservatoryEnable: function () { return this.templateSettings != null && this.templateSettings.burstObservatory != undefined },
  1086. freedomStrategy: {
  1087. get: function () {
  1088. if (!this.templateSettings) return "AsIs";
  1089. freedomOutbound = this.templateSettings.outbounds.find((o) => o.protocol === "freedom" && o.tag == "direct");
  1090. if (!freedomOutbound) return "AsIs";
  1091. if (!freedomOutbound.settings || !freedomOutbound.settings.domainStrategy) return "AsIs";
  1092. return freedomOutbound.settings.domainStrategy;
  1093. },
  1094. set: function (newValue) {
  1095. newTemplateSettings = this.templateSettings;
  1096. freedomOutboundIndex = newTemplateSettings.outbounds.findIndex((o) => o.protocol === "freedom" && o.tag == "direct");
  1097. if(freedomOutboundIndex == -1){
  1098. newTemplateSettings.outbounds.push({protocol: "freedom", tag: "direct", settings: { "domainStrategy": newValue }});
  1099. } else if (!newTemplateSettings.outbounds[freedomOutboundIndex].settings) {
  1100. newTemplateSettings.outbounds[freedomOutboundIndex].settings = {"domainStrategy": newValue};
  1101. } else {
  1102. newTemplateSettings.outbounds[freedomOutboundIndex].settings.domainStrategy = newValue;
  1103. }
  1104. this.templateSettings = newTemplateSettings;
  1105. }
  1106. },
  1107. routingStrategy: {
  1108. get: function () {
  1109. if (!this.templateSettings || !this.templateSettings.routing || !this.templateSettings.routing.domainStrategy) return "AsIs";
  1110. return this.templateSettings.routing.domainStrategy;
  1111. },
  1112. set: function (newValue) {
  1113. newTemplateSettings = this.templateSettings;
  1114. newTemplateSettings.routing.domainStrategy = newValue;
  1115. this.templateSettings = newTemplateSettings;
  1116. }
  1117. },
  1118. logLevel: {
  1119. get: function () {
  1120. if (!this.templateSettings || !this.templateSettings.log || !this.templateSettings.log.loglevel) return "warning";
  1121. return this.templateSettings.log.loglevel;
  1122. },
  1123. set: function (newValue) {
  1124. newTemplateSettings = this.templateSettings;
  1125. newTemplateSettings.log.loglevel = newValue;
  1126. this.templateSettings = newTemplateSettings;
  1127. }
  1128. },
  1129. accessLog: {
  1130. get: function () {
  1131. if (!this.templateSettings || !this.templateSettings.log || !this.templateSettings.log.access) return "";
  1132. return this.templateSettings.log.access;
  1133. },
  1134. set: function (newValue) {
  1135. newTemplateSettings = this.templateSettings;
  1136. newTemplateSettings.log.access = newValue;
  1137. this.templateSettings = newTemplateSettings;
  1138. }
  1139. },
  1140. errorLog: {
  1141. get: function () {
  1142. if (!this.templateSettings || !this.templateSettings.log || !this.templateSettings.log.error) return "";
  1143. return this.templateSettings.log.error;
  1144. },
  1145. set: function (newValue) {
  1146. newTemplateSettings = this.templateSettings;
  1147. newTemplateSettings.log.error = newValue;
  1148. this.templateSettings = newTemplateSettings;
  1149. }
  1150. },
  1151. dnslog: {
  1152. get: function () {
  1153. if (!this.templateSettings || !this.templateSettings.log || !this.templateSettings.log.dnsLog) return false;
  1154. return this.templateSettings.log.dnsLog;
  1155. },
  1156. set: function (newValue) {
  1157. newTemplateSettings = this.templateSettings;
  1158. newTemplateSettings.log.dnsLog = newValue;
  1159. this.templateSettings = newTemplateSettings;
  1160. }
  1161. },
  1162. statsInboundUplink: {
  1163. get: function () {
  1164. if (!this.templateSettings || !this.templateSettings.policy.system || !this.templateSettings.policy.system.statsInboundUplink) return false;
  1165. return this.templateSettings.policy.system.statsInboundUplink;
  1166. },
  1167. set: function (newValue) {
  1168. newTemplateSettings = this.templateSettings;
  1169. newTemplateSettings.policy.system.statsInboundUplink = newValue;
  1170. this.templateSettings = newTemplateSettings;
  1171. }
  1172. },
  1173. statsInboundDownlink: {
  1174. get: function () {
  1175. if (!this.templateSettings || !this.templateSettings.policy.system || !this.templateSettings.policy.system.statsInboundDownlink) return false;
  1176. return this.templateSettings.policy.system.statsInboundDownlink;
  1177. },
  1178. set: function (newValue) {
  1179. newTemplateSettings = this.templateSettings;
  1180. newTemplateSettings.policy.system.statsInboundDownlink = newValue;
  1181. this.templateSettings = newTemplateSettings;
  1182. }
  1183. },
  1184. statsOutboundUplink: {
  1185. get: function () {
  1186. if (!this.templateSettings || !this.templateSettings.policy.system || !this.templateSettings.policy.system.statsOutboundUplink) return false;
  1187. return this.templateSettings.policy.system.statsOutboundUplink;
  1188. },
  1189. set: function (newValue) {
  1190. newTemplateSettings = this.templateSettings;
  1191. newTemplateSettings.policy.system.statsOutboundUplink = newValue;
  1192. this.templateSettings = newTemplateSettings;
  1193. }
  1194. },
  1195. statsOutboundDownlink: {
  1196. get: function () {
  1197. if (!this.templateSettings || !this.templateSettings.policy.system || !this.templateSettings.policy.system.statsOutboundDownlink) return false;
  1198. return this.templateSettings.policy.system.statsOutboundDownlink;
  1199. },
  1200. set: function (newValue) {
  1201. newTemplateSettings = this.templateSettings;
  1202. newTemplateSettings.policy.system.statsOutboundDownlink = newValue;
  1203. this.templateSettings = newTemplateSettings;
  1204. }
  1205. },
  1206. maskAddressLog: {
  1207. get: function () {
  1208. if (!this.templateSettings || !this.templateSettings.log || !this.templateSettings.log.maskAddress) return "";
  1209. return this.templateSettings.log.maskAddress;
  1210. },
  1211. set: function (newValue) {
  1212. newTemplateSettings = this.templateSettings;
  1213. newTemplateSettings.log.maskAddress = newValue;
  1214. this.templateSettings = newTemplateSettings;
  1215. }
  1216. },
  1217. blockedIPs: {
  1218. get: function () {
  1219. return this.templateRuleGetter({ outboundTag: "blocked", property: "ip" });
  1220. },
  1221. set: function (newValue) {
  1222. this.templateRuleSetter({ outboundTag: "blocked", property: "ip", data: newValue });
  1223. }
  1224. },
  1225. blockedDomains: {
  1226. get: function () {
  1227. return this.templateRuleGetter({ outboundTag: "blocked", property: "domain" });
  1228. },
  1229. set: function (newValue) {
  1230. this.templateRuleSetter({ outboundTag: "blocked", property: "domain", data: newValue });
  1231. }
  1232. },
  1233. blockedProtocols: {
  1234. get: function () {
  1235. return this.templateRuleGetter({ outboundTag: "blocked", property: "protocol" });
  1236. },
  1237. set: function (newValue) {
  1238. this.templateRuleSetter({ outboundTag: "blocked", property: "protocol", data: newValue });
  1239. }
  1240. },
  1241. directIPs: {
  1242. get: function () {
  1243. return this.templateRuleGetter({ outboundTag: "direct", property: "ip" });
  1244. },
  1245. set: function (newValue) {
  1246. this.templateRuleSetter({ outboundTag: "direct", property: "ip", data: newValue });
  1247. this.syncRulesWithOutbound("direct", this.directSettings);
  1248. }
  1249. },
  1250. directDomains: {
  1251. get: function () {
  1252. return this.templateRuleGetter({ outboundTag: "direct", property: "domain" });
  1253. },
  1254. set: function (newValue) {
  1255. this.templateRuleSetter({ outboundTag: "direct", property: "domain", data: newValue });
  1256. this.syncRulesWithOutbound("direct", this.directSettings);
  1257. }
  1258. },
  1259. ipv4Domains: {
  1260. get: function () {
  1261. return this.templateRuleGetter({ outboundTag: "IPv4", property: "domain" });
  1262. },
  1263. set: function (newValue) {
  1264. this.templateRuleSetter({ outboundTag: "IPv4", property: "domain", data: newValue });
  1265. this.syncRulesWithOutbound("IPv4", this.ipv4Settings);
  1266. }
  1267. },
  1268. warpDomains: {
  1269. get: function () {
  1270. return this.templateRuleGetter({ outboundTag: "warp", property: "domain" });
  1271. },
  1272. set: function (newValue) {
  1273. this.templateRuleSetter({ outboundTag: "warp", property: "domain", data: newValue });
  1274. }
  1275. },
  1276. torrentSettings: {
  1277. get: function () {
  1278. return ArrayUtils.doAllItemsExist(this.settingsData.protocols.bittorrent, this.blockedProtocols);
  1279. },
  1280. set: function (newValue) {
  1281. if (newValue) {
  1282. this.blockedProtocols = [...this.blockedProtocols, ...this.settingsData.protocols.bittorrent];
  1283. } else {
  1284. this.blockedProtocols = this.blockedProtocols.filter(data => !this.settingsData.protocols.bittorrent.includes(data));
  1285. }
  1286. },
  1287. },
  1288. familyProtectSettings: {
  1289. get: function () {
  1290. if (!this.templateSettings || !this.templateSettings.dns || !this.templateSettings.dns.servers) return false;
  1291. return ArrayUtils.doAllItemsExist(this.settingsData.familyProtectDNS.servers, this.templateSettings.dns.servers);
  1292. },
  1293. set: function (newValue) {
  1294. newTemplateSettings = this.templateSettings;
  1295. if (newValue) {
  1296. newTemplateSettings.dns = this.settingsData.familyProtectDNS;
  1297. } else {
  1298. newTemplateSettings.dns.servers = newTemplateSettings.dns?.servers?.filter(data => !this.settingsData.familyProtectDNS.servers.includes(data))
  1299. }
  1300. this.templateSettings = newTemplateSettings;
  1301. },
  1302. },
  1303. WarpExist: {
  1304. get: function() {
  1305. return this.templateSettings ? this.templateSettings.outbounds.findIndex((o) => o.tag == "warp")>=0 : false;
  1306. },
  1307. },
  1308. enableDNS: {
  1309. get: function () {
  1310. return this.templateSettings ? this.templateSettings.dns != null : false;
  1311. },
  1312. set: function (newValue) {
  1313. newTemplateSettings = this.templateSettings;
  1314. if (newValue) {
  1315. newTemplateSettings.dns = {
  1316. servers: [],
  1317. queryStrategy: "UseIP",
  1318. tag: "dns_inbound"
  1319. };
  1320. newTemplateSettings.fakedns = null;
  1321. } else {
  1322. delete newTemplateSettings.dns;
  1323. delete newTemplateSettings.fakedns;
  1324. }
  1325. this.templateSettings = newTemplateSettings;
  1326. }
  1327. },
  1328. dnsTag: {
  1329. get: function () {
  1330. return this.enableDNS ? this.templateSettings.dns.tag : "";
  1331. },
  1332. set: function (newValue) {
  1333. newTemplateSettings = this.templateSettings;
  1334. newTemplateSettings.dns.tag = newValue;
  1335. this.templateSettings = newTemplateSettings;
  1336. }
  1337. },
  1338. dnsClientIp: {
  1339. get: function () {
  1340. return this.enableDNS ? this.templateSettings.dns.clientIp : null;
  1341. },
  1342. set: function (newValue) {
  1343. newTemplateSettings = this.templateSettings;
  1344. if (newValue) {
  1345. newTemplateSettings.dns.clientIp = newValue;
  1346. } else {
  1347. delete newTemplateSettings.dns.clientIp;
  1348. }
  1349. this.templateSettings = newTemplateSettings;
  1350. }
  1351. },
  1352. dnsDisableCache: {
  1353. get: function () {
  1354. return this.enableDNS ? this.templateSettings.dns.disableCache : false;
  1355. },
  1356. set: function (newValue) {
  1357. newTemplateSettings = this.templateSettings;
  1358. if (newValue) {
  1359. newTemplateSettings.dns.disableCache = newValue;
  1360. } else {
  1361. delete newTemplateSettings.dns.disableCache
  1362. }
  1363. this.templateSettings = newTemplateSettings;
  1364. }
  1365. },
  1366. dnsDisableFallback: {
  1367. get: function () {
  1368. return this.enableDNS ? this.templateSettings.dns.disableFallback : false;
  1369. },
  1370. set: function (newValue) {
  1371. newTemplateSettings = this.templateSettings;
  1372. if (newValue) {
  1373. newTemplateSettings.dns.disableFallback = newValue;
  1374. } else {
  1375. delete newTemplateSettings.dns.disableFallback
  1376. }
  1377. this.templateSettings = newTemplateSettings;
  1378. }
  1379. },
  1380. dnsDisableFallbackIfMatch: {
  1381. get: function () {
  1382. return this.enableDNS ? this.templateSettings.dns.disableFallbackIfMatch : false;
  1383. },
  1384. set: function (newValue) {
  1385. newTemplateSettings = this.templateSettings;
  1386. if (newValue) {
  1387. newTemplateSettings.dns.disableFallbackIfMatch = newValue;
  1388. } else {
  1389. delete newTemplateSettings.dns.disableFallbackIfMatch
  1390. }
  1391. this.templateSettings = newTemplateSettings;
  1392. }
  1393. },
  1394. dnsStrategy: {
  1395. get: function () {
  1396. return this.enableDNS ? this.templateSettings.dns.queryStrategy : null;
  1397. },
  1398. set: function (newValue) {
  1399. newTemplateSettings = this.templateSettings;
  1400. newTemplateSettings.dns.queryStrategy = newValue;
  1401. this.templateSettings = newTemplateSettings;
  1402. }
  1403. },
  1404. dnsServers: {
  1405. get: function () { return this.enableDNS ? this.templateSettings.dns.servers : []; },
  1406. set: function (newValue) {
  1407. newTemplateSettings = this.templateSettings;
  1408. newTemplateSettings.dns.servers = newValue;
  1409. this.templateSettings = newTemplateSettings;
  1410. }
  1411. },
  1412. fakeDns: {
  1413. get: function () { return this.templateSettings && this.templateSettings.fakedns ? this.templateSettings.fakedns : []; },
  1414. set: function (newValue) {
  1415. newTemplateSettings = this.templateSettings;
  1416. if (this.enableDNS) {
  1417. newTemplateSettings.fakedns = newValue.length > 0 ? newValue : null;
  1418. } else {
  1419. delete newTemplateSettings.fakedns;
  1420. }
  1421. this.templateSettings = newTemplateSettings;
  1422. }
  1423. }
  1424. },
  1425. });
  1426. </script>
  1427. </body>
  1428. </html>