index.html 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  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. .ant-card-hoverable {
  10. margin-inline: 0.3rem;
  11. }
  12. .ant-alert-error {
  13. margin-inline: 0.3rem;
  14. }
  15. }
  16. .ant-col-sm-24 {
  17. margin-top: 10px;
  18. }
  19. .ant-card-dark h2 {
  20. color: var(--dark-color-text-primary);
  21. }
  22. .ant-backup-list-item {
  23. gap: 10px;
  24. user-select: none;
  25. cursor: pointer;
  26. }
  27. .dark .ant-backup-list-item svg {
  28. color: var(--dark-color-text-primary);
  29. }
  30. .dark .ant-backup-list,
  31. .dark .ant-xray-version-list {
  32. border-color: var(--dark-color-stroke);
  33. }
  34. </style>
  35. <body>
  36. <a-layout id="app" v-cloak :class="themeSwitcher.currentTheme">
  37. {{ template "commonSider" . }}
  38. <a-layout id="content-layout">
  39. <a-layout-content>
  40. <a-spin :spinning="spinning" :delay="200" :tip="loadingTip">
  41. <transition name="list" appear>
  42. <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
  43. message='{{ i18n "secAlertTitle" }}'
  44. color="red"
  45. description='{{ i18n "secAlertSsl" }}'
  46. show-icon closable>
  47. </a-alert>
  48. </transition>
  49. <transition name="list" appear>
  50. <a-row>
  51. <a-card hoverable>
  52. <a-row>
  53. <a-col :sm="24" :md="12">
  54. <a-row>
  55. <a-col :span="12" style="text-align: center">
  56. <a-progress type="dashboard" status="normal"
  57. :stroke-color="status.cpu.color"
  58. :percent="status.cpu.percent"></a-progress>
  59. <div><b>CPU:</b> [[ CPUFormatter.cpuCoreFormat(status.cpuCores) ]] <a-tooltip>
  60. <a-icon type="area-chart"></a-icon>
  61. <template slot="title">
  62. <div><b>Logical Processors:</b> [[ (status.logicalPro) ]]</div>
  63. <div><b>Speed:</b> [[ CPUFormatter.cpuSpeedFormat(status.cpuSpeedMhz) ]]</div>
  64. </template>
  65. </a-tooltip></div>
  66. </a-col>
  67. <a-col :span="12" style="text-align: center">
  68. <a-progress type="dashboard" status="normal"
  69. :stroke-color="status.mem.color"
  70. :percent="status.mem.percent"></a-progress>
  71. <div>
  72. <b>{{ i18n "pages.index.memory"}}:</b> [[ SizeFormatter.sizeFormat(status.mem.current) ]] / [[ SizeFormatter.sizeFormat(status.mem.total) ]]
  73. </div>
  74. </a-col>
  75. </a-row>
  76. </a-col>
  77. <a-col :sm="24" :md="12">
  78. <a-row>
  79. <a-col :span="12" style="text-align: center">
  80. <a-progress type="dashboard" status="normal"
  81. :stroke-color="status.swap.color"
  82. :percent="status.swap.percent"></a-progress>
  83. <div>
  84. <b>Swap:</b> [[ SizeFormatter.sizeFormat(status.swap.current) ]] / [[ SizeFormatter.sizeFormat(status.swap.total) ]]
  85. </div>
  86. </a-col>
  87. <a-col :span="12" style="text-align: center">
  88. <a-progress type="dashboard" status="normal"
  89. :stroke-color="status.disk.color"
  90. :percent="status.disk.percent"></a-progress>
  91. <div>
  92. <b>{{ i18n "pages.index.hard"}}:</b> [[ SizeFormatter.sizeFormat(status.disk.current) ]] / [[ SizeFormatter.sizeFormat(status.disk.total) ]]
  93. </div>
  94. </a-col>
  95. </a-row>
  96. </a-col>
  97. </a-row>
  98. </a-card>
  99. </a-row>
  100. </transition>
  101. <transition name="list" appear>
  102. <a-row>
  103. <a-col :sm="24" :lg="12">
  104. <a-card hoverable>
  105. <b>3X-UI:</b>
  106. <a rel="noopener" href="https://github.com/MHSanaei/3x-ui/releases" target="_blank"><a-tag color="green">v{{ .cur_ver }}</a-tag></a>
  107. <a rel="noopener" href="https://t.me/XrayUI" target="_blank"><a-tag color="green">@XrayUI</a-tag></a>
  108. </a-card>
  109. </a-col>
  110. <a-col :sm="24" :lg="12">
  111. <a-card hoverable>
  112. <b>{{ i18n "pages.index.operationHours" }}:</b>
  113. <a-tag :color="status.xray.color">Xray: [[ TimeFormatter.formatSecond(status.appStats.uptime) ]]</a-tag>
  114. <a-tag color="green">OS: [[ TimeFormatter.formatSecond(status.uptime) ]]</a-tag>
  115. </a-card>
  116. </a-col>
  117. <a-col :sm="24" :lg="12">
  118. <a-card hoverable>
  119. <b>{{ i18n "pages.index.xrayStatus" }}:</b>
  120. <a-tag style="text-transform: capitalize;" :color="status.xray.color">[[ status.xray.state ]] </a-tag>
  121. <a-popover v-if="status.xray.state === State.Error" :overlay-class-name="themeSwitcher.currentTheme">
  122. <span slot="title" style="font-size: 12pt">An error occurred while running Xray
  123. <a-tag color="purple" style="cursor: pointer; float: right;" @click="openLogs()">{{ i18n "pages.index.logs" }}</a-tag>
  124. </span>
  125. <template slot="content">
  126. <p style="max-width: 400px" v-for="line in status.xray.errorMsg.split('\n')">[[ line ]]</p>
  127. </template>
  128. <a-icon type="question-circle"></a-icon>
  129. </a-popover>
  130. <a-tag color="purple" style="cursor: pointer;" @click="stopXrayService">{{ i18n "pages.index.stopXray" }}</a-tag>
  131. <a-tag color="purple" style="cursor: pointer;" @click="restartXrayService">{{ i18n "pages.index.restartXray" }}</a-tag>
  132. <a-tag color="purple" style="cursor: pointer;" @click="openSelectV2rayVersion">v[[ status.xray.version ]]</a-tag>
  133. </a-card>
  134. </a-col>
  135. <a-col :sm="24" :lg="12">
  136. <a-card hoverable>
  137. <b>{{ i18n "menu.link" }}:</b>
  138. <a-tag color="purple" style="cursor: pointer;" @click="openLogs()">{{ i18n "pages.index.logs" }}</a-tag>
  139. <a-tag color="purple" style="cursor: pointer;" @click="openConfig">{{ i18n "pages.index.config" }}</a-tag>
  140. <a-tag color="purple" style="cursor: pointer;" @click="openBackup">{{ i18n "pages.index.backup" }}</a-tag>
  141. </a-card>
  142. </a-col>
  143. <a-col :sm="24" :lg="12">
  144. <a-card hoverable>
  145. <b>{{ i18n "pages.index.systemLoad" }}:</b>
  146. <a-tag color="green">
  147. <a-tooltip>
  148. [[ status.loads[0] ]] | [[ status.loads[1] ]] | [[ status.loads[2] ]]
  149. <template slot="title">
  150. {{ i18n "pages.index.systemLoadDesc" }}
  151. </template>
  152. </a-tooltip>
  153. </a-tag>
  154. </a-card>
  155. </a-col>
  156. <a-col :sm="24" :lg="12">
  157. <a-card hoverable>
  158. <b>{{ i18n "usage"}}:</b>
  159. <a-tag color="green"> RAM: [[ SizeFormatter.sizeFormat(status.appStats.mem) ]] </a-tag>
  160. <a-tag color="green"> Threads: [[ status.appStats.threads ]] </a-tag>
  161. </a-card>
  162. </a-col>
  163. <a-col :sm="24" :lg="12">
  164. <a-card hoverable>
  165. <a-row>
  166. <a-col :span="12">
  167. <a-tag>
  168. <a-tooltip>
  169. <a-icon type="global"></a-icon> IPv4
  170. <template slot="title">
  171. [[ status.publicIP.ipv4 ]]
  172. </template>
  173. </a-tooltip>
  174. </a-tag>
  175. </a-col>
  176. <a-col :span="12">
  177. <a-tag>
  178. <a-tooltip>
  179. <a-icon type="global"></a-icon> IPv6
  180. <template slot="title">
  181. [[ status.publicIP.ipv6 ]]
  182. </template>
  183. </a-tooltip>
  184. </a-tag>
  185. </a-col>
  186. </a-row>
  187. </a-card>
  188. </a-col>
  189. <a-col :sm="24" :lg="12">
  190. <a-card hoverable>
  191. <a-row>
  192. <a-col :span="12">
  193. <a-tag>
  194. <a-tooltip>
  195. <a-icon type="swap"></a-icon> TCP: [[ status.tcpCount ]]
  196. <template slot="title">
  197. {{ i18n "pages.index.connectionTcpCountDesc" }}
  198. </template>
  199. </a-tooltip>
  200. </a-tag>
  201. </a-col>
  202. <a-col :span="12">
  203. <a-tag>
  204. <a-tooltip>
  205. <a-icon type="swap"></a-icon> UDP: [[ status.udpCount ]]
  206. <template slot="title">
  207. {{ i18n "pages.index.connectionUdpCountDesc" }}
  208. </template>
  209. </a-tooltip>
  210. </a-tag>
  211. </a-col>
  212. </a-row>
  213. </a-card>
  214. </a-col>
  215. <a-col :sm="24" :lg="12">
  216. <a-card hoverable>
  217. <a-row>
  218. <a-col :span="12">
  219. <a-tag>
  220. <a-tooltip>
  221. <a-icon type="arrow-up"></a-icon> Up: [[ SizeFormatter.sizeFormat(status.netIO.up) ]]/s
  222. <template slot="title">
  223. {{ i18n "pages.index.upSpeed" }}
  224. </template>
  225. </a-tooltip>
  226. </a-tag>
  227. </a-col>
  228. <a-col :span="12">
  229. <a-tag>
  230. <a-tooltip>
  231. <a-icon type="arrow-down"></a-icon> Down: [[ SizeFormatter.sizeFormat(status.netIO.down) ]]/s
  232. <template slot="title">
  233. {{ i18n "pages.index.downSpeed" }}
  234. </template>
  235. </a-tooltip>
  236. </a-tag>
  237. </a-col>
  238. </a-row>
  239. </a-card>
  240. </a-col>
  241. <a-col :sm="24" :lg="12">
  242. <a-card hoverable>
  243. <a-row>
  244. <a-col :span="12">
  245. <a-tag>
  246. <a-tooltip>
  247. <a-icon type="cloud-upload"></a-icon>
  248. <template slot="title">
  249. {{ i18n "pages.index.totalSent" }}
  250. </template> Out: [[ SizeFormatter.sizeFormat(status.netTraffic.sent) ]]
  251. </a-tooltip>
  252. </a-tag>
  253. </a-col>
  254. <a-col :span="12">
  255. <a-tag>
  256. <a-tooltip>
  257. <a-icon type="cloud-download"></a-icon>
  258. <template slot="title">
  259. {{ i18n "pages.index.totalReceive" }}
  260. </template> In: [[ SizeFormatter.sizeFormat(status.netTraffic.recv) ]]
  261. </a-tooltip>
  262. </a-tag>
  263. </a-col>
  264. </a-row>
  265. </a-card>
  266. </a-col>
  267. </a-row>
  268. </transition>
  269. </a-spin>
  270. </a-layout-content>
  271. </a-layout>
  272. <a-modal id="version-modal" v-model="versionModal.visible" title='{{ i18n "pages.index.xraySwitch" }}' :closable="true"
  273. @ok="() => versionModal.visible = false" :class="themeSwitcher.currentTheme" footer="">
  274. <a-alert type="warning" style="margin-bottom: 12px; width: 100%;"
  275. message='{{ i18n "pages.index.xraySwitchClickDesk" }}' show-icon></a-alert>
  276. <a-list class="ant-xray-version-list" bordered style="width: 100%;">
  277. <a-list-item class="ant-xray-version-list-item" v-for="version in versionModal.versions">
  278. <a-list-item-meta>
  279. <template #title>[[ version ]]</template>
  280. </a-list-item-meta>
  281. <a-radio :checked="version === `v${status.xray.version}`" @click="switchV2rayVersion(version)"></a-radio>
  282. </a-list-item>
  283. </a-list>
  284. </a-modal>
  285. <a-modal id="log-modal" v-model="logModal.visible"
  286. :closable="true" @cancel="() => logModal.visible = false"
  287. :class="themeSwitcher.currentTheme"
  288. width="800px" footer="">
  289. <template slot="title">
  290. {{ i18n "pages.index.logs" }}
  291. <a-icon :spin="logModal.loading"
  292. type="sync"
  293. style="vertical-align: middle; margin-left: 10px;"
  294. :disabled="logModal.loading"
  295. @click="openLogs()">
  296. </a-icon>
  297. </template>
  298. <a-form layout="inline">
  299. <a-form-item style="margin-right: 0.5rem;">
  300. <a-input-group compact>
  301. <a-select size="small" v-model="logModal.rows" style="width:70px;"
  302. @change="openLogs()" :dropdown-class-name="themeSwitcher.currentTheme">
  303. <a-select-option value="10">10</a-select-option>
  304. <a-select-option value="20">20</a-select-option>
  305. <a-select-option value="50">50</a-select-option>
  306. <a-select-option value="100">100</a-select-option>
  307. <a-select-option value="500">500</a-select-option>
  308. </a-select>
  309. <a-select size="small" v-model="logModal.level" style="width:95px;"
  310. @change="openLogs()" :dropdown-class-name="themeSwitcher.currentTheme">
  311. <a-select-option value="debug">Debug</a-select-option>
  312. <a-select-option value="info">Info</a-select-option>
  313. <a-select-option value="notice">Notice</a-select-option>
  314. <a-select-option value="warning">Warning</a-select-option>
  315. <a-select-option value="err">Error</a-select-option>
  316. </a-select>
  317. </a-input-group>
  318. </a-form-item>
  319. <a-form-item>
  320. <a-checkbox v-model="logModal.syslog" @change="openLogs()">SysLog</a-checkbox>
  321. </a-form-item>
  322. <a-form-item style="float: right;">
  323. <a-button type="primary" icon="download"
  324. :href="'data:application/text;charset=utf-8,' + encodeURIComponent(logModal.logs?.join('\n'))" download="x-ui.log">
  325. </a-button>
  326. </a-form-item>
  327. </a-form>
  328. <div class="ant-input" style="height: auto; max-height: 500px; overflow: auto; margin-top: 0.5rem;" v-html="logModal.formattedLogs"></div>
  329. </a-modal>
  330. <a-modal id="backup-modal"
  331. v-model="backupModal.visible"
  332. title='{{ i18n "pages.index.backupTitle" }}'
  333. :closable="true"
  334. footer=""
  335. :class="themeSwitcher.currentTheme">
  336. <a-list class="ant-backup-list" bordered style="width: 100%;">
  337. <a-list-item class="ant-backup-list-item" @click="exportDatabase()">
  338. <a-list-item-meta>
  339. <template #title>{{ i18n "pages.index.exportDatabase" }}</template>
  340. <template #description>{{ i18n "pages.index.exportDatabaseDesc" }}</template>
  341. </a-list-item-meta>
  342. <a-icon type="right" />
  343. </a-list-item>
  344. <a-list-item class="ant-backup-list-item" @click="importDatabase()">
  345. <a-list-item-meta>
  346. <template #title>{{ i18n "pages.index.importDatabase" }}</template>
  347. <template #description>{{ i18n "pages.index.importDatabaseDesc" }}</template>
  348. <templaet #avatar>
  349. <a-icon type="import" />
  350. </templaet>
  351. </a-list-item-meta>
  352. <a-icon type="right" />
  353. </a-list-item>
  354. </a-list>
  355. </a-modal>
  356. </a-layout>
  357. {{template "js" .}}
  358. {{template "component/themeSwitcher" .}}
  359. {{template "textModal"}}
  360. <script>
  361. const State = {
  362. Running: "running",
  363. Stop: "stop",
  364. Error: "error",
  365. }
  366. Object.freeze(State);
  367. class CurTotal {
  368. constructor(current, total) {
  369. this.current = current;
  370. this.total = total;
  371. }
  372. get percent() {
  373. if (this.total === 0) {
  374. return 0;
  375. }
  376. return NumberFormatter.toFixed(this.current / this.total * 100, 2);
  377. }
  378. get color() {
  379. const percent = this.percent;
  380. if (percent < 80) {
  381. return '#008771'; // Green
  382. } else if (percent < 90) {
  383. return "#f37b24"; // Orange
  384. } else {
  385. return "#cf3c3c"; // Red
  386. }
  387. }
  388. }
  389. class Status {
  390. constructor(data) {
  391. this.cpu = new CurTotal(0, 0);
  392. this.cpuCores = 0;
  393. this.logicalPro = 0;
  394. this.cpuSpeedMhz = 0;
  395. this.disk = new CurTotal(0, 0);
  396. this.loads = [0, 0, 0];
  397. this.mem = new CurTotal(0, 0);
  398. this.netIO = { up: 0, down: 0 };
  399. this.netTraffic = { sent: 0, recv: 0 };
  400. this.publicIP = { ipv4: 0, ipv6: 0 };
  401. this.swap = new CurTotal(0, 0);
  402. this.tcpCount = 0;
  403. this.udpCount = 0;
  404. this.uptime = 0;
  405. this.appUptime = 0;
  406. this.appStats = {threads: 0, mem: 0, uptime: 0};
  407. this.xray = { state: State.Stop, errorMsg: "", version: "", color: "" };
  408. if (data == null) {
  409. return;
  410. }
  411. this.cpu = new CurTotal(data.cpu, 100);
  412. this.cpuCores = data.cpuCores;
  413. this.logicalPro = data.logicalPro;
  414. this.cpuSpeedMhz = data.cpuSpeedMhz;
  415. this.disk = new CurTotal(data.disk.current, data.disk.total);
  416. this.loads = data.loads.map(load => NumberFormatter.toFixed(load, 2));
  417. this.mem = new CurTotal(data.mem.current, data.mem.total);
  418. this.netIO = data.netIO;
  419. this.netTraffic = data.netTraffic;
  420. this.publicIP = data.publicIP;
  421. this.swap = new CurTotal(data.swap.current, data.swap.total);
  422. this.tcpCount = data.tcpCount;
  423. this.udpCount = data.udpCount;
  424. this.uptime = data.uptime;
  425. this.appUptime = data.appUptime;
  426. this.appStats = data.appStats;
  427. this.xray = data.xray;
  428. switch (this.xray.state) {
  429. case State.Running:
  430. this.xray.color = "green";
  431. break;
  432. case State.Stop:
  433. this.xray.color = "orange";
  434. break;
  435. case State.Error:
  436. this.xray.color = "red";
  437. break;
  438. default:
  439. this.xray.color = "gray";
  440. }
  441. }
  442. }
  443. const versionModal = {
  444. visible: false,
  445. versions: [],
  446. show(versions) {
  447. this.visible = true;
  448. this.versions = versions;
  449. },
  450. hide() {
  451. this.visible = false;
  452. },
  453. };
  454. const logModal = {
  455. visible: false,
  456. logs: [],
  457. rows: 20,
  458. level: 'info',
  459. syslog: false,
  460. loading: false,
  461. show(logs) {
  462. this.visible = true;
  463. this.logs = logs;
  464. this.formattedLogs = this.logs?.length > 0 ? this.formatLogs(this.logs) : "No Record...";
  465. },
  466. formatLogs(logs) {
  467. let formattedLogs = '';
  468. const levels = ["DEBUG","INFO","NOTICE","WARNING","ERROR"];
  469. const levelColors = ["#3c89e8","#008771","#008771","#f37b24","#e04141","#bcbcbc"];
  470. logs.forEach((log, index) => {
  471. let [data, message] = log.split(" - ",2);
  472. const parts = data.split(" ")
  473. if(index>0) formattedLogs += '<br>';
  474. if (parts.length === 3) {
  475. const d = parts[0];
  476. const t = parts[1];
  477. const level = parts[2];
  478. const levelIndex = levels.indexOf(level,levels) || 5;
  479. //formattedLogs += `<span style="color: gray;">${index + 1}.</span>`;
  480. formattedLogs += `<span style="color: ${levelColors[0]};">${d} ${t}</span> `;
  481. formattedLogs += `<span style="color: ${levelColors[levelIndex]}">${level}</span>`;
  482. } else {
  483. const levelIndex = levels.indexOf(data,levels) || 5;
  484. formattedLogs += `<span style="color: ${levelColors[levelIndex]}">${data}</span>`;
  485. }
  486. if(message){
  487. if(message.startsWith("XRAY:"))
  488. message = "<b>XRAY: </b>" + message.substring(5);
  489. else
  490. message = "<b>X-UI: </b>" + message;
  491. }
  492. formattedLogs += message ? ' - ' + message : '';
  493. });
  494. return formattedLogs;
  495. },
  496. hide() {
  497. this.visible = false;
  498. },
  499. };
  500. const backupModal = {
  501. visible: false,
  502. show() {
  503. this.visible = true;
  504. },
  505. hide() {
  506. this.visible = false;
  507. },
  508. };
  509. const app = new Vue({
  510. delimiters: ['[[', ']]'],
  511. el: '#app',
  512. data: {
  513. siderDrawer,
  514. themeSwitcher,
  515. status: new Status(),
  516. versionModal,
  517. logModal,
  518. backupModal,
  519. spinning: false,
  520. loadingTip: '{{ i18n "loading"}}',
  521. showAlert: false,
  522. },
  523. methods: {
  524. loading(spinning, tip = '{{ i18n "loading"}}') {
  525. this.spinning = spinning;
  526. this.loadingTip = tip;
  527. },
  528. async getStatus() {
  529. try {
  530. const msg = await HttpUtil.post('/server/status');
  531. if (msg.success) {
  532. this.setStatus(msg.obj);
  533. }
  534. } catch (e) {
  535. console.error("Failed to get status:", e);
  536. }
  537. },
  538. setStatus(data) {
  539. this.status = new Status(data);
  540. },
  541. async openSelectV2rayVersion() {
  542. this.loading(true);
  543. const msg = await HttpUtil.post('server/getXrayVersion');
  544. this.loading(false);
  545. if (!msg.success) {
  546. return;
  547. }
  548. versionModal.show(msg.obj);
  549. },
  550. switchV2rayVersion(version) {
  551. this.$confirm({
  552. title: '{{ i18n "pages.index.xraySwitchVersionDialog"}}',
  553. content: '{{ i18n "pages.index.xraySwitchVersionDialogDesc"}}' + ` ${version}?`,
  554. okText: '{{ i18n "confirm"}}',
  555. class: themeSwitcher.currentTheme,
  556. cancelText: '{{ i18n "cancel"}}',
  557. onOk: async () => {
  558. versionModal.hide();
  559. this.loading(true, '{{ i18n "pages.index.dontRefresh"}}');
  560. await HttpUtil.post(`/server/installXray/${version}`);
  561. this.loading(false);
  562. },
  563. });
  564. },
  565. async stopXrayService() {
  566. this.loading(true);
  567. const msg = await HttpUtil.post('server/stopXrayService');
  568. this.loading(false);
  569. if (!msg.success) {
  570. return;
  571. }
  572. },
  573. async restartXrayService() {
  574. this.loading(true);
  575. const msg = await HttpUtil.post('server/restartXrayService');
  576. this.loading(false);
  577. if (!msg.success) {
  578. return;
  579. }
  580. },
  581. async openLogs(){
  582. logModal.loading = true;
  583. const msg = await HttpUtil.post('server/logs/'+logModal.rows,{level: logModal.level, syslog: logModal.syslog});
  584. if (!msg.success) {
  585. return;
  586. }
  587. logModal.show(msg.obj);
  588. await PromiseUtil.sleep(500);
  589. logModal.loading = false;
  590. },
  591. async openConfig() {
  592. this.loading(true);
  593. const msg = await HttpUtil.post('server/getConfigJson');
  594. this.loading(false);
  595. if (!msg.success) {
  596. return;
  597. }
  598. txtModal.show('config.json', JSON.stringify(msg.obj, null, 2), 'config.json');
  599. },
  600. openBackup() {
  601. backupModal.show();
  602. },
  603. exportDatabase() {
  604. window.location = basePath + 'server/getDb';
  605. },
  606. importDatabase() {
  607. const fileInput = document.createElement('input');
  608. fileInput.type = 'file';
  609. fileInput.accept = '.db';
  610. fileInput.addEventListener('change', async (event) => {
  611. const dbFile = event.target.files[0];
  612. if (dbFile) {
  613. const formData = new FormData();
  614. formData.append('db', dbFile);
  615. backupModal.hide();
  616. this.loading(true);
  617. const uploadMsg = await HttpUtil.post('server/importDB', formData, {
  618. headers: {
  619. 'Content-Type': 'multipart/form-data',
  620. }
  621. });
  622. this.loading(false);
  623. if (!uploadMsg.success) {
  624. return;
  625. }
  626. this.loading(true);
  627. const restartMsg = await HttpUtil.post("/panel/setting/restartPanel");
  628. this.loading(false);
  629. if (restartMsg.success) {
  630. this.loading(true);
  631. await PromiseUtil.sleep(5000);
  632. location.reload();
  633. }
  634. }
  635. });
  636. fileInput.click();
  637. },
  638. },
  639. async mounted() {
  640. if (window.location.protocol !== "https:") {
  641. this.showAlert = true;
  642. }
  643. while (true) {
  644. try {
  645. await this.getStatus();
  646. } catch (e) {
  647. console.error(e);
  648. }
  649. await PromiseUtil.sleep(2000);
  650. }
  651. },
  652. });
  653. </script>
  654. </body>
  655. </html>