inbound_info_modal.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  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="infoModal.clientSettings.comment">
  189. <td>{{ i18n "comment" }}</td>
  190. <td>
  191. <a-tooltip :title="[[ infoModal.clientSettings.comment ]]">
  192. <a-tag class="info-large-tag">[[ infoModal.clientSettings.comment ]]</a-tag>
  193. </a-tooltip>
  194. </td>
  195. </tr>
  196. <tr v-if="app.ipLimitEnable">
  197. <td>{{ i18n "pages.inbounds.IPLimit" }}</td>
  198. <td>
  199. <a-tag>[[ infoModal.clientSettings.limitIp ]]</a-tag>
  200. </td>
  201. </tr>
  202. <tr v-if="app.ipLimitEnable">
  203. <td>{{ i18n "pages.inbounds.IPLimitlog" }}</td>
  204. <td>
  205. <a-tag>[[ infoModal.clientIps ]]</a-tag>
  206. <a-icon type="sync" :spin="refreshing" @click="refreshIPs" style="margin: 0 5px;"></a-icon>
  207. <a-tooltip :title="[[ dbInbound.address ]]">
  208. <template slot="title">
  209. <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span>
  210. </template>
  211. <a-icon type="delete" @click="clearClientIps"></a-icon>
  212. </a-tooltip>
  213. </td>
  214. </tr>
  215. </table>
  216. <table style="display: inline-table; margin-block: 10px; width: 100%; text-align: center;">
  217. <tr>
  218. <th>{{ i18n "remained" }}</th>
  219. <th>{{ i18n "pages.inbounds.totalFlow" }}</th>
  220. <th>{{ i18n "pages.inbounds.expireDate" }}</th>
  221. </tr>
  222. <tr>
  223. <td>
  224. <a-tag v-if="infoModal.clientStats && infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ getRemStats() ]] </a-tag>
  225. </td>
  226. <td>
  227. <a-tag v-if="infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ sizeFormat(infoModal.clientSettings.totalGB) ]] </a-tag>
  228. <a-tag v-else color="purple" class="infinite-tag">
  229. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  230. <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>
  231. </svg>
  232. </a-tag>
  233. </td>
  234. <td>
  235. <template v-if="infoModal.clientSettings.expiryTime > 0">
  236. <a-tag :color="usageColor(new Date().getTime(), app.expireDiff, infoModal.clientSettings.expiryTime)">
  237. <template v-if="app.datepicker === 'gregorian'">
  238. [[ DateUtil.formatMillis(infoModal.clientSettings.expiryTime) ]]
  239. </template>
  240. <template v-else>
  241. [[ DateUtil.convertToJalalian(moment(infoModal.clientSettings.expiryTime)) ]]
  242. </template>
  243. </a-tag>
  244. </template>
  245. <a-tag v-else-if="infoModal.clientSettings.expiryTime < 0" color="green">[[ infoModal.clientSettings.expiryTime / -86400000 ]] {{ i18n "pages.client.days" }}
  246. </a-tag>
  247. <a-tag v-else color="purple" class="infinite-tag">
  248. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  249. <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>
  250. </svg>
  251. </a-tag>
  252. </td>
  253. </tr>
  254. </table>
  255. <template v-if="app.subSettings.enable && infoModal.clientSettings.subId">
  256. <a-divider>Subscription URL</a-divider>
  257. <tr-info-row class="tr-info-row">
  258. <tr-info-title class="tr-info-title">
  259. <a-tag color="purple">Subscription Link</a-tag>
  260. <a-tooltip title='{{ i18n "copy" }}'>
  261. <a-button size="small" icon="snippets" id="copy-sub-link" @click="copyToClipboard('copy-sub-link', infoModal.subLink)"></a-button>
  262. </a-tooltip>
  263. </tr-info-title>
  264. <a :href="[[ infoModal.subLink ]]" target="_blank">[[ infoModal.subLink ]]</a>
  265. </tr-info-row>
  266. <tr-info-row class="tr-info-row">
  267. <tr-info-title class="tr-info-title">
  268. <a-tag color="purple">Json Link</a-tag>
  269. <a-tooltip title='{{ i18n "copy" }}'>
  270. <a-button size="small" icon="snippets" id="copy-subJson-link" @click="copyToClipboard('copy-subJson-link', infoModal.subJsonLink)"></a-button>
  271. </a-tooltip>
  272. </tr-info-title>
  273. <a :href="[[ infoModal.subJsonLink ]]" target="_blank">[[ infoModal.subJsonLink ]]</a>
  274. </tr-info-row>
  275. </template>
  276. <template v-if="app.tgBotEnable && infoModal.clientSettings.tgId">
  277. <a-divider>Telegram ChatID</a-divider>
  278. <tr-info-row class="tr-info-row">
  279. <tr-info-title class="tr-info-title">
  280. <a-tag color="blue">[[ infoModal.clientSettings.tgId ]]</a-tag>
  281. <a-tooltip title='{{ i18n "copy" }}'>
  282. <a-button size="small" icon="snippets" id="copy-tg-link" @click="copyToClipboard('copy-tg-link', infoModal.clientSettings.tgId)"></a-button>
  283. </a-tooltip>
  284. </tr-info-title>
  285. </tr-info-row>
  286. </template>
  287. <template v-if="dbInbound.hasLink()">
  288. <a-divider>URL</a-divider>
  289. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  290. <tr-info-title class="tr-info-title">
  291. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  292. <a-tooltip title='{{ i18n "copy" }}'>
  293. <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>
  294. </a-tooltip>
  295. </tr-info-title>
  296. <code>[[ link.link ]]</code>
  297. </tr-info-row>
  298. </template>
  299. </template>
  300. <template v-else>
  301. <template v-if="dbInbound.isSS && !inbound.isSSMultiUser">
  302. <a-divider>URL</a-divider>
  303. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  304. <tr-info-title class="tr-info-title">
  305. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  306. <a-tooltip title='{{ i18n "copy" }}'>
  307. <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>
  308. </a-tooltip>
  309. </tr-info-title>
  310. <code>[[ link.link ]]</code>
  311. </tr-info-row>
  312. </template>
  313. <table v-if="inbound.protocol == Protocols.DOKODEMO" class="tr-info-table">
  314. <tr>
  315. <th>{{ i18n "pages.inbounds.targetAddress" }}</th>
  316. <th>{{ i18n "pages.inbounds.destinationPort" }}</th>
  317. <th>{{ i18n "pages.inbounds.network" }}</th>
  318. <th>FollowRedirect</th>
  319. </tr>
  320. <tr>
  321. <td>
  322. <a-tag color="green">[[ inbound.settings.address ]]</a-tag>
  323. </td>
  324. <td>
  325. <a-tag color="green">[[ inbound.settings.port ]]</a-tag>
  326. </td>
  327. <td>
  328. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  329. </td>
  330. <td>
  331. <a-tag color="green">[[ inbound.settings.followRedirect ]]</a-tag>
  332. </td>
  333. </tr>
  334. </table>
  335. <table v-if="dbInbound.isSocks" class="tr-info-table">
  336. <tr>
  337. <th>{{ i18n "password" }} Auth</th>
  338. <th>{{ i18n "pages.inbounds.enable" }} udp</th>
  339. <th>IP</th>
  340. </tr>
  341. <tr>
  342. <td>
  343. <a-tag color="green">[[ inbound.settings.auth ]]</a-tag>
  344. </td>
  345. <td>
  346. <a-tag color="green">[[ inbound.settings.udp]]</a-tag>
  347. </td>
  348. <td>
  349. <a-tag color="green">[[ inbound.settings.ip ]]</a-tag>
  350. </td>
  351. </tr>
  352. <template v-if="inbound.settings.auth == 'password'">
  353. <tr>
  354. <td></td>
  355. <td>{{ i18n "username" }}</td>
  356. <td>{{ i18n "password" }}</td>
  357. </tr>
  358. <tr v-for="account,index in inbound.settings.accounts">
  359. <td>[[ index ]]</td>
  360. <td>
  361. <a-tag color="green">[[ account.user ]]</a-tag>
  362. </td>
  363. <td>
  364. <a-tag color="green">[[ account.pass ]]</a-tag>
  365. </td>
  366. </tr>
  367. </template>
  368. </table>
  369. <table v-if="dbInbound.isHTTP" class="tr-info-table">
  370. <tr>
  371. <th></th>
  372. <th>{{ i18n "username" }}</th>
  373. <th>{{ i18n "password" }}</th>
  374. </tr>
  375. <tr v-for="account,index in inbound.settings.accounts">
  376. <td>[[ index ]]</td>
  377. <td>
  378. <a-tag color="green">[[ account.user ]]</a-tag>
  379. </td>
  380. <td>
  381. <a-tag color="green">[[ account.pass ]]</a-tag>
  382. </td>
  383. </tr>
  384. </table>
  385. <table v-if="dbInbound.isWireguard" class="tr-info-table">
  386. <tr class="client-table-odd-row">
  387. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  388. <td>[[ inbound.settings.secretKey ]]</td>
  389. </tr>
  390. <tr>
  391. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  392. <td>[[ inbound.settings.pubKey ]]</td>
  393. </tr>
  394. <tr class="client-table-odd-row">
  395. <td>MTU</td>
  396. <td>[[ inbound.settings.mtu ]]</td>
  397. </tr>
  398. <tr>
  399. <td>No Kernel Tun</td>
  400. <td>[[ inbound.settings.noKernelTun ]]</td>
  401. </tr>
  402. <template v-for="(peer, index) in inbound.settings.peers">
  403. <tr>
  404. <td colspan="2">
  405. <a-divider>Peer [[ index + 1 ]]</a-divider>
  406. </td>
  407. </tr>
  408. <tr class="client-table-odd-row">
  409. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  410. <td>[[ peer.privateKey ]]</td>
  411. </tr>
  412. <tr>
  413. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  414. <td>[[ peer.publicKey ]]</td>
  415. </tr>
  416. <tr class="client-table-odd-row">
  417. <td>{{ i18n "pages.xray.wireguard.psk" }}</td>
  418. <td>[[ peer.psk ]]</td>
  419. </tr>
  420. <tr>
  421. <td>{{ i18n "pages.xray.wireguard.allowedIPs" }}</td>
  422. <td>[[ peer.allowedIPs.join(",") ]]</td>
  423. </tr>
  424. <tr class="client-table-odd-row">
  425. <td>Keep Alive</td>
  426. <td>[[ peer.keepAlive ]]</td>
  427. </tr>
  428. <tr>
  429. <td colspan="2">
  430. <tr-info-row class="tr-info-row">
  431. <tr-info-title class="tr-info-title">
  432. <a-tag color="blue">Config</a-tag>
  433. <a-tooltip title='{{ i18n "copy" }}'>
  434. <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>
  435. </a-tooltip>
  436. </tr-info-title>
  437. <div v-html="infoModal.links[index].replaceAll(`\n`,`<br />`)" style="border-radius: 1rem; padding: 0.5rem;" class="client-table-odd-row">
  438. </div>
  439. </tr-info-row>
  440. </td>
  441. </tr>
  442. </table>
  443. </template>
  444. </template>
  445. </a-modal>
  446. <script>
  447. function refreshIPs(email) {
  448. return HttpUtil.post(`/panel/inbound/clientIps/${email}`).then((msg) => {
  449. if (msg.success) {
  450. try {
  451. return JSON.parse(msg.obj).join(', ');
  452. } catch (e) {
  453. return msg.obj;
  454. }
  455. }
  456. });
  457. }
  458. const infoModal = {
  459. visible: false,
  460. inbound: new Inbound(),
  461. dbInbound: new DBInbound(),
  462. clientSettings: null,
  463. clientStats: [],
  464. upStats: 0,
  465. downStats: 0,
  466. clipboard: null,
  467. links: [],
  468. index: null,
  469. isExpired: false,
  470. subLink: '',
  471. subJsonLink: '',
  472. clientIps: '',
  473. show(dbInbound, index) {
  474. this.index = index;
  475. this.inbound = dbInbound.toInbound();
  476. this.dbInbound = new DBInbound(dbInbound);
  477. this.clientSettings = this.inbound.clients ? this.inbound.clients[index] : null;
  478. this.isExpired = this.inbound.clients ? this.inbound.isExpiry(index) : this.dbInbound.isExpiry;
  479. this.clientStats = this.inbound.clients ? this.dbInbound.clientStats.find(row => row.email === this.clientSettings.email) : [];
  480. if (app.ipLimitEnable && this.clientSettings.limitIp) {
  481. refreshIPs(this.clientStats.email).then((ips) => {
  482. this.clientIps = ips;
  483. })
  484. }
  485. if (this.inbound.protocol == Protocols.WIREGUARD) {
  486. this.links = this.inbound.genInboundLinks(dbInbound.remark).split('\r\n')
  487. } else {
  488. this.links = this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, this.clientSettings);
  489. }
  490. if (this.clientSettings) {
  491. if (this.clientSettings.subId) {
  492. this.subLink = this.genSubLink(this.clientSettings.subId);
  493. this.subJsonLink = this.genSubJsonLink(this.clientSettings.subId);
  494. }
  495. }
  496. this.visible = true;
  497. },
  498. close() {
  499. infoModal.visible = false;
  500. },
  501. genSubLink(subID) {
  502. return app.subSettings.subURI + subID;
  503. },
  504. genSubJsonLink(subID) {
  505. return app.subSettings.subJsonURI + subID;
  506. }
  507. };
  508. const infoModalApp = new Vue({
  509. delimiters: ['[[', ']]'],
  510. el: '#inbound-info-modal',
  511. data: {
  512. infoModal,
  513. refreshing: false,
  514. get dbInbound() {
  515. return this.infoModal.dbInbound;
  516. },
  517. get inbound() {
  518. return this.infoModal.inbound;
  519. },
  520. get isActive() {
  521. if (infoModal.clientStats) {
  522. return infoModal.clientStats.enable;
  523. }
  524. return true;
  525. },
  526. get isEnable() {
  527. if (infoModal.clientSettings) {
  528. return infoModal.clientSettings.enable;
  529. }
  530. return infoModal.dbInbound.isEnable;
  531. },
  532. },
  533. methods: {
  534. copyToClipboard(elementId, content) {
  535. this.infoModal.clipboard = new ClipboardJS('#' + elementId, {
  536. text: () => content,
  537. });
  538. this.infoModal.clipboard.on('success', () => {
  539. app.$message.success('{{ i18n "copied" }}')
  540. this.infoModal.clipboard.destroy();
  541. });
  542. },
  543. statsColor(stats) {
  544. return usageColor(stats.up + stats.down, app.trafficDiff, stats.total);
  545. },
  546. getRemStats() {
  547. remained = this.infoModal.clientStats.total - this.infoModal.clientStats.up - this.infoModal.clientStats.down;
  548. return remained > 0 ? sizeFormat(remained) : '-';
  549. },
  550. refreshIPs() {
  551. this.refreshing = true;
  552. refreshIPs(this.infoModal.clientStats.email)
  553. .then((ips) => {
  554. this.infoModal.clientIps = ips;
  555. })
  556. .finally(() => {
  557. this.refreshing = false;
  558. });
  559. },
  560. clearClientIps() {
  561. HttpUtil.post(`/panel/inbound/clearClientIps/${this.infoModal.clientStats.email}`)
  562. .then((msg) => {
  563. if (!msg.success) {
  564. return;
  565. }
  566. this.infoModal.clientIps = 'No IP Record';
  567. })
  568. .catch(() => {});
  569. },
  570. },
  571. });
  572. </script>
  573. {{end}}