index.html 31 KB

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