inbound_info_modal.html 24 KB

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