index.html 31 KB

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