inbound_info_modal.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. {{define "inboundInfoModal"}}
  2. <a-modal id="inbound-info-modal" v-model="infoModal.visible" title='{{ i18n "pages.inbounds.details"}}' :closable="true" :mask-closable="true" :footer="null" width="600px" :class="themeSwitcher.currentTheme">
  3. <a-row>
  4. <a-col :xs="24" :md="12">
  5. <table>
  6. <tr>
  7. <td>{{ i18n "protocol" }}</td>
  8. <td>
  9. <a-tag color="purple">[[ dbInbound.protocol ]]</a-tag>
  10. </td>
  11. </tr>
  12. <tr>
  13. <td>{{ i18n "pages.inbounds.address" }}</td>
  14. <td>
  15. <a-tooltip :title="[[ dbInbound.address ]]">
  16. <a-tag class="info-large-tag">[[ dbInbound.address ]]</a-tag>
  17. </a-tooltip>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td>{{ i18n "pages.inbounds.port" }}</td>
  22. <td>
  23. <a-tag>[[ dbInbound.port ]]</a-tag>
  24. </td>
  25. </tr>
  26. </table>
  27. </a-col>
  28. <a-col :xs="24" :md="12">
  29. <template v-if="dbInbound.isVMess || dbInbound.isVLess || dbInbound.isTrojan || dbInbound.isSS">
  30. <table>
  31. <tr>
  32. <td>{{ i18n "transmission" }}</td>
  33. <td>
  34. <a-tag color="green">[[ inbound.network ]]</a-tag>
  35. </td>
  36. </tr>
  37. <template v-if="inbound.isTcp || inbound.isWs || inbound.isHttpupgrade || inbound.isXHTTP">
  38. <tr>
  39. <td>{{ i18n "host" }}</td>
  40. <td v-if="inbound.host">
  41. <a-tooltip :title="[[ inbound.host ]]">
  42. <a-tag class="info-large-tag">[[ inbound.host ]]</a-tag>
  43. </a-tooltip>
  44. </td>
  45. <td v-else>
  46. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  47. </td>
  48. </tr>
  49. </tr>
  50. <tr>
  51. <td>{{ i18n "path" }}</td>
  52. <td v-if="inbound.path">
  53. <a-tooltip :title="[[ inbound.path ]]">
  54. <a-tag class="info-large-tag">[[ inbound.path ]]</a-tag>
  55. </a-tooltip>
  56. <td v-else>
  57. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  58. </td>
  59. </tr>
  60. </template>
  61. <template v-if="inbound.isXHTTP">
  62. <tr>
  63. <td>Mode</td>
  64. <td>
  65. <a-tag>[[ inbound.stream.xhttp.mode ]]</a-tag>
  66. </td>
  67. </tr>
  68. </template>
  69. <template v-if="inbound.isKcp">
  70. <tr>
  71. <td>kcp {{ i18n "encryption" }}</td>
  72. <td>
  73. <a-tag>[[ inbound.kcpType ]]</a-tag>
  74. </td>
  75. </tr>
  76. <tr>
  77. <td>kcp {{ i18n "password" }}</td>
  78. <td>
  79. <a-tag>[[ inbound.kcpSeed ]]</a-tag>
  80. </td>
  81. </tr>
  82. </template>
  83. <template v-if="inbound.isGrpc">
  84. <tr>
  85. <td>grpc serviceName</td>
  86. <td>
  87. <a-tooltip :title="[[ inbound.serviceName ]]">
  88. <a-tag class="info-large-tag">[[ inbound.serviceName ]]</a-tag>
  89. </a-tooltip>
  90. <tr>
  91. <td>grpc multiMode</td>
  92. <td>
  93. <a-tag>[[ inbound.stream.grpc.multiMode ]]</a-tag>
  94. </td>
  95. </tr>
  96. </template>
  97. </table>
  98. </template>
  99. </a-col>
  100. <template v-if="dbInbound.hasLink()">
  101. {{ i18n "security" }}
  102. <a-tag :color="inbound.stream.security == 'none' ? 'red' : 'green'">[[ inbound.stream.security ]]</a-tag>
  103. <br />
  104. <template v-if="inbound.stream.security != 'none'">
  105. {{ i18n "domainName" }}
  106. <a-tag v-if="inbound.serverName" :color="inbound.serverName ? 'green' : 'orange'">[[ inbound.serverName ? inbound.serverName : '' ]]</a-tag>
  107. <a-tag v-else color="orange">{{ i18n "none" }}</a-tag>
  108. </template>
  109. </template>
  110. <table v-if="dbInbound.isSS" style="margin-bottom: 10px; width: 100%;">
  111. <tr>
  112. <td>{{ i18n "encryption" }}</td>
  113. <td>
  114. <a-tag color="green">[[ inbound.settings.method ]]</a-tag>
  115. </td>
  116. </tr>
  117. <tr v-if="inbound.isSS2022">
  118. <td>{{ i18n "password" }}</td>
  119. <td>
  120. <a-tooltip :title="[[ inbound.settings.password ]]">
  121. <a-tag class="info-large-tag">[[ inbound.settings.password ]]</a-tag>
  122. </a-tooltip>
  123. </td>
  124. </tr>
  125. <tr>
  126. <td>{{ i18n "pages.inbounds.network" }}</td>
  127. <td>
  128. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  129. </td>
  130. </tr>
  131. </table>
  132. <template v-if="infoModal.clientSettings">
  133. <a-divider>{{ i18n "pages.inbounds.client" }}</a-divider>
  134. <table style="margin-bottom: 10px;">
  135. <tr>
  136. <td>{{ i18n "pages.inbounds.email" }}</td>
  137. <td v-if="infoModal.clientSettings.email">
  138. <a-tag color="green">[[ infoModal.clientSettings.email ]]</a-tag>
  139. </td>
  140. <td v-else>
  141. <a-tag color="red">{{ i18n "none" }}</a-tag>
  142. </td>
  143. </tr>
  144. <tr v-if="infoModal.clientSettings.id">
  145. <td>ID</td>
  146. <td>
  147. <a-tag>[[ infoModal.clientSettings.id ]]</a-tag>
  148. </td>
  149. </tr>
  150. <tr v-if="dbInbound.isVMess">
  151. <td>{{ i18n "security" }}</td>
  152. <td>
  153. <a-tag>[[ infoModal.clientSettings.security ]]</a-tag>
  154. </td>
  155. </tr>
  156. <tr v-if="infoModal.inbound.canEnableTlsFlow()">
  157. <td>Flow</td>
  158. <td v-if="infoModal.clientSettings.flow">
  159. <a-tag>[[ infoModal.clientSettings.flow ]]</a-tag>
  160. </td>
  161. <td v-else>
  162. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  163. </td>
  164. </tr>
  165. <tr v-if="infoModal.clientSettings.password">
  166. <td>{{ i18n "password" }}</td>
  167. <td>
  168. <a-tooltip :title="[[ infoModal.clientSettings.password ]]">
  169. <a-tag class="info-large-tag">[[ infoModal.clientSettings.password ]]</a-tag>
  170. </a-tooltip>
  171. </td>
  172. </tr>
  173. <tr>
  174. <td>{{ i18n "status" }}</td>
  175. <td>
  176. <a-tag v-if="isEnable" color="green">{{ i18n "enabled" }}</a-tag>
  177. <a-tag v-else>{{ i18n "disabled" }}</a-tag>
  178. <a-tag v-if="!isActive" color="red">{{ i18n "depleted" }}</a-tag>
  179. </td>
  180. </tr>
  181. <tr v-if="infoModal.clientStats">
  182. <td>{{ i18n "usage" }}</td>
  183. <td>
  184. <a-tag color="green">[[ sizeFormat(infoModal.clientStats.up + infoModal.clientStats.down) ]]</a-tag>
  185. <a-tag>↑ [[ sizeFormat(infoModal.clientStats.up) ]] / [[ sizeFormat(infoModal.clientStats.down) ]] ↓</a-tag>
  186. </td>
  187. </tr>
  188. <tr v-if="app.ipLimitEnable">
  189. <td>{{ i18n "pages.inbounds.IPLimit" }}</td>
  190. <td>
  191. <a-tag>[[ infoModal.clientSettings.limitIp ]]</a-tag>
  192. </td>
  193. </tr>
  194. <tr v-if="app.ipLimitEnable">
  195. <td>{{ i18n "pages.inbounds.IPLimitlog" }}</td>
  196. <td>
  197. <a-tag>[[ infoModal.clientIps ]]</a-tag>
  198. <a-icon type="sync" :spin="refreshing" @click="refreshIPs" style="margin: 0 5px;"></a-icon>
  199. <a-tooltip :title="[[ dbInbound.address ]]">
  200. <template slot="title">
  201. <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span>
  202. </template>
  203. <a-icon type="delete" @click="clearClientIps"></a-icon>
  204. </a-tooltip>
  205. </td>
  206. </tr>
  207. </table>
  208. <table style="display: inline-table; margin-block: 10px; width: 100%; text-align: center;">
  209. <tr>
  210. <th>{{ i18n "remained" }}</th>
  211. <th>{{ i18n "pages.inbounds.totalFlow" }}</th>
  212. <th>{{ i18n "pages.inbounds.expireDate" }}</th>
  213. </tr>
  214. <tr>
  215. <td>
  216. <a-tag v-if="infoModal.clientStats && infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ getRemStats() ]] </a-tag>
  217. </td>
  218. <td>
  219. <a-tag v-if="infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ sizeFormat(infoModal.clientSettings.totalGB) ]] </a-tag>
  220. <a-tag v-else color="purple" class="infinite-tag">
  221. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  222. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  223. </svg>
  224. </a-tag>
  225. </td>
  226. <td>
  227. <template v-if="infoModal.clientSettings.expiryTime > 0">
  228. <a-tag :color="usageColor(new Date().getTime(), app.expireDiff, infoModal.clientSettings.expiryTime)">
  229. <template v-if="app.datepicker === 'gregorian'">
  230. [[ DateUtil.formatMillis(infoModal.clientSettings.expiryTime) ]]
  231. </template>
  232. <template v-else>
  233. [[ DateUtil.convertToJalalian(moment(infoModal.clientSettings.expiryTime)) ]]
  234. </template>
  235. </a-tag>
  236. </template>
  237. <a-tag v-else-if="infoModal.clientSettings.expiryTime < 0" color="green">[[ infoModal.clientSettings.expiryTime / -86400000 ]] {{ i18n "pages.client.days" }}
  238. </a-tag>
  239. <a-tag v-else color="purple" class="infinite-tag">
  240. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  241. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  242. </svg>
  243. </a-tag>
  244. </td>
  245. </tr>
  246. </table>
  247. <template v-if="app.subSettings.enable && infoModal.clientSettings.subId">
  248. <a-divider>Subscription URL</a-divider>
  249. <tr-info-row class="tr-info-row">
  250. <tr-info-title class="tr-info-title">
  251. <a-tag color="purple">Subscription Link</a-tag>
  252. <a-tooltip title='{{ i18n "copy" }}'>
  253. <a-button size="small" icon="snippets" id="copy-sub-link" @click="copyToClipboard('copy-sub-link', infoModal.subLink)"></a-button>
  254. </a-tooltip>
  255. </tr-info-title>
  256. <a :href="[[ infoModal.subLink ]]" target="_blank">[[ infoModal.subLink ]]</a>
  257. </tr-info-row>
  258. <tr-info-row class="tr-info-row">
  259. <tr-info-title class="tr-info-title">
  260. <a-tag color="purple">Json Link</a-tag>
  261. <a-tooltip title='{{ i18n "copy" }}'>
  262. <a-button size="small" icon="snippets" id="copy-subJson-link" @click="copyToClipboard('copy-subJson-link', infoModal.subJsonLink)"></a-button>
  263. </a-tooltip>
  264. </tr-info-title>
  265. <a :href="[[ infoModal.subJsonLink ]]" target="_blank">[[ infoModal.subJsonLink ]]</a>
  266. </tr-info-row>
  267. </template>
  268. <template v-if="app.tgBotEnable && infoModal.clientSettings.tgId">
  269. <a-divider>Telegram ChatID</a-divider>
  270. <tr-info-row class="tr-info-row">
  271. <tr-info-title class="tr-info-title">
  272. <a-tag color="blue">[[ infoModal.clientSettings.tgId ]]</a-tag>
  273. <a-tooltip title='{{ i18n "copy" }}'>
  274. <a-button size="small" icon="snippets" id="copy-tg-link" @click="copyToClipboard('copy-tg-link', infoModal.clientSettings.tgId)"></a-button>
  275. </a-tooltip>
  276. </tr-info-title>
  277. </tr-info-row>
  278. </template>
  279. <template v-if="dbInbound.hasLink()">
  280. <a-divider>URL</a-divider>
  281. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  282. <tr-info-title class="tr-info-title">
  283. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  284. <a-tooltip title='{{ i18n "copy" }}'>
  285. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  286. </a-tooltip>
  287. </tr-info-title>
  288. <code>[[ link.link ]]</code>
  289. </tr-info-row>
  290. </template>
  291. </template>
  292. <template v-else>
  293. <template v-if="dbInbound.isSS && !inbound.isSSMultiUser">
  294. <a-divider>URL</a-divider>
  295. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  296. <tr-info-title class="tr-info-title">
  297. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  298. <a-tooltip title='{{ i18n "copy" }}'>
  299. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  300. </a-tooltip>
  301. </tr-info-title>
  302. <code>[[ link.link ]]</code>
  303. </tr-info-row>
  304. </template>
  305. <table v-if="inbound.protocol == Protocols.DOKODEMO" class="tr-info-table">
  306. <tr>
  307. <th>{{ i18n "pages.inbounds.targetAddress" }}</th>
  308. <th>{{ i18n "pages.inbounds.destinationPort" }}</th>
  309. <th>{{ i18n "pages.inbounds.network" }}</th>
  310. <th>FollowRedirect</th>
  311. </tr>
  312. <tr>
  313. <td>
  314. <a-tag color="green">[[ inbound.settings.address ]]</a-tag>
  315. </td>
  316. <td>
  317. <a-tag color="green">[[ inbound.settings.port ]]</a-tag>
  318. </td>
  319. <td>
  320. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  321. </td>
  322. <td>
  323. <a-tag color="green">[[ inbound.settings.followRedirect ]]</a-tag>
  324. </td>
  325. </tr>
  326. </table>
  327. <table v-if="dbInbound.isSocks" class="tr-info-table">
  328. <tr>
  329. <th>{{ i18n "password" }} Auth</th>
  330. <th>{{ i18n "pages.inbounds.enable" }} udp</th>
  331. <th>IP</th>
  332. </tr>
  333. <tr>
  334. <td>
  335. <a-tag color="green">[[ inbound.settings.auth ]]</a-tag>
  336. </td>
  337. <td>
  338. <a-tag color="green">[[ inbound.settings.udp]]</a-tag>
  339. </td>
  340. <td>
  341. <a-tag color="green">[[ inbound.settings.ip ]]</a-tag>
  342. </td>
  343. </tr>
  344. <template v-if="inbound.settings.auth == 'password'">
  345. <tr>
  346. <td></td>
  347. <td>{{ i18n "username" }}</td>
  348. <td>{{ i18n "password" }}</td>
  349. </tr>
  350. <tr v-for="account,index in inbound.settings.accounts">
  351. <td>[[ index ]]</td>
  352. <td>
  353. <a-tag color="green">[[ account.user ]]</a-tag>
  354. </td>
  355. <td>
  356. <a-tag color="green">[[ account.pass ]]</a-tag>
  357. </td>
  358. </tr>
  359. </template>
  360. </table>
  361. <table v-if="dbInbound.isHTTP" class="tr-info-table">
  362. <tr>
  363. <th></th>
  364. <th>{{ i18n "username" }}</th>
  365. <th>{{ i18n "password" }}</th>
  366. </tr>
  367. <tr v-for="account,index in inbound.settings.accounts">
  368. <td>[[ index ]]</td>
  369. <td>
  370. <a-tag color="green">[[ account.user ]]</a-tag>
  371. </td>
  372. <td>
  373. <a-tag color="green">[[ account.pass ]]</a-tag>
  374. </td>
  375. </tr>
  376. </table>
  377. <table v-if="dbInbound.isWireguard" class="tr-info-table">
  378. <tr class="client-table-odd-row">
  379. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  380. <td>[[ inbound.settings.secretKey ]]</td>
  381. </tr>
  382. <tr>
  383. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  384. <td>[[ inbound.settings.pubKey ]]</td>
  385. </tr>
  386. <tr class="client-table-odd-row">
  387. <td>MTU</td>
  388. <td>[[ inbound.settings.mtu ]]</td>
  389. </tr>
  390. <tr>
  391. <td>No Kernel Tun</td>
  392. <td>[[ inbound.settings.noKernelTun ]]</td>
  393. </tr>
  394. <template v-for="(peer, index) in inbound.settings.peers">
  395. <tr>
  396. <td colspan="2">
  397. <a-divider>Peer [[ index + 1 ]]</a-divider>
  398. </td>
  399. </tr>
  400. <tr class="client-table-odd-row">
  401. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  402. <td>[[ peer.privateKey ]]</td>
  403. </tr>
  404. <tr>
  405. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  406. <td>[[ peer.publicKey ]]</td>
  407. </tr>
  408. <tr class="client-table-odd-row">
  409. <td>{{ i18n "pages.xray.wireguard.psk" }}</td>
  410. <td>[[ peer.psk ]]</td>
  411. </tr>
  412. <tr>
  413. <td>{{ i18n "pages.xray.wireguard.allowedIPs" }}</td>
  414. <td>[[ peer.allowedIPs.join(",") ]]</td>
  415. </tr>
  416. <tr class="client-table-odd-row">
  417. <td>Keep Alive</td>
  418. <td>[[ peer.keepAlive ]]</td>
  419. </tr>
  420. <tr>
  421. <td colspan="2">
  422. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  423. <tr-info-title class="tr-info-title">
  424. <a-tag color="blue">Config</a-tag>
  425. <a-tooltip title='{{ i18n "copy" }}'>
  426. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, infoModal.links[index])"></a-button>
  427. </a-tooltip>
  428. </tr-info-title>
  429. <div v-html="infoModal.links[index].replaceAll(`\n`,`<br />`)" style="border-radius: 1rem; padding: 0.5rem;" class="client-table-odd-row">
  430. </div>
  431. </tr-info-row>
  432. </td>
  433. </tr>
  434. </table>
  435. </template>
  436. </template>
  437. </a-modal>
  438. <script>
  439. function refreshIPs(email) {
  440. return HttpUtil.post(`/panel/inbound/clientIps/${email}`).then((msg) => {
  441. if (msg.success) {
  442. try {
  443. return JSON.parse(msg.obj).join(', ');
  444. } catch (e) {
  445. return msg.obj;
  446. }
  447. }
  448. });
  449. }
  450. const infoModal = {
  451. visible: false,
  452. inbound: new Inbound(),
  453. dbInbound: new DBInbound(),
  454. clientSettings: null,
  455. clientStats: [],
  456. upStats: 0,
  457. downStats: 0,
  458. clipboard: null,
  459. links: [],
  460. index: null,
  461. isExpired: false,
  462. subLink: '',
  463. subJsonLink: '',
  464. clientIps: '',
  465. show(dbInbound, index) {
  466. this.index = index;
  467. this.inbound = dbInbound.toInbound();
  468. this.dbInbound = new DBInbound(dbInbound);
  469. this.clientSettings = this.inbound.clients ? this.inbound.clients[index] : null;
  470. this.isExpired = this.inbound.clients ? this.inbound.isExpiry(index) : this.dbInbound.isExpiry;
  471. this.clientStats = this.inbound.clients ? this.dbInbound.clientStats.find(row => row.email === this.clientSettings.email) : [];
  472. if (app.ipLimitEnable && this.clientSettings.limitIp) {
  473. refreshIPs(this.clientStats.email).then((ips) => {
  474. this.clientIps = ips;
  475. })
  476. }
  477. if (this.inbound.protocol == Protocols.WIREGUARD) {
  478. this.links = this.inbound.genInboundLinks(dbInbound.remark).split('\r\n')
  479. } else {
  480. this.links = this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, this.clientSettings);
  481. }
  482. if (this.clientSettings) {
  483. if (this.clientSettings.subId) {
  484. this.subLink = this.genSubLink(this.clientSettings.subId);
  485. this.subJsonLink = this.genSubJsonLink(this.clientSettings.subId);
  486. }
  487. }
  488. this.visible = true;
  489. },
  490. close() {
  491. infoModal.visible = false;
  492. },
  493. genSubLink(subID) {
  494. return app.subSettings.subURI + subID;
  495. },
  496. genSubJsonLink(subID) {
  497. return app.subSettings.subJsonURI + subID;
  498. }
  499. };
  500. const infoModalApp = new Vue({
  501. delimiters: ['[[', ']]'],
  502. el: '#inbound-info-modal',
  503. data: {
  504. infoModal,
  505. refreshing: false,
  506. get dbInbound() {
  507. return this.infoModal.dbInbound;
  508. },
  509. get inbound() {
  510. return this.infoModal.inbound;
  511. },
  512. get isActive() {
  513. if (infoModal.clientStats) {
  514. return infoModal.clientStats.enable;
  515. }
  516. return true;
  517. },
  518. get isEnable() {
  519. if (infoModal.clientSettings) {
  520. return infoModal.clientSettings.enable;
  521. }
  522. return infoModal.dbInbound.isEnable;
  523. },
  524. },
  525. methods: {
  526. copyToClipboard(elementId, content) {
  527. this.infoModal.clipboard = new ClipboardJS('#' + elementId, {
  528. text: () => content,
  529. });
  530. this.infoModal.clipboard.on('success', () => {
  531. app.$message.success('{{ i18n "copied" }}')
  532. this.infoModal.clipboard.destroy();
  533. });
  534. },
  535. statsColor(stats) {
  536. return usageColor(stats.up + stats.down, app.trafficDiff, stats.total);
  537. },
  538. getRemStats() {
  539. remained = this.infoModal.clientStats.total - this.infoModal.clientStats.up - this.infoModal.clientStats.down;
  540. return remained > 0 ? sizeFormat(remained) : '-';
  541. },
  542. refreshIPs() {
  543. this.refreshing = true;
  544. refreshIPs(this.infoModal.clientStats.email)
  545. .then((ips) => {
  546. this.infoModal.clientIps = ips;
  547. })
  548. .finally(() => {
  549. this.refreshing = false;
  550. });
  551. },
  552. clearClientIps() {
  553. HttpUtil.post(`/panel/inbound/clearClientIps/${this.infoModal.clientStats.email}`)
  554. .then((msg) => {
  555. if (!msg.success) {
  556. return;
  557. }
  558. this.infoModal.clientIps = 'No IP Record';
  559. })
  560. .catch(() => {});
  561. },
  562. },
  563. });
  564. </script>
  565. {{end}}