index.html 30 KB

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