settings.html 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {{template "head" .}}
  4. <style>
  5. @media (min-width: 769px) {
  6. .ant-layout-content {
  7. margin: 24px 16px;
  8. }
  9. }
  10. @media (max-width: 768px) {
  11. .ant-tabs-nav .ant-tabs-tab {
  12. margin: 0;
  13. padding: 12px .5rem;
  14. }
  15. }
  16. .ant-tabs-bar {
  17. margin: 0;
  18. }
  19. .ant-list-item {
  20. display: block;
  21. }
  22. .alert-msg {
  23. color: rgb(194, 117, 18);
  24. font-weight: normal;
  25. font-size: 16px;
  26. padding: .5rem 1rem;
  27. text-align: center;
  28. background: rgb(255 145 0 / 15%);
  29. margin: 1.5rem 2.5rem 0rem;
  30. border-radius: .5rem;
  31. transition: all 0.5s;
  32. animation: signal 3s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;
  33. }
  34. .alert-msg:hover {
  35. cursor: default;
  36. transition-duration: .3s;
  37. animation: signal 0.9s ease infinite;
  38. }
  39. @keyframes signal {
  40. 0% {
  41. box-shadow: 0 0 0 0 rgba(194, 118, 18, 0.5);
  42. }
  43. 50% {
  44. box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  45. }
  46. 100% {
  47. box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
  48. }
  49. }
  50. .alert-msg>i {
  51. color: inherit;
  52. font-size: 24px;
  53. }
  54. </style>
  55. <body>
  56. <a-layout id="app" v-cloak :class="themeSwitcher.currentTheme">
  57. <a-sidebar></a-sidebar>
  58. <a-layout id="content-layout">
  59. <a-layout-content>
  60. <a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
  61. <transition name="list" appear>
  62. <a-alert type="error" v-if="confAlerts.length>0" style="margin-bottom: 10px;"
  63. message='{{ i18n "secAlertTitle" }}'
  64. color="red"
  65. show-icon closable>
  66. <template slot="description">
  67. <b>{{ i18n "secAlertConf" }}</b>
  68. <ul><li v-for="a in confAlerts">[[ a ]]</li></ul>
  69. </template>
  70. </a-alert>
  71. </transition>
  72. <a-space direction="vertical">
  73. <a-card hoverable style="margin-bottom: .5rem; overflow-x: hidden;">
  74. <a-row style="display: flex; flex-wrap: wrap; align-items: center;">
  75. <a-col :xs="24" :sm="10" style="padding: 4px;">
  76. <a-space direction="horizontal">
  77. <a-button type="primary" :disabled="saveBtnDisable" @click="updateAllSetting">{{ i18n "pages.settings.save" }}</a-button>
  78. <a-button type="danger" :disabled="!saveBtnDisable" @click="restartPanel">{{ i18n "pages.settings.restartPanel" }}</a-button>
  79. </a-space>
  80. </a-col>
  81. <a-col :xs="24" :sm="14">
  82. <template>
  83. <div>
  84. <a-back-top :target="() => document.getElementById('content-layout')" visibility-height="200"></a-back-top>
  85. <a-alert type="warning" style="float: right; width: fit-content"
  86. message='{{ i18n "pages.settings.infoDesc" }}'
  87. show-icon>
  88. </a-alert>
  89. </div>
  90. </template>
  91. </a-col>
  92. </a-row>
  93. </a-card>
  94. <a-tabs default-active-key="1">
  95. <a-tab-pane key="1" tab='{{ i18n "pages.settings.panelSettings" }}' style="padding-top: 20px;">
  96. {{ template "settings/panel/general" . }}
  97. </a-tab-pane>
  98. <a-tab-pane key="2" tab='{{ i18n "pages.settings.securitySettings" }}' style="padding-top: 20px;">
  99. {{ template "settings/panel/security" . }}
  100. </a-tab-pane>
  101. <a-tab-pane key="3" tab='{{ i18n "pages.settings.TGBotSettings" }}' style="padding-top: 20px;">
  102. {{ template "settings/panel/telegram" . }}
  103. </a-tab-pane>
  104. <a-tab-pane key="4" tab='{{ i18n "pages.settings.subSettings" }}' style="padding-top: 20px;">
  105. {{ template "settings/panel/subscription/general" . }}
  106. </a-tab-pane>
  107. <a-tab-pane key="5" tab='{{ i18n "pages.settings.subSettings" }} Json' v-if="allSetting.subEnable" style="padding-top: 20px;">
  108. {{ template "settings/panel/subscription/json" . }}
  109. </a-tab-pane>
  110. </a-tabs>
  111. </a-space>
  112. </a-spin>
  113. </a-layout-content>
  114. </a-layout>
  115. </a-layout>
  116. {{template "js" .}}
  117. <script src="{{ .base_path }}assets/js/model/setting.js?{{ .cur_ver }}"></script>
  118. {{template "component/aSidebar" .}}
  119. {{template "component/aThemeSwitch" .}}
  120. {{template "component/aPasswordInput" .}}
  121. {{template "component/aSettingListItem" .}}
  122. <script>
  123. const app = new Vue({
  124. delimiters: ['[[', ']]'],
  125. el: '#app',
  126. data: {
  127. themeSwitcher,
  128. spinning: false,
  129. changeSecret: false,
  130. oldAllSetting: new AllSetting(),
  131. allSetting: new AllSetting(),
  132. saveBtnDisable: true,
  133. user: {},
  134. lang: LanguageManager.getLanguage(),
  135. remarkModels: { i: 'Inbound', e: 'Email', o: 'Other' },
  136. remarkSeparators: [' ', '-', '_', '@', ':', '~', '|', ',', '.', '/'],
  137. datepickerList: [{ name: 'Gregorian (Standard)', value: 'gregorian' }, { name: 'Jalalian (شمسی)', value: 'jalalian' }],
  138. remarkSample: '',
  139. defaultFragment: {
  140. tag: "fragment",
  141. protocol: "freedom",
  142. settings: {
  143. domainStrategy: "AsIs",
  144. fragment: {
  145. packets: "tlshello",
  146. length: "100-200",
  147. interval: "10-20"
  148. }
  149. },
  150. streamSettings: {
  151. sockopt: {
  152. tcpKeepAliveIdle: 100,
  153. tcpMptcp: true,
  154. penetrate: true
  155. }
  156. }
  157. },
  158. defaultNoises: {
  159. tag: "noises",
  160. protocol: "freedom",
  161. settings: {
  162. domainStrategy: "AsIs",
  163. noises: [
  164. { type: "rand", packet: "10-20", delay: "10-16" },
  165. ],
  166. },
  167. },
  168. defaultMux: {
  169. enabled: true,
  170. concurrency: 8,
  171. xudpConcurrency: 16,
  172. xudpProxyUDP443: "reject"
  173. },
  174. defaultRules: [
  175. {
  176. type: "field",
  177. outboundTag: "direct",
  178. domain: [
  179. "geosite:category-ir"
  180. ]
  181. },
  182. {
  183. type: "field",
  184. outboundTag: "direct",
  185. ip: [
  186. "geoip:private",
  187. "geoip:ir"
  188. ]
  189. },
  190. ],
  191. directIPsOptions: [
  192. { label: 'Private IP', value: 'geoip:private' },
  193. { label: '🇮🇷 Iran', value: 'geoip:ir' },
  194. { label: '🇨🇳 China', value: 'geoip:cn' },
  195. { label: '🇷🇺 Russia', value: 'geoip:ru' },
  196. { label: '🇻🇳 Vietnam', value: 'geoip:vn' },
  197. { label: '🇪🇸 Spain', value: 'geoip:es' },
  198. { label: '🇮🇩 Indonesia', value: 'geoip:id' },
  199. { label: '🇺🇦 Ukraine', value: 'geoip:ua' },
  200. { label: '🇹🇷 Türkiye', value: 'geoip:tr' },
  201. { label: '🇧🇷 Brazil', value: 'geoip:br' },
  202. ],
  203. diretDomainsOptions: [
  204. { label: 'Private DNS', value: 'geosite:private' },
  205. { label: '🇮🇷 Iran', value: 'geosite:category-ir' },
  206. { label: '🇨🇳 China', value: 'geosite:cn' },
  207. { label: '🇷🇺 Russia', value: 'geosite:category-ru' },
  208. { label: 'Apple', value: 'geosite:apple' },
  209. { label: 'Meta', value: 'geosite:meta' },
  210. { label: 'Google', value: 'geosite:google' },
  211. ],
  212. get remarkModel() {
  213. rm = this.allSetting.remarkModel;
  214. return rm.length > 1 ? rm.substring(1).split('') : [];
  215. },
  216. set remarkModel(value) {
  217. rs = this.allSetting.remarkModel[0];
  218. this.allSetting.remarkModel = rs + value.join('');
  219. this.changeRemarkSample();
  220. },
  221. get remarkSeparator() {
  222. return this.allSetting.remarkModel.length > 1 ? this.allSetting.remarkModel.charAt(0) : '-';
  223. },
  224. set remarkSeparator(value) {
  225. this.allSetting.remarkModel = value + this.allSetting.remarkModel.substring(1);
  226. this.changeRemarkSample();
  227. },
  228. get datepicker() {
  229. return this.allSetting.datepicker ? this.allSetting.datepicker : 'gregorian';
  230. },
  231. set datepicker(value) {
  232. this.allSetting.datepicker = value;
  233. },
  234. changeRemarkSample() {
  235. sample = []
  236. this.remarkModel.forEach(r => sample.push(this.remarkModels[r]));
  237. this.remarkSample = sample.length == 0 ? '' : sample.join(this.remarkSeparator);
  238. }
  239. },
  240. methods: {
  241. loading(spinning = true) {
  242. this.spinning = spinning;
  243. },
  244. async getAllSetting() {
  245. this.loading(true);
  246. const msg = await HttpUtil.post("/panel/setting/all");
  247. this.loading(false);
  248. if (msg.success) {
  249. this.oldAllSetting = new AllSetting(msg.obj);
  250. this.allSetting = new AllSetting(msg.obj);
  251. app.changeRemarkSample();
  252. this.saveBtnDisable = true;
  253. }
  254. await this.fetchUserSecret();
  255. },
  256. async updateAllSetting() {
  257. this.loading(true);
  258. const msg = await HttpUtil.post("/panel/setting/update", this.allSetting);
  259. this.loading(false);
  260. if (msg.success) {
  261. await this.getAllSetting();
  262. }
  263. },
  264. async updateUser() {
  265. this.loading(true);
  266. const msg = await HttpUtil.post("/panel/setting/updateUser", this.user);
  267. this.loading(false);
  268. if (msg.success) {
  269. this.user = {};
  270. window.location.replace(basePath + "logout");
  271. }
  272. },
  273. async restartPanel() {
  274. await new Promise(resolve => {
  275. this.$confirm({
  276. title: '{{ i18n "pages.settings.restartPanel" }}',
  277. content: '{{ i18n "pages.settings.restartPanelDesc" }}',
  278. class: themeSwitcher.currentTheme,
  279. okText: '{{ i18n "sure" }}',
  280. cancelText: '{{ i18n "cancel" }}',
  281. onOk: () => resolve(),
  282. });
  283. });
  284. this.loading(true);
  285. const msg = await HttpUtil.post("/panel/setting/restartPanel");
  286. this.loading(false);
  287. if (msg.success) {
  288. this.loading(true);
  289. await PromiseUtil.sleep(5000);
  290. var { webCertFile, webKeyFile, webDomain: host, webPort: port, webBasePath: base } = this.allSetting;
  291. if (host == this.oldAllSetting.webDomain) host = null;
  292. if (port == this.oldAllSetting.webPort) port = null;
  293. const isTLS = webCertFile !== "" || webKeyFile !== "";
  294. const url = URLBuilder.buildURL({ host, port, isTLS, base, path: "panel/settings" });
  295. window.location.replace(url);
  296. }
  297. },
  298. async fetchUserSecret() {
  299. this.loading(true);
  300. const userMessage = await HttpUtil.post("/panel/setting/getUserSecret", this.user);
  301. if (userMessage.success) {
  302. this.user = userMessage.obj;
  303. }
  304. this.loading(false);
  305. },
  306. async updateSecret() {
  307. this.loading(true);
  308. const msg = await HttpUtil.post("/panel/setting/updateUserSecret", this.user);
  309. if (msg && msg.obj) {
  310. this.user = msg.obj;
  311. }
  312. this.loading(false);
  313. await this.updateAllSetting();
  314. },
  315. generateRandomString(length) {
  316. var chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
  317. let randomString = "";
  318. for (let i = 0; i < length; i++) {
  319. randomString += chars[Math.floor(Math.random() * chars.length)];
  320. }
  321. return randomString;
  322. },
  323. async getNewSecret() {
  324. if (!this.changeSecret) {
  325. this.changeSecret = true;
  326. this.user.loginSecret = '';
  327. const newSecret = this.generateRandomString(64);
  328. await PromiseUtil.sleep(1000);
  329. this.user.loginSecret = newSecret;
  330. this.changeSecret = false;
  331. }
  332. },
  333. async toggleToken(value) {
  334. if (value) {
  335. await this.getNewSecret();
  336. } else {
  337. this.user.loginSecret = "";
  338. }
  339. },
  340. addNoise() {
  341. const newNoise = { type: "rand", packet: "10-20", delay: "10-16" };
  342. this.noisesArray = [...this.noisesArray, newNoise];
  343. },
  344. removeNoise(index) {
  345. const newNoises = [...this.noisesArray];
  346. newNoises.splice(index, 1);
  347. this.noisesArray = newNoises;
  348. },
  349. updateNoiseType(index, value) {
  350. const updatedNoises = [...this.noisesArray];
  351. updatedNoises[index] = { ...updatedNoises[index], type: value };
  352. this.noisesArray = updatedNoises;
  353. },
  354. updateNoisePacket(index, value) {
  355. const updatedNoises = [...this.noisesArray];
  356. updatedNoises[index] = { ...updatedNoises[index], packet: value };
  357. this.noisesArray = updatedNoises;
  358. },
  359. updateNoiseDelay(index, value) {
  360. const updatedNoises = [...this.noisesArray];
  361. updatedNoises[index] = { ...updatedNoises[index], delay: value };
  362. this.noisesArray = updatedNoises;
  363. },
  364. },
  365. computed: {
  366. fragment: {
  367. get: function () { return this.allSetting?.subJsonFragment != ""; },
  368. set: function (v) {
  369. this.allSetting.subJsonFragment = v ? JSON.stringify(this.defaultFragment) : "";
  370. }
  371. },
  372. fragmentPackets: {
  373. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.packets : ""; },
  374. set: function (v) {
  375. if (v != "") {
  376. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  377. newFragment.settings.fragment.packets = v;
  378. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  379. }
  380. }
  381. },
  382. fragmentLength: {
  383. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.length : ""; },
  384. set: function (v) {
  385. if (v != "") {
  386. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  387. newFragment.settings.fragment.length = v;
  388. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  389. }
  390. }
  391. },
  392. fragmentInterval: {
  393. get: function () { return this.fragment ? JSON.parse(this.allSetting.subJsonFragment).settings.fragment.interval : ""; },
  394. set: function (v) {
  395. if (v != "") {
  396. newFragment = JSON.parse(this.allSetting.subJsonFragment);
  397. newFragment.settings.fragment.interval = v;
  398. this.allSetting.subJsonFragment = JSON.stringify(newFragment);
  399. }
  400. }
  401. },
  402. noises: {
  403. get() {
  404. return this.allSetting?.subJsonNoises != "";
  405. },
  406. set(v) {
  407. if (v) {
  408. this.allSetting.subJsonNoises = JSON.stringify(this.defaultNoises);
  409. } else {
  410. this.allSetting.subJsonNoises = "";
  411. }
  412. }
  413. },
  414. noisesArray: {
  415. get() {
  416. return this.noises ? JSON.parse(this.allSetting.subJsonNoises).settings.noises : [];
  417. },
  418. set(value) {
  419. if (this.noises) {
  420. const newNoises = JSON.parse(this.allSetting.subJsonNoises);
  421. newNoises.settings.noises = value;
  422. this.allSetting.subJsonNoises = JSON.stringify(newNoises);
  423. }
  424. }
  425. },
  426. enableMux: {
  427. get: function () { return this.allSetting?.subJsonMux != ""; },
  428. set: function (v) {
  429. this.allSetting.subJsonMux = v ? JSON.stringify(this.defaultMux) : "";
  430. }
  431. },
  432. muxConcurrency: {
  433. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).concurrency : -1; },
  434. set: function (v) {
  435. newMux = JSON.parse(this.allSetting.subJsonMux);
  436. newMux.concurrency = v;
  437. this.allSetting.subJsonMux = JSON.stringify(newMux);
  438. }
  439. },
  440. muxXudpConcurrency: {
  441. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).xudpConcurrency : -1; },
  442. set: function (v) {
  443. newMux = JSON.parse(this.allSetting.subJsonMux);
  444. newMux.xudpConcurrency = v;
  445. this.allSetting.subJsonMux = JSON.stringify(newMux);
  446. }
  447. },
  448. muxXudpProxyUDP443: {
  449. get: function () { return this.enableMux ? JSON.parse(this.allSetting.subJsonMux).xudpProxyUDP443 : "reject"; },
  450. set: function (v) {
  451. newMux = JSON.parse(this.allSetting.subJsonMux);
  452. newMux.xudpProxyUDP443 = v;
  453. this.allSetting.subJsonMux = JSON.stringify(newMux);
  454. }
  455. },
  456. enableDirect: {
  457. get: function () { return this.allSetting?.subJsonRules != ""; },
  458. set: function (v) {
  459. this.allSetting.subJsonRules = v ? JSON.stringify(this.defaultRules) : "";
  460. }
  461. },
  462. directIPs: {
  463. get: function () {
  464. if (!this.enableDirect) return [];
  465. const rules = JSON.parse(this.allSetting.subJsonRules);
  466. if (!Array.isArray(rules)) return [];
  467. const ipRule = rules.find(r => r.ip);
  468. return ipRule?.ip ?? [];
  469. },
  470. set: function (v) {
  471. let rules = JSON.parse(this.allSetting.subJsonRules);
  472. if (!Array.isArray(rules)) return;
  473. if (v.length == 0) {
  474. rules = rules.filter(r => !r.ip);
  475. } else {
  476. let ruleIndex = rules.findIndex(r => r.ip);
  477. if (ruleIndex == -1) ruleIndex = rules.push(this.defaultRules[1]) - 1;
  478. rules[ruleIndex].ip = [];
  479. v.forEach(d => {
  480. rules[ruleIndex].ip.push(d);
  481. });
  482. }
  483. this.allSetting.subJsonRules = JSON.stringify(rules);
  484. }
  485. },
  486. directDomains: {
  487. get: function () {
  488. if (!this.enableDirect) return [];
  489. const rules = JSON.parse(this.allSetting.subJsonRules);
  490. if (!Array.isArray(rules)) return [];
  491. const domainRule = rules.find(r => r.domain);
  492. return domainRule?.domain ?? [];
  493. },
  494. set: function (v) {
  495. let rules = JSON.parse(this.allSetting.subJsonRules);
  496. if (!Array.isArray(rules)) return;
  497. if (v.length == 0) {
  498. rules = rules.filter(r => !r.domain);
  499. } else {
  500. let ruleIndex = rules.findIndex(r => r.domain);
  501. if (ruleIndex == -1) ruleIndex = rules.push(this.defaultRules[0]) - 1;
  502. rules[ruleIndex].domain = v;
  503. }
  504. this.allSetting.subJsonRules = JSON.stringify(rules);
  505. }
  506. },
  507. confAlerts: {
  508. get: function () {
  509. if (!this.allSetting) return [];
  510. var alerts = []
  511. if (window.location.protocol !== "https:") alerts.push('{{ i18n "secAlertSSL" }}');
  512. if (this.allSetting.webPort == 54321) alerts.push('{{ i18n "secAlertPanelPort" }}');
  513. panelPath = window.location.pathname.split('/').length < 4
  514. if (panelPath && this.allSetting.webBasePath == '/') alerts.push('{{ i18n "secAlertPanelURI" }}');
  515. if (this.allSetting.subEnable) {
  516. subPath = this.allSetting.subURI.length > 0 ? new URL(this.allSetting.subURI).pathname : this.allSetting.subPath;
  517. if (subPath == '/sub/') alerts.push('{{ i18n "secAlertSubURI" }}');
  518. subJsonPath = this.allSetting.subJsonURI.length > 0 ? new URL(this.allSetting.subJsonURI).pathname : this.allSetting.subJsonPath;
  519. if (subJsonPath == '/json/') alerts.push('{{ i18n "secAlertSubJsonURI" }}');
  520. }
  521. return alerts
  522. }
  523. }
  524. },
  525. async mounted() {
  526. await this.getAllSetting();
  527. while (true) {
  528. await PromiseUtil.sleep(1000);
  529. this.saveBtnDisable = this.oldAllSetting.equals(this.allSetting);
  530. }
  531. }
  532. });
  533. </script>
  534. </body>
  535. </html>