inbounds.html 76 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606
  1. {{ template "page/head_start" .}}
  2. {{ template "page/head_end" .}}
  3. {{ template "page/body_start" .}}
  4. <a-layout id="app" v-cloak :class="themeSwitcher.currentTheme + ' inbounds-page'">
  5. <a-sidebar></a-sidebar>
  6. <a-layout id="content-layout">
  7. <a-layout-content>
  8. <a-spin :spinning="loadingStates.spinning" :delay="500" tip='{{ i18n "loading"}}'>
  9. <transition name="list" appear>
  10. <a-alert type="error" v-if="showAlert && loadingStates.fetched" :style="{ marginBottom: '10px' }"
  11. message='{{ i18n "secAlertTitle" }}' color="red" description='{{ i18n "secAlertSsl" }}' show-icon closable>
  12. </a-alert>
  13. </transition>
  14. <transition name="list" appear>
  15. <a-row v-if="!loadingStates.fetched">
  16. <a-card
  17. :style="{ textAlign: 'center', padding: '30px 0', marginTop: '10px', background: 'transparent', border: 'none' }">
  18. <a-spin tip='{{ i18n "loading" }}'></a-spin>
  19. </a-card>
  20. </a-row>
  21. <a-row :gutter="[isMobile ? 8 : 16, isMobile ? 0 : 12]" v-else>
  22. <a-col>
  23. <a-card size="small" :style="{ padding: '16px' }" hoverable>
  24. <a-row>
  25. <a-col :sm="12" :md="5">
  26. <a-custom-statistic title='{{ i18n "pages.inbounds.totalDownUp" }}'
  27. :value="`${SizeFormatter.sizeFormat(total.up)} / ${SizeFormatter.sizeFormat(total.down)}`">
  28. <template #prefix>
  29. <a-icon type="swap"></a-icon>
  30. </template>
  31. </a-custom-statistic>
  32. </a-col>
  33. <a-col :sm="12" :md="5">
  34. <a-custom-statistic title='{{ i18n "pages.inbounds.totalUsage" }}'
  35. :value="SizeFormatter.sizeFormat(total.up + total.down)"
  36. :style="{ marginTop: isMobile ? '10px' : 0 }">
  37. <template #prefix>
  38. <a-icon type="pie-chart"></a-icon>
  39. </template>
  40. </a-custom-statistic>
  41. </a-col>
  42. <a-col :sm="12" :md="5">
  43. <a-custom-statistic title='{{ i18n "pages.inbounds.allTimeTrafficUsage" }}'
  44. :value="SizeFormatter.sizeFormat(total.allTime)" :style="{ marginTop: isMobile ? '10px' : 0 }">
  45. <template #prefix>
  46. <a-icon type="history"></a-icon>
  47. </template>
  48. </a-custom-statistic>
  49. </a-col>
  50. <a-col :sm="12" :md="5">
  51. <a-custom-statistic title='{{ i18n "pages.inbounds.inboundCount" }}' :value="dbInbounds.length"
  52. :style="{ marginTop: isMobile ? '10px' : 0 }">
  53. <template #prefix>
  54. <a-icon type="bars"></a-icon>
  55. </template>
  56. </a-custom-statistic>
  57. </a-col>
  58. <a-col :sm="12" :md="4">
  59. <a-custom-statistic title='{{ i18n "clients" }}' value=" "
  60. :style="{ marginTop: isMobile ? '10px' : 0 }">
  61. <template #prefix>
  62. <a-space direction="horizontal">
  63. <a-icon type="team"></a-icon>
  64. <div>
  65. <a-back-top :target="() => document.getElementById('content-layout')"
  66. visibility-height="200"></a-back-top>
  67. <a-tag color="green">[[ total.clients ]]</a-tag>
  68. <a-popover title='{{ i18n "disabled" }}' :overlay-class-name="themeSwitcher.currentTheme">
  69. <template slot="content">
  70. <div v-for="clientEmail in total.deactive"><span>[[ clientEmail ]]</span></div>
  71. </template>
  72. <a-tag v-if="total.deactive.length">[[ total.deactive.length ]]</a-tag>
  73. </a-popover>
  74. <a-popover title='{{ i18n "depleted" }}' :overlay-class-name="themeSwitcher.currentTheme">
  75. <template slot="content">
  76. <div v-for="clientEmail in total.depleted"><span>[[ clientEmail ]]</span></div>
  77. </template>
  78. <a-tag color="red" v-if="total.depleted.length">[[ total.depleted.length ]]</a-tag>
  79. </a-popover>
  80. <a-popover title='{{ i18n "depletingSoon" }}'
  81. :overlay-class-name="themeSwitcher.currentTheme">
  82. <template slot="content">
  83. <div v-for="clientEmail in total.expiring"><span>[[ clientEmail ]]</span></div>
  84. </template>
  85. <a-tag color="orange" v-if="total.expiring.length">[[ total.expiring.length ]]</a-tag>
  86. </a-popover>
  87. <a-popover title='{{ i18n "online" }}' :overlay-class-name="themeSwitcher.currentTheme">
  88. <template slot="content">
  89. <div v-for="clientEmail in onlineClients"><span>[[ clientEmail ]]</span></div>
  90. </template>
  91. <a-tag color="blue" v-if="onlineClients.length">[[ onlineClients.length ]]</a-tag>
  92. </a-popover>
  93. </div>
  94. </a-space>
  95. </template>
  96. </a-custom-statistic>
  97. </a-col>
  98. </a-row>
  99. </a-card>
  100. </a-col>
  101. <a-col>
  102. <a-card hoverable>
  103. <template #title>
  104. <a-space direction="horizontal">
  105. <a-button type="primary" icon="plus" @click="openAddInbound">
  106. <template v-if="!isMobile">{{ i18n "pages.inbounds.addInbound" }}</template>
  107. </a-button>
  108. <a-dropdown :trigger="['click']">
  109. <a-button type="primary" icon="menu">
  110. <template v-if="!isMobile">{{ i18n "pages.inbounds.generalActions" }}</template>
  111. </a-button>
  112. <a-menu slot="overlay" @click="a => generalActions(a)" :theme="themeSwitcher.currentTheme">
  113. <a-menu-item key="import">
  114. <a-icon type="import"></a-icon>
  115. {{ i18n "pages.inbounds.importInbound" }}
  116. </a-menu-item>
  117. <a-menu-item key="export">
  118. <a-icon type="export"></a-icon>
  119. {{ i18n "pages.inbounds.export" }}
  120. </a-menu-item>
  121. <a-menu-item key="subs" v-if="subSettings.enable">
  122. <a-icon type="export"></a-icon>
  123. {{ i18n "pages.inbounds.export" }} - {{ i18n "pages.settings.subSettings" }}
  124. </a-menu-item>
  125. <a-menu-item key="resetInbounds">
  126. <a-icon type="reload"></a-icon>
  127. {{ i18n "pages.inbounds.resetAllTraffic" }}
  128. </a-menu-item>
  129. <a-menu-item key="resetClients">
  130. <a-icon type="file-done"></a-icon>
  131. {{ i18n "pages.inbounds.resetAllClientTraffics" }}
  132. </a-menu-item>
  133. <a-menu-item key="delDepletedClients" :style="{ color: '#FF4D4F' }">
  134. <a-icon type="rest"></a-icon>
  135. {{ i18n "pages.inbounds.delDepletedClients" }}
  136. </a-menu-item>
  137. </a-menu>
  138. </a-dropdown>
  139. </a-space>
  140. </template>
  141. <template #extra>
  142. <a-button-group>
  143. <a-button icon="sync" @click="manualRefresh" :loading="refreshing"></a-button>
  144. <a-popover placement="bottomRight" trigger="click" :overlay-class-name="themeSwitcher.currentTheme">
  145. <template #title>
  146. <div class="ant-custom-popover-title">
  147. <a-switch v-model="isRefreshEnabled" @change="toggleRefresh" size="small"></a-switch>
  148. <span>{{ i18n "pages.inbounds.autoRefresh" }}</span>
  149. </div>
  150. </template>
  151. <template #content>
  152. <a-space direction="vertical">
  153. <span>{{ i18n "pages.inbounds.autoRefreshInterval" }}</span>
  154. <a-select v-model="refreshInterval" :disabled="!isRefreshEnabled" :style="{ width: '100%' }"
  155. @change="changeRefreshInterval" :dropdown-class-name="themeSwitcher.currentTheme">
  156. <a-select-option v-for="key in [5,10,30,60]" :value="key*1000">[[ key ]]s</a-select-option>
  157. </a-select>
  158. </a-space>
  159. </template>
  160. <a-button icon="down"></a-button>
  161. </a-popover>
  162. </a-button-group>
  163. </template>
  164. <a-space direction="vertical">
  165. <div :style="isMobile ? {} : { display: 'flex', alignItems: 'center', justifyContent: 'flex-start' }">
  166. <a-switch v-model="enableFilter"
  167. :style="isMobile ? { marginBottom: '.5rem', display: 'flex' } : { marginRight: '.5rem' }"
  168. @change="toggleFilter">
  169. <a-icon slot="checkedChildren" type="search"></a-icon>
  170. <a-icon slot="unCheckedChildren" type="filter"></a-icon>
  171. </a-switch>
  172. <a-input v-if="!enableFilter" v-model.lazy="searchKey" placeholder='{{ i18n "search" }}' autofocus
  173. :style="{ maxWidth: '300px' }" :size="isMobile ? 'small' : ''"></a-input>
  174. <a-radio-group v-if="enableFilter" v-model="filterBy" @change="filterInbounds" button-style="solid"
  175. :size="isMobile ? 'small' : ''">
  176. <a-radio-button value="">{{ i18n "none" }}</a-radio-button>
  177. <a-radio-button value="deactive">{{ i18n "disabled" }}</a-radio-button>
  178. <a-radio-button value="depleted">{{ i18n "depleted" }}</a-radio-button>
  179. <a-radio-button value="expiring">{{ i18n "depletingSoon" }}</a-radio-button>
  180. <a-radio-button value="online">{{ i18n "online" }}</a-radio-button>
  181. </a-radio-group>
  182. </div>
  183. <a-table :columns="isMobile ? mobileColumns : columns" :row-key="dbInbound => dbInbound.id"
  184. :data-source="searchedInbounds" :scroll="isMobile ? {} : { x: 1000 }"
  185. :pagination=pagination(searchedInbounds) :expand-icon-as-cell="false" :expand-row-by-click="false"
  186. :expand-icon-column-index="0" :indent-size="0"
  187. :row-class-name="dbInbound => (dbInbound.isMultiUser() ? '' : 'hideExpandIcon')"
  188. :style="{ marginTop: '10px' }"
  189. :locale='{ filterConfirm: `{{ i18n "confirm" }}`, filterReset: `{{ i18n "reset" }}`, emptyText: `{{ i18n "noData" }}` }'>
  190. <template slot="action" slot-scope="text, dbInbound">
  191. <a-dropdown :trigger="['click']">
  192. <a-icon @click="e => e.preventDefault()" type="more"
  193. :style="{ fontSize: '20px', textDecoration: 'solid' }"></a-icon>
  194. <a-menu slot="overlay" @click="a => clickAction(a, dbInbound)"
  195. :theme="themeSwitcher.currentTheme">
  196. <a-menu-item key="edit">
  197. <a-icon type="edit"></a-icon>
  198. {{ i18n "edit" }}
  199. </a-menu-item>
  200. <a-menu-item key="qrcode"
  201. v-if="(dbInbound.isSS && !dbInbound.toInbound().isSSMultiUser) || dbInbound.isWireguard">
  202. <a-icon type="qrcode"></a-icon>
  203. {{ i18n "qrCode" }}
  204. </a-menu-item>
  205. <template v-if="dbInbound.isMultiUser()">
  206. <a-menu-item key="addClient">
  207. <a-icon type="user-add"></a-icon>
  208. {{ i18n "pages.client.add"}}
  209. </a-menu-item>
  210. <a-menu-item key="addBulkClient">
  211. <a-icon type="usergroup-add"></a-icon>
  212. {{ i18n "pages.client.bulk"}}
  213. </a-menu-item>
  214. <a-menu-item key="resetClients">
  215. <a-icon type="file-done"></a-icon>
  216. {{ i18n "pages.inbounds.resetInboundClientTraffics"}}
  217. </a-menu-item>
  218. <a-menu-item key="export">
  219. <a-icon type="export"></a-icon>
  220. {{ i18n "pages.inbounds.export"}}
  221. </a-menu-item>
  222. <a-menu-item key="subs" v-if="subSettings.enable">
  223. <a-icon type="export"></a-icon>
  224. {{ i18n "pages.inbounds.export"}} - {{ i18n "pages.settings.subSettings" }}
  225. </a-menu-item>
  226. <a-menu-item key="delDepletedClients" :style="{ color: '#FF4D4F' }">
  227. <a-icon type="rest"></a-icon>
  228. {{ i18n "pages.inbounds.delDepletedClients" }}
  229. </a-menu-item>
  230. </template>
  231. <template v-else>
  232. <a-menu-item key="showInfo">
  233. <a-icon type="info-circle"></a-icon>
  234. {{ i18n "info"}}
  235. </a-menu-item>
  236. </template>
  237. <a-menu-item key="clipboard">
  238. <a-icon type="copy"></a-icon>
  239. {{ i18n "pages.inbounds.exportInbound" }}
  240. </a-menu-item>
  241. <a-menu-item key="resetTraffic">
  242. <a-icon type="retweet"></a-icon> {{ i18n "pages.inbounds.resetTraffic" }}
  243. </a-menu-item>
  244. <a-menu-item key="clone">
  245. <a-icon type="block"></a-icon> {{ i18n "pages.inbounds.clone"}}
  246. </a-menu-item>
  247. <a-menu-item key="delete">
  248. <span :style="{ color: '#FF4D4F' }">
  249. <a-icon type="delete"></a-icon> {{ i18n "delete"}}
  250. </span>
  251. </a-menu-item>
  252. <a-menu-item v-if="isMobile">
  253. <a-switch size="small" v-model="dbInbound.enable"
  254. @change="switchEnable(dbInbound.id,dbInbound.enable)"></a-switch>
  255. {{ i18n "pages.inbounds.enable" }}
  256. </a-menu-item>
  257. </a-menu>
  258. </a-dropdown>
  259. </template>
  260. <template slot="protocol" slot-scope="text, dbInbound">
  261. <a-tag :style="{ margin: '0' }" color="purple">[[ dbInbound.protocol ]]</a-tag>
  262. <template v-if="dbInbound.isVMess || dbInbound.isVLess || dbInbound.isTrojan || dbInbound.isSS">
  263. <a-tag :style="{ margin: '0' }" color="green">[[ dbInbound.toInbound().stream.network ]]</a-tag>
  264. <a-tag :style="{ margin: '0' }" v-if="dbInbound.toInbound().stream.isTls"
  265. color="blue">TLS</a-tag>
  266. <a-tag :style="{ margin: '0' }" v-if="dbInbound.toInbound().stream.isReality"
  267. color="blue">Reality</a-tag>
  268. </template>
  269. </template>
  270. <template slot="clients" slot-scope="text, dbInbound">
  271. <template v-if="clientCount[dbInbound.id]">
  272. <a-tag :style="{ margin: '0' }" color="green">[[ clientCount[dbInbound.id].clients ]]</a-tag>
  273. <a-popover title='{{ i18n "disabled" }}' :overlay-class-name="themeSwitcher.currentTheme">
  274. <template slot="content">
  275. <div v-for="clientEmail in clientCount[dbInbound.id].deactive" :key="clientEmail"
  276. class="client-popup-item">
  277. <span>[[ clientEmail ]]</span>
  278. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  279. <template #title>
  280. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  281. </template>
  282. <a-icon type="message"
  283. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  284. </a-tooltip>
  285. </div>
  286. </template>
  287. <a-tag :style="{ margin: '0', padding: '0 2px' }"
  288. v-if="clientCount[dbInbound.id].deactive.length">[[
  289. clientCount[dbInbound.id].deactive.length ]]</a-tag>
  290. </a-popover>
  291. <a-popover title='{{ i18n "depleted" }}' :overlay-class-name="themeSwitcher.currentTheme">
  292. <template slot="content">
  293. <div v-for="clientEmail in clientCount[dbInbound.id].depleted" :key="clientEmail"
  294. class="client-popup-item">
  295. <span>[[ clientEmail ]]</span>
  296. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  297. <template #title>
  298. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  299. </template>
  300. <a-icon type="message"
  301. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  302. </a-tooltip>
  303. </div>
  304. </template>
  305. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="red"
  306. v-if="clientCount[dbInbound.id].depleted.length">[[
  307. clientCount[dbInbound.id].depleted.length ]]</a-tag>
  308. </a-popover>
  309. <a-popover title='{{ i18n "depletingSoon" }}' :overlay-class-name="themeSwitcher.currentTheme">
  310. <template slot="content">
  311. <div v-for="clientEmail in clientCount[dbInbound.id].expiring" :key="clientEmail"
  312. class="client-popup-item">
  313. <span>[[ clientEmail ]]</span>
  314. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  315. <template #title>
  316. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  317. </template>
  318. <a-icon type="message"
  319. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  320. </a-tooltip>
  321. </div>
  322. </template>
  323. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="orange"
  324. v-if="clientCount[dbInbound.id].expiring.length">[[
  325. clientCount[dbInbound.id].expiring.length ]]</a-tag>
  326. </a-popover>
  327. <a-popover title='{{ i18n "online" }}' :overlay-class-name="themeSwitcher.currentTheme">
  328. <template slot="content">
  329. <div v-for="clientEmail in clientCount[dbInbound.id].online" :key="clientEmail"
  330. class="client-popup-item">
  331. <span>[[ clientEmail ]]</span>
  332. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  333. <template #title>
  334. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  335. </template>
  336. <a-icon type="message"
  337. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  338. </a-tooltip>
  339. </div>
  340. </template>
  341. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="blue"
  342. v-if="clientCount[dbInbound.id].online.length">[[ clientCount[dbInbound.id].online.length
  343. ]]</a-tag>
  344. </a-popover>
  345. </template>
  346. </template>
  347. <template slot="traffic" slot-scope="text, dbInbound">
  348. <a-popover :overlay-class-name="themeSwitcher.currentTheme">
  349. <template slot="content">
  350. <table cellpadding="2" width="100%">
  351. <tr>
  352. <td>↑[[ SizeFormatter.sizeFormat(dbInbound.up) ]]</td>
  353. <td>↓[[ SizeFormatter.sizeFormat(dbInbound.down) ]]</td>
  354. </tr>
  355. <tr v-if="dbInbound.total > 0 && dbInbound.up + dbInbound.down < dbInbound.total">
  356. <td>{{ i18n "remained" }}</td>
  357. <td>[[ SizeFormatter.sizeFormat(dbInbound.total - dbInbound.up - dbInbound.down) ]]</td>
  358. </tr>
  359. </table>
  360. </template>
  361. <a-tag
  362. :color="ColorUtils.usageColor(dbInbound.up + dbInbound.down, app.trafficDiff, dbInbound.total)">
  363. [[ SizeFormatter.sizeFormat(dbInbound.up + dbInbound.down) ]] /
  364. <template v-if="dbInbound.total > 0">
  365. [[ SizeFormatter.sizeFormat(dbInbound.total) ]]
  366. </template>
  367. <template v-else>
  368. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  369. <path
  370. 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"
  371. fill="currentColor"></path>
  372. </svg>
  373. </template>
  374. </a-tag>
  375. </a-popover>
  376. </template>
  377. <template slot="allTimeInbound" slot-scope="text, dbInbound">
  378. <a-tag>[[ SizeFormatter.sizeFormat(dbInbound.allTime || 0) ]]</a-tag>
  379. </template>
  380. <template slot="enable" slot-scope="text, dbInbound">
  381. <a-switch v-model="dbInbound.enable"
  382. @change="switchEnable(dbInbound.id,dbInbound.enable)"></a-switch>
  383. </template>
  384. <template slot="expiryTime" slot-scope="text, dbInbound">
  385. <a-popover v-if="dbInbound.expiryTime > 0" :overlay-class-name="themeSwitcher.currentTheme">
  386. <template slot="content">
  387. [[ IntlUtil.formatDate(dbInbound.expiryTime) ]]
  388. </template>
  389. <a-tag :style="{ minWidth: '50px' }"
  390. :color="ColorUtils.usageColor(new Date().getTime(), app.expireDiff, dbInbound._expiryTime)">
  391. [[ IntlUtil.formatRelativeTime(dbInbound.expiryTime) ]]
  392. </a-tag>
  393. </a-popover>
  394. <a-tag v-else color="purple" class="infinite-tag">
  395. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  396. <path
  397. 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"
  398. fill="currentColor"></path>
  399. </svg>
  400. </a-tag>
  401. </template>
  402. <template slot="info" slot-scope="text, dbInbound">
  403. <a-popover placement="bottomRight" :overlay-class-name="themeSwitcher.currentTheme"
  404. trigger="click">
  405. <template slot="content">
  406. <table cellpadding="2">
  407. <tr>
  408. <td>{{ i18n "pages.inbounds.protocol" }}</td>
  409. <td>
  410. <a-tag :style="{ margin: '0' }" color="purple">[[ dbInbound.protocol ]]</a-tag>
  411. <template
  412. v-if="dbInbound.isVMess || dbInbound.isVLess || dbInbound.isTrojan || dbInbound.isSS">
  413. <a-tag :style="{ margin: '0' }" color="blue">[[ dbInbound.toInbound().stream.network
  414. ]]</a-tag>
  415. <a-tag :style="{ margin: '0' }" v-if="dbInbound.toInbound().stream.isTls"
  416. color="green">tls</a-tag>
  417. <a-tag :style="{ margin: '0' }" v-if="dbInbound.toInbound().stream.isReality"
  418. color="green">reality</a-tag>
  419. </template>
  420. </td>
  421. </tr>
  422. <tr>
  423. <td>{{ i18n "pages.inbounds.port" }}</td>
  424. <td><a-tag>[[ dbInbound.port ]]</a-tag></td>
  425. </tr>
  426. <tr v-if="clientCount[dbInbound.id]">
  427. <td>{{ i18n "clients" }}</td>
  428. <td>
  429. <a-tag :style="{ margin: '0' }" color="blue">[[ clientCount[dbInbound.id].clients
  430. ]]</a-tag>
  431. <a-popover title='{{ i18n "disabled" }}'
  432. :overlay-class-name="themeSwitcher.currentTheme">
  433. <template slot="content">
  434. <div v-for="clientEmail in clientCount[dbInbound.id].deactive" :key="clientEmail"
  435. class="client-popup-item">
  436. <span>[[ clientEmail ]]</span>
  437. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  438. <template #title>
  439. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  440. </template>
  441. <a-icon type="message"
  442. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  443. </a-tooltip>
  444. </div>
  445. </template>
  446. <a-tag :style="{ margin: '0', padding: '0 2px' }"
  447. v-if="clientCount[dbInbound.id].deactive.length">[[
  448. clientCount[dbInbound.id].deactive.length ]]</a-tag>
  449. </a-popover>
  450. <a-popover title='{{ i18n "depleted" }}'
  451. :overlay-class-name="themeSwitcher.currentTheme">
  452. <template slot="content">
  453. <div v-for="clientEmail in clientCount[dbInbound.id].depleted" :key="clientEmail"
  454. class="client-popup-item">
  455. <span>[[ clientEmail ]]</span>
  456. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  457. <template #title>
  458. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  459. </template>
  460. <a-icon type="message"
  461. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  462. </a-tooltip>
  463. </div>
  464. </template>
  465. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="red"
  466. v-if="clientCount[dbInbound.id].depleted.length">[[
  467. clientCount[dbInbound.id].depleted.length ]]</a-tag>
  468. </a-popover>
  469. <a-popover title='{{ i18n "depletingSoon" }}'
  470. :overlay-class-name="themeSwitcher.currentTheme">
  471. <template slot="content">
  472. <div v-for="clientEmail in clientCount[dbInbound.id].expiring" :key="clientEmail"
  473. class="client-popup-item">
  474. <span>[[ clientEmail ]]</span>
  475. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  476. <template #title>
  477. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  478. </template>
  479. <a-icon type="message"
  480. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  481. </a-tooltip>
  482. </div>
  483. </template>
  484. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="orange"
  485. v-if="clientCount[dbInbound.id].expiring.length">[[
  486. clientCount[dbInbound.id].expiring.length ]]</a-tag>
  487. </a-popover>
  488. <a-popover title='{{ i18n "online" }}' :overlay-class-name="themeSwitcher.currentTheme">
  489. <template slot="content">
  490. <div v-for="clientEmail in clientCount[dbInbound.id].online" :key="clientEmail"
  491. class="client-popup-item">
  492. <span>[[ clientEmail ]]</span>
  493. <a-tooltip :overlay-class-name="themeSwitcher.currentTheme">
  494. <template #title>
  495. [[ clientCount[dbInbound.id].comments.get(clientEmail) ]]
  496. </template>
  497. <a-icon type="message"
  498. v-if="clientCount[dbInbound.id].comments.get(clientEmail)"></a-icon>
  499. </a-tooltip>
  500. </div>
  501. </template>
  502. <a-tag :style="{ margin: '0', padding: '0 2px' }" color="green"
  503. v-if="clientCount[dbInbound.id].online.length">[[
  504. clientCount[dbInbound.id].online.length ]]</a-tag>
  505. </a-popover>
  506. </td>
  507. </tr>
  508. <tr>
  509. <td>{{ i18n "pages.inbounds.traffic" }}</td>
  510. <td>
  511. <a-popover :overlay-class-name="themeSwitcher.currentTheme">
  512. <template slot="content">
  513. <table cellpadding="2" width="100%">
  514. <tr>
  515. <td>↑[[ SizeFormatter.sizeFormat(dbInbound.up) ]]</td>
  516. <td>↓[[ SizeFormatter.sizeFormat(dbInbound.down) ]]</td>
  517. </tr>
  518. <tr
  519. v-if="dbInbound.total > 0 && dbInbound.up + dbInbound.down < dbInbound.total">
  520. <td>{{ i18n "remained" }}</td>
  521. <td>[[ SizeFormatter.sizeFormat(dbInbound.total - dbInbound.up - dbInbound.down)
  522. ]]</td>
  523. </tr>
  524. </table>
  525. </template>
  526. <a-tag
  527. :color="ColorUtils.usageColor(dbInbound.up + dbInbound.down, app.trafficDiff, dbInbound.total)">
  528. [[ SizeFormatter.sizeFormat(dbInbound.up + dbInbound.down) ]] /
  529. <template v-if="dbInbound.total > 0">
  530. [[ SizeFormatter.sizeFormat(dbInbound.total) ]]
  531. </template>
  532. <template v-else>
  533. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  534. <path
  535. 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"
  536. fill="currentColor"></path>
  537. </svg>
  538. </template>
  539. </a-tag>
  540. </a-popover>
  541. </td>
  542. </tr>
  543. <tr>
  544. <td>{{ i18n "pages.inbounds.expireDate" }}</td>
  545. <td>
  546. <a-tag :style="{ minWidth: '50px', textAlign: 'center' }"
  547. v-if="dbInbound.expiryTime > 0" :color="dbInbound.isExpiry? 'red': 'blue'">
  548. [[ IntlUtil.formatDate(dbInbound.expiryTime) ]]
  549. </a-tag>
  550. <a-tag v-else :style="{ textAlign: 'center' }" color="purple" class="infinite-tag">
  551. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  552. <path
  553. 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"
  554. fill="currentColor"></path>
  555. </svg>
  556. </a-tag>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td>{{ i18n "pages.inbounds.periodicTrafficResetTitle" }}</td>
  561. <td>
  562. <a-tag color="blue">[[ dbInbound.trafficReset ]]</a-tag>
  563. </td>
  564. </tr>
  565. </table>
  566. </template>
  567. <a-badge>
  568. <a-icon v-if="!dbInbound.enable" slot="count" type="pause-circle"
  569. :style="{ color: themeSwitcher.isDarkTheme ? '#2c3950' : '#bcbcbc' }"></a-icon>
  570. <a-button shape="round" size="small" :style="{ fontSize: '14px', padding: '0 10px' }">
  571. <a-icon type="info"></a-icon>
  572. </a-button>
  573. </a-badge>
  574. </a-popover>
  575. </template>
  576. <template slot="expandedRowRender" slot-scope="record">
  577. <a-table :row-key="client => client.id" :columns="isMobile ? innerMobileColumns : innerColumns"
  578. :data-source="getInboundClients(record)" :pagination=pagination(getInboundClients(record))
  579. :style="{ margin: `-10px ${isMobile ? '2px' : '22px'} -11px` }">
  580. {{template "component/aClientTable"}}
  581. </a-table>
  582. </template>
  583. </a-table>
  584. </a-space>
  585. </a-card>
  586. </a-col>
  587. </a-row>
  588. </transition>
  589. </a-spin>
  590. </a-layout-content>
  591. </a-layout>
  592. </a-layout>
  593. {{template "page/body_scripts" .}}
  594. <script src="{{ .base_path }}assets/qrcode/qrious2.min.js?{{ .cur_ver }}"></script>
  595. <script src="{{ .base_path }}assets/uri/URI.min.js?{{ .cur_ver }}"></script>
  596. <script src="{{ .base_path }}assets/js/model/reality_targets.js?{{ .cur_ver }}"></script>
  597. <script src="{{ .base_path }}assets/js/model/inbound.js?{{ .cur_ver }}"></script>
  598. <script src="{{ .base_path }}assets/js/model/dbinbound.js?{{ .cur_ver }}"></script>
  599. {{template "component/aSidebar" .}}
  600. {{template "component/aThemeSwitch" .}}
  601. {{template "component/aCustomStatistic" .}}
  602. {{template "component/aPersianDatepicker" .}}
  603. {{template "modals/inboundModal"}}
  604. {{template "modals/promptModal"}}
  605. {{template "modals/qrcodeModal"}}
  606. {{template "modals/textModal"}}
  607. {{template "modals/inboundInfoModal"}}
  608. {{template "modals/clientsModal"}}
  609. {{template "modals/clientsBulkModal"}}
  610. <script>
  611. const columns = [{
  612. title: "ID",
  613. align: 'right',
  614. dataIndex: "id",
  615. width: 30,
  616. responsive: ["xs"],
  617. }, {
  618. title: '{{ i18n "pages.inbounds.operate" }}',
  619. align: 'center',
  620. width: 30,
  621. scopedSlots: { customRender: 'action' },
  622. }, {
  623. title: '{{ i18n "pages.inbounds.enable" }}',
  624. align: 'center',
  625. width: 35,
  626. scopedSlots: { customRender: 'enable' },
  627. }, {
  628. title: '{{ i18n "pages.inbounds.remark" }}',
  629. align: 'center',
  630. width: 60,
  631. dataIndex: "remark",
  632. }, {
  633. title: '{{ i18n "pages.inbounds.port" }}',
  634. align: 'center',
  635. dataIndex: "port",
  636. width: 40,
  637. }, {
  638. title: '{{ i18n "pages.inbounds.protocol" }}',
  639. align: 'left',
  640. width: 70,
  641. scopedSlots: { customRender: 'protocol' },
  642. }, {
  643. title: '{{ i18n "clients" }}',
  644. align: 'left',
  645. width: 50,
  646. scopedSlots: { customRender: 'clients' },
  647. }, {
  648. title: '{{ i18n "pages.inbounds.traffic" }}',
  649. align: 'center',
  650. width: 90,
  651. scopedSlots: { customRender: 'traffic' },
  652. }, {
  653. title: '{{ i18n "pages.inbounds.allTimeTraffic" }}',
  654. align: 'center',
  655. width: 60,
  656. scopedSlots: { customRender: 'allTimeInbound' },
  657. }, {
  658. title: '{{ i18n "pages.inbounds.expireDate" }}',
  659. align: 'center',
  660. width: 40,
  661. scopedSlots: { customRender: 'expiryTime' },
  662. }];
  663. const mobileColumns = [{
  664. title: "ID",
  665. align: 'right',
  666. dataIndex: "id",
  667. width: 10,
  668. responsive: ["s"],
  669. }, {
  670. title: '{{ i18n "pages.inbounds.operate" }}',
  671. align: 'center',
  672. width: 25,
  673. scopedSlots: { customRender: 'action' },
  674. }, {
  675. title: '{{ i18n "pages.inbounds.remark" }}',
  676. align: 'left',
  677. width: 70,
  678. dataIndex: "remark",
  679. }, {
  680. title: '{{ i18n "pages.inbounds.info" }}',
  681. align: 'center',
  682. width: 10,
  683. scopedSlots: { customRender: 'info' },
  684. }];
  685. const innerColumns = [
  686. { title: '{{ i18n "pages.inbounds.operate" }}', width: 70, scopedSlots: { customRender: 'actions' } },
  687. { title: '{{ i18n "pages.inbounds.enable" }}', width: 30, scopedSlots: { customRender: 'enable' } },
  688. { title: '{{ i18n "online" }}', width: 32, scopedSlots: { customRender: 'online' } },
  689. { title: '{{ i18n "pages.inbounds.client" }}', width: 80, scopedSlots: { customRender: 'client' } },
  690. { title: '{{ i18n "pages.inbounds.traffic" }}', width: 80, align: 'center', scopedSlots: { customRender: 'traffic' } },
  691. { title: '{{ i18n "pages.inbounds.allTimeTraffic" }}', width: 60, align: 'center', scopedSlots: { customRender: 'allTime' } },
  692. { title: '{{ i18n "pages.inbounds.expireDate" }}', width: 80, align: 'center', scopedSlots: { customRender: 'expiryTime' } },
  693. ];
  694. const innerMobileColumns = [
  695. { title: '{{ i18n "pages.inbounds.operate" }}', width: 10, align: 'center', scopedSlots: { customRender: 'actionMenu' } },
  696. { title: '{{ i18n "pages.inbounds.client" }}', width: 90, align: 'left', scopedSlots: { customRender: 'client' } },
  697. { title: '{{ i18n "pages.inbounds.info" }}', width: 10, align: 'center', scopedSlots: { customRender: 'info' } },
  698. ];
  699. const app = new Vue({
  700. delimiters: ['[[', ']]'],
  701. el: '#app',
  702. mixins: [MediaQueryMixin],
  703. data: {
  704. themeSwitcher,
  705. persianDatepicker,
  706. loadingStates: {
  707. fetched: false,
  708. spinning: false
  709. },
  710. inbounds: [],
  711. dbInbounds: [],
  712. searchKey: '',
  713. enableFilter: false,
  714. filterBy: '',
  715. searchedInbounds: [],
  716. expireDiff: 0,
  717. trafficDiff: 0,
  718. defaultCert: '',
  719. defaultKey: '',
  720. clientCount: [],
  721. onlineClients: [],
  722. lastOnlineMap: {},
  723. isRefreshEnabled: localStorage.getItem("isRefreshEnabled") === "true" ? true : false,
  724. refreshing: false,
  725. refreshInterval: Number(localStorage.getItem("refreshInterval")) || 5000,
  726. subSettings: {
  727. enable: false,
  728. subTitle: '',
  729. subURI: '',
  730. subJsonURI: '',
  731. subJsonEnable: false,
  732. },
  733. remarkModel: '-ieo',
  734. datepicker: 'gregorian',
  735. tgBotEnable: false,
  736. showAlert: false,
  737. ipLimitEnable: false,
  738. pageSize: 0,
  739. },
  740. methods: {
  741. loading(spinning = true) {
  742. this.loadingStates.spinning = spinning;
  743. },
  744. async getDBInbounds() {
  745. this.refreshing = true;
  746. const msg = await HttpUtil.get('/panel/api/inbounds/list');
  747. if (!msg.success) {
  748. this.refreshing = false;
  749. return;
  750. }
  751. await this.getLastOnlineMap();
  752. await this.getOnlineUsers();
  753. this.setInbounds(msg.obj);
  754. setTimeout(() => {
  755. this.refreshing = false;
  756. }, 500);
  757. },
  758. async getOnlineUsers() {
  759. const msg = await HttpUtil.post('/panel/api/inbounds/onlines');
  760. if (!msg.success) {
  761. return;
  762. }
  763. this.onlineClients = msg.obj != null ? msg.obj : [];
  764. },
  765. async getLastOnlineMap() {
  766. const msg = await HttpUtil.post('/panel/api/inbounds/lastOnline');
  767. if (!msg.success || !msg.obj) return;
  768. this.lastOnlineMap = msg.obj || {}
  769. },
  770. async getDefaultSettings() {
  771. const msg = await HttpUtil.post('/panel/setting/defaultSettings');
  772. if (!msg.success) {
  773. return;
  774. }
  775. with (msg.obj) {
  776. this.expireDiff = expireDiff * 86400000;
  777. this.trafficDiff = trafficDiff * 1073741824;
  778. this.defaultCert = defaultCert;
  779. this.defaultKey = defaultKey;
  780. this.tgBotEnable = tgBotEnable;
  781. this.subSettings = {
  782. enable: subEnable,
  783. subTitle: subTitle,
  784. subURI: subURI,
  785. subJsonURI: subJsonURI,
  786. subJsonEnable: subJsonEnable,
  787. };
  788. this.pageSize = pageSize;
  789. this.remarkModel = remarkModel;
  790. this.datepicker = datepicker;
  791. this.ipLimitEnable = ipLimitEnable;
  792. }
  793. },
  794. setInbounds(dbInbounds) {
  795. this.inbounds.splice(0);
  796. this.dbInbounds.splice(0);
  797. this.clientCount.splice(0);
  798. for (const inbound of dbInbounds) {
  799. const dbInbound = new DBInbound(inbound);
  800. to_inbound = dbInbound.toInbound()
  801. this.inbounds.push(to_inbound);
  802. this.dbInbounds.push(dbInbound);
  803. if ([Protocols.VMESS, Protocols.VLESS, Protocols.TROJAN, Protocols.SHADOWSOCKS].includes(inbound.protocol)) {
  804. if (dbInbound.isSS && (!to_inbound.isSSMultiUser)) {
  805. continue;
  806. }
  807. this.clientCount[inbound.id] = this.getClientCounts(inbound, to_inbound);
  808. }
  809. }
  810. if (!this.loadingStates.fetched) {
  811. this.loadingStates.fetched = true
  812. }
  813. if (this.enableFilter) {
  814. this.filterInbounds();
  815. } else {
  816. this.searchInbounds(this.searchKey);
  817. }
  818. },
  819. getClientCounts(dbInbound, inbound) {
  820. let clientCount = 0, active = [], deactive = [], depleted = [], expiring = [], online = [], comments = new Map();
  821. clients = inbound.clients;
  822. clientStats = dbInbound.clientStats
  823. now = new Date().getTime()
  824. if (clients) {
  825. clientCount = clients.length;
  826. if (dbInbound.enable) {
  827. clients.forEach(client => {
  828. if (client.comment) {
  829. comments.set(client.email, client.comment)
  830. }
  831. if (client.enable) {
  832. active.push(client.email);
  833. if (this.isClientOnline(client.email)) online.push(client.email);
  834. } else {
  835. deactive.push(client.email);
  836. }
  837. });
  838. clientStats.forEach(stats => {
  839. const exhausted = stats.total > 0 && (stats.up + stats.down) >= stats.total;
  840. const expired = stats.expiryTime > 0 && stats.expiryTime <= now;
  841. if (expired || exhausted) {
  842. depleted.push(stats.email);
  843. } else {
  844. const expiringSoon = (stats.expiryTime > 0 && (stats.expiryTime - now < this.expireDiff)) ||
  845. (stats.total > 0 && (stats.total - (stats.up + stats.down) < this.trafficDiff));
  846. if (expiringSoon) expiring.push(stats.email);
  847. }
  848. });
  849. } else {
  850. clients.forEach(client => {
  851. deactive.push(client.email);
  852. });
  853. }
  854. }
  855. return {
  856. clients: clientCount,
  857. active: active,
  858. deactive: deactive,
  859. depleted: depleted,
  860. expiring: expiring,
  861. online: online,
  862. comments: comments,
  863. };
  864. },
  865. searchInbounds(key) {
  866. if (ObjectUtil.isEmpty(key)) {
  867. this.searchedInbounds = this.dbInbounds.slice();
  868. } else {
  869. this.searchedInbounds.splice(0, this.searchedInbounds.length);
  870. this.dbInbounds.forEach(inbound => {
  871. if (ObjectUtil.deepSearch(inbound, key)) {
  872. const newInbound = new DBInbound(inbound);
  873. const inboundSettings = JSON.parse(inbound.settings);
  874. if (inboundSettings.hasOwnProperty('clients')) {
  875. const searchedSettings = { "clients": [] };
  876. inboundSettings.clients.forEach(client => {
  877. if (ObjectUtil.deepSearch(client, key)) {
  878. searchedSettings.clients.push(client);
  879. }
  880. });
  881. newInbound.settings = Inbound.Settings.fromJson(inbound.protocol, searchedSettings);
  882. }
  883. this.searchedInbounds.push(newInbound);
  884. }
  885. });
  886. }
  887. },
  888. filterInbounds() {
  889. if (ObjectUtil.isEmpty(this.filterBy)) {
  890. this.searchedInbounds = this.dbInbounds.slice();
  891. } else {
  892. this.searchedInbounds.splice(0, this.searchedInbounds.length);
  893. this.dbInbounds.forEach(inbound => {
  894. const newInbound = new DBInbound(inbound);
  895. const inboundSettings = JSON.parse(inbound.settings);
  896. if (this.clientCount[inbound.id] && this.clientCount[inbound.id].hasOwnProperty(this.filterBy)) {
  897. const list = this.clientCount[inbound.id][this.filterBy];
  898. if (list.length > 0) {
  899. const filteredSettings = { "clients": [] };
  900. if (inboundSettings.clients) {
  901. inboundSettings.clients.forEach(client => {
  902. if (list.includes(client.email)) {
  903. filteredSettings.clients.push(client);
  904. }
  905. });
  906. }
  907. newInbound.settings = Inbound.Settings.fromJson(inbound.protocol, filteredSettings);
  908. this.searchedInbounds.push(newInbound);
  909. }
  910. }
  911. });
  912. }
  913. },
  914. toggleFilter() {
  915. if (this.enableFilter) {
  916. this.searchKey = '';
  917. } else {
  918. this.filterBy = '';
  919. this.searchedInbounds = this.dbInbounds.slice();
  920. }
  921. },
  922. generalActions(action) {
  923. switch (action.key) {
  924. case "import":
  925. this.importInbound();
  926. break;
  927. case "export":
  928. this.exportAllLinks();
  929. break;
  930. case "subs":
  931. this.exportAllSubs();
  932. break;
  933. case "resetInbounds":
  934. this.resetAllTraffic();
  935. break;
  936. case "resetClients":
  937. this.resetAllClientTraffics(-1);
  938. break;
  939. case "delDepletedClients":
  940. this.delDepletedClients(-1)
  941. break;
  942. }
  943. },
  944. clickAction(action, dbInbound) {
  945. switch (action.key) {
  946. case "qrcode":
  947. this.showQrcode(dbInbound.id);
  948. break;
  949. case "showInfo":
  950. this.showInfo(dbInbound.id);
  951. break;
  952. case "edit":
  953. this.openEditInbound(dbInbound.id);
  954. break;
  955. case "addClient":
  956. this.openAddClient(dbInbound.id)
  957. break;
  958. case "addBulkClient":
  959. this.openAddBulkClient(dbInbound.id)
  960. break;
  961. case "export":
  962. this.inboundLinks(dbInbound.id);
  963. break;
  964. case "subs":
  965. this.exportSubs(dbInbound.id);
  966. break;
  967. case "clipboard":
  968. this.copy(dbInbound.id);
  969. break;
  970. case "resetTraffic":
  971. this.resetTraffic(dbInbound.id);
  972. break;
  973. case "resetClients":
  974. this.resetAllClientTraffics(dbInbound.id);
  975. break;
  976. case "clone":
  977. this.openCloneInbound(dbInbound);
  978. break;
  979. case "delete":
  980. this.delInbound(dbInbound.id);
  981. break;
  982. case "delDepletedClients":
  983. this.delDepletedClients(dbInbound.id)
  984. break;
  985. }
  986. },
  987. openCloneInbound(dbInbound) {
  988. this.$confirm({
  989. title: '{{ i18n "pages.inbounds.cloneInbound"}} \"' + dbInbound.remark + '\"',
  990. content: '{{ i18n "pages.inbounds.cloneInboundContent"}}',
  991. okText: '{{ i18n "pages.inbounds.cloneInboundOk"}}',
  992. class: themeSwitcher.currentTheme,
  993. cancelText: '{{ i18n "cancel" }}',
  994. onOk: () => {
  995. const baseInbound = dbInbound.toInbound();
  996. dbInbound.up = 0;
  997. dbInbound.down = 0;
  998. this.cloneInbound(baseInbound, dbInbound);
  999. },
  1000. });
  1001. },
  1002. async cloneInbound(baseInbound, dbInbound) {
  1003. const data = {
  1004. up: dbInbound.up,
  1005. down: dbInbound.down,
  1006. total: dbInbound.total,
  1007. remark: dbInbound.remark + " - Cloned",
  1008. enable: dbInbound.enable,
  1009. expiryTime: dbInbound.expiryTime,
  1010. trafficReset: dbInbound.trafficReset,
  1011. lastTrafficResetTime: dbInbound.lastTrafficResetTime,
  1012. listen: '',
  1013. port: RandomUtil.randomInteger(10000, 60000),
  1014. protocol: baseInbound.protocol,
  1015. settings: Inbound.Settings.getSettings(baseInbound.protocol).toString(),
  1016. streamSettings: baseInbound.stream.toString(),
  1017. sniffing: baseInbound.sniffing.toString(),
  1018. };
  1019. await this.submit('/panel/api/inbounds/add', data, inModal);
  1020. },
  1021. openAddInbound() {
  1022. inModal.show({
  1023. title: '{{ i18n "pages.inbounds.addInbound"}}',
  1024. okText: '{{ i18n "create"}}',
  1025. cancelText: '{{ i18n "close" }}',
  1026. confirm: async (inbound, dbInbound) => {
  1027. await this.addInbound(inbound, dbInbound, inModal);
  1028. },
  1029. isEdit: false
  1030. });
  1031. },
  1032. openEditInbound(dbInboundId) {
  1033. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1034. const inbound = dbInbound.toInbound();
  1035. inModal.show({
  1036. title: '{{ i18n "pages.inbounds.modifyInbound"}}',
  1037. okText: '{{ i18n "update"}}',
  1038. cancelText: '{{ i18n "close" }}',
  1039. inbound: inbound,
  1040. dbInbound: dbInbound,
  1041. confirm: async (inbound, dbInbound) => {
  1042. await this.updateInbound(inbound, dbInbound);
  1043. },
  1044. isEdit: true
  1045. });
  1046. },
  1047. async addInbound(inbound, dbInbound) {
  1048. const data = {
  1049. up: dbInbound.up,
  1050. down: dbInbound.down,
  1051. total: dbInbound.total,
  1052. remark: dbInbound.remark,
  1053. enable: dbInbound.enable,
  1054. expiryTime: dbInbound.expiryTime,
  1055. trafficReset: dbInbound.trafficReset,
  1056. lastTrafficResetTime: dbInbound.lastTrafficResetTime,
  1057. listen: inbound.listen,
  1058. port: inbound.port,
  1059. protocol: inbound.protocol,
  1060. settings: inbound.settings.toString(),
  1061. };
  1062. if (inbound.canEnableStream()) {
  1063. data.streamSettings = inbound.stream.toString();
  1064. } else if (inbound.stream?.sockopt) {
  1065. data.streamSettings = JSON.stringify({ sockopt: inbound.stream.sockopt.toJson() }, null, 2);
  1066. }
  1067. data.sniffing = inbound.sniffing.toString();
  1068. await this.submit('/panel/api/inbounds/add', data, inModal);
  1069. },
  1070. async updateInbound(inbound, dbInbound) {
  1071. const data = {
  1072. up: dbInbound.up,
  1073. down: dbInbound.down,
  1074. total: dbInbound.total,
  1075. remark: dbInbound.remark,
  1076. enable: dbInbound.enable,
  1077. expiryTime: dbInbound.expiryTime,
  1078. trafficReset: dbInbound.trafficReset,
  1079. lastTrafficResetTime: dbInbound.lastTrafficResetTime,
  1080. listen: inbound.listen,
  1081. port: inbound.port,
  1082. protocol: inbound.protocol,
  1083. settings: inbound.settings.toString(),
  1084. };
  1085. if (inbound.canEnableStream()) {
  1086. data.streamSettings = inbound.stream.toString();
  1087. } else if (inbound.stream?.sockopt) {
  1088. data.streamSettings = JSON.stringify({ sockopt: inbound.stream.sockopt.toJson() }, null, 2);
  1089. }
  1090. data.sniffing = inbound.sniffing.toString();
  1091. await this.submit(`/panel/api/inbounds/update/${dbInbound.id}`, data, inModal);
  1092. },
  1093. openAddClient(dbInboundId) {
  1094. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1095. clientModal.show({
  1096. title: '{{ i18n "pages.client.add"}}',
  1097. okText: '{{ i18n "pages.client.submitAdd"}}',
  1098. dbInbound: dbInbound,
  1099. confirm: async (clients, dbInboundId) => {
  1100. await this.addClient(clients, dbInboundId, clientModal);
  1101. },
  1102. isEdit: false
  1103. });
  1104. },
  1105. openAddBulkClient(dbInboundId) {
  1106. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1107. clientsBulkModal.show({
  1108. title: '{{ i18n "pages.client.bulk"}} ' + dbInbound.remark,
  1109. okText: '{{ i18n "pages.client.bulk"}}',
  1110. dbInbound: dbInbound,
  1111. confirm: async (clients, dbInboundId) => {
  1112. await this.addClient(clients, dbInboundId, clientsBulkModal);
  1113. },
  1114. });
  1115. },
  1116. openEditClient(dbInboundId, client) {
  1117. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1118. clients = this.getInboundClients(dbInbound);
  1119. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1120. clientModal.show({
  1121. title: '{{ i18n "pages.client.edit"}}',
  1122. okText: '{{ i18n "pages.client.submitEdit"}}',
  1123. dbInbound: dbInbound,
  1124. index: index,
  1125. confirm: async (client, dbInboundId, clientId) => {
  1126. clientModal.loading();
  1127. await this.updateClient(client, dbInboundId, clientId);
  1128. clientModal.close();
  1129. },
  1130. isEdit: true
  1131. });
  1132. },
  1133. findIndexOfClient(protocol, clients, client) {
  1134. switch (protocol) {
  1135. case Protocols.TROJAN:
  1136. case Protocols.SHADOWSOCKS:
  1137. return clients.findIndex(item => item.password === client.password && item.email === client.email);
  1138. default: return clients.findIndex(item => item.id === client.id && item.email === client.email);
  1139. }
  1140. },
  1141. async addClient(clients, dbInboundId, modal) {
  1142. const data = {
  1143. id: dbInboundId,
  1144. settings: '{"clients": [' + clients.toString() + ']}',
  1145. };
  1146. await this.submit(`/panel/api/inbounds/addClient`, data, modal);
  1147. },
  1148. async updateClient(client, dbInboundId, clientId) {
  1149. const data = {
  1150. id: dbInboundId,
  1151. settings: '{"clients": [' + client.toString() + ']}',
  1152. };
  1153. await this.submit(`/panel/api/inbounds/updateClient/${clientId}`, data, clientModal);
  1154. },
  1155. resetTraffic(dbInboundId) {
  1156. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1157. this.$confirm({
  1158. title: '{{ i18n "pages.inbounds.resetTraffic"}}' + ' #' + dbInboundId,
  1159. content: '{{ i18n "pages.inbounds.resetTrafficContent"}}',
  1160. class: themeSwitcher.currentTheme,
  1161. okText: '{{ i18n "reset"}}',
  1162. cancelText: '{{ i18n "cancel"}}',
  1163. onOk: () => {
  1164. const inbound = dbInbound.toInbound();
  1165. dbInbound.up = 0;
  1166. dbInbound.down = 0;
  1167. this.updateInbound(inbound, dbInbound);
  1168. },
  1169. });
  1170. },
  1171. delInbound(dbInboundId) {
  1172. this.$confirm({
  1173. title: '{{ i18n "pages.inbounds.deleteInbound"}}' + ' #' + dbInboundId,
  1174. content: '{{ i18n "pages.inbounds.deleteInboundContent"}}',
  1175. class: themeSwitcher.currentTheme,
  1176. okText: '{{ i18n "delete"}}',
  1177. cancelText: '{{ i18n "cancel"}}',
  1178. onOk: () => this.submit('/panel/api/inbounds/del/' + dbInboundId),
  1179. });
  1180. },
  1181. delClient(dbInboundId, client, confirmation = true) {
  1182. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1183. clientId = this.getClientId(dbInbound.protocol, client);
  1184. if (confirmation) {
  1185. this.$confirm({
  1186. title: '{{ i18n "pages.inbounds.deleteClient"}}' + ' ' + client.email,
  1187. content: '{{ i18n "pages.inbounds.deleteClientContent"}}',
  1188. class: themeSwitcher.currentTheme,
  1189. okText: '{{ i18n "delete"}}',
  1190. cancelText: '{{ i18n "cancel"}}',
  1191. onOk: () => this.submit(`/panel/api/inbounds/${dbInboundId}/delClient/${clientId}`),
  1192. });
  1193. } else {
  1194. this.submit(`/panel/api/inbounds/${dbInboundId}/delClient/${clientId}`);
  1195. }
  1196. },
  1197. getSubGroupClients(dbInbounds, currentClient) {
  1198. const response = {
  1199. inbounds: [],
  1200. clients: [],
  1201. editIds: []
  1202. }
  1203. if (dbInbounds && dbInbounds.length > 0 && currentClient) {
  1204. dbInbounds.forEach((dbInboundItem) => {
  1205. const dbInbound = new DBInbound(dbInboundItem);
  1206. if (dbInbound) {
  1207. const inbound = dbInbound.toInbound();
  1208. if (inbound) {
  1209. const clients = inbound.clients;
  1210. if (clients.length > 0) {
  1211. clients.forEach((client) => {
  1212. if (client['subId'] === currentClient['subId']) {
  1213. client['inboundId'] = dbInboundItem.id
  1214. client['clientId'] = this.getClientId(dbInbound.protocol, client)
  1215. response.inbounds.push(dbInboundItem.id)
  1216. response.clients.push(client)
  1217. response.editIds.push(client['clientId'])
  1218. }
  1219. })
  1220. }
  1221. }
  1222. }
  1223. })
  1224. }
  1225. return response;
  1226. },
  1227. getClientId(protocol, client) {
  1228. switch (protocol) {
  1229. case Protocols.TROJAN: return client.password;
  1230. case Protocols.SHADOWSOCKS: return client.email;
  1231. default: return client.id;
  1232. }
  1233. },
  1234. checkFallback(dbInbound) {
  1235. newDbInbound = new DBInbound(dbInbound);
  1236. if (dbInbound.listen.startsWith("@")) {
  1237. rootInbound = this.inbounds.find((i) =>
  1238. i.isTcp &&
  1239. ['trojan', 'vless'].includes(i.protocol) &&
  1240. i.settings.fallbacks.find(f => f.dest === dbInbound.listen)
  1241. );
  1242. if (rootInbound) {
  1243. newDbInbound.listen = rootInbound.listen;
  1244. newDbInbound.port = rootInbound.port;
  1245. newInbound = newDbInbound.toInbound();
  1246. newInbound.stream.security = rootInbound.stream.security;
  1247. newInbound.stream.tls = rootInbound.stream.tls;
  1248. newInbound.stream.externalProxy = rootInbound.stream.externalProxy;
  1249. newDbInbound.streamSettings = newInbound.stream.toString();
  1250. }
  1251. }
  1252. return newDbInbound;
  1253. },
  1254. showQrcode(dbInboundId, client) {
  1255. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1256. newDbInbound = this.checkFallback(dbInbound);
  1257. qrModal.show('{{ i18n "qrCode"}}', newDbInbound, client);
  1258. },
  1259. showInfo(dbInboundId, client) {
  1260. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1261. index = 0;
  1262. if (dbInbound.isMultiUser()) {
  1263. inbound = dbInbound.toInbound();
  1264. clients = inbound.clients;
  1265. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1266. }
  1267. newDbInbound = this.checkFallback(dbInbound);
  1268. infoModal.show(newDbInbound, index);
  1269. },
  1270. switchEnable(dbInboundId, state) {
  1271. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1272. dbInbound.enable = state;
  1273. this.submit(`/panel/api/inbounds/update/${dbInboundId}`, dbInbound);
  1274. },
  1275. async switchEnableClient(dbInboundId, client) {
  1276. this.loading()
  1277. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1278. inbound = dbInbound.toInbound();
  1279. clients = inbound.clients;
  1280. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1281. clients[index].enable = !clients[index].enable;
  1282. clientId = this.getClientId(dbInbound.protocol, clients[index]);
  1283. await this.updateClient(clients[index], dbInboundId, clientId);
  1284. this.loading(false);
  1285. },
  1286. async submit(url, data, modal) {
  1287. const msg = await HttpUtil.postWithModal(url, data, modal);
  1288. if (msg.success) {
  1289. await this.getDBInbounds();
  1290. }
  1291. },
  1292. getInboundClients(dbInbound) {
  1293. return dbInbound.toInbound().clients;
  1294. },
  1295. resetClientTraffic(client, dbInboundId, confirmation = true) {
  1296. if (confirmation) {
  1297. this.$confirm({
  1298. title: '{{ i18n "pages.inbounds.resetTraffic"}}' + ' ' + client.email,
  1299. content: '{{ i18n "pages.inbounds.resetTrafficContent"}}',
  1300. class: themeSwitcher.currentTheme,
  1301. okText: '{{ i18n "reset"}}',
  1302. cancelText: '{{ i18n "cancel"}}',
  1303. onOk: () => this.submit('/panel/api/inbounds/' + dbInboundId + '/resetClientTraffic/' + client.email),
  1304. })
  1305. } else {
  1306. this.submit('/panel/api/inbounds/' + dbInboundId + '/resetClientTraffic/' + client.email);
  1307. }
  1308. },
  1309. resetAllTraffic() {
  1310. this.$confirm({
  1311. title: '{{ i18n "pages.inbounds.resetAllTrafficTitle"}}',
  1312. content: '{{ i18n "pages.inbounds.resetAllTrafficContent"}}',
  1313. class: themeSwitcher.currentTheme,
  1314. okText: '{{ i18n "reset"}}',
  1315. cancelText: '{{ i18n "cancel"}}',
  1316. onOk: () => this.submit('/panel/api/inbounds/resetAllTraffics'),
  1317. });
  1318. },
  1319. resetAllClientTraffics(dbInboundId) {
  1320. this.$confirm({
  1321. title: dbInboundId > 0 ? '{{ i18n "pages.inbounds.resetInboundClientTrafficTitle"}}' : '{{ i18n "pages.inbounds.resetAllClientTrafficTitle"}}',
  1322. content: dbInboundId > 0 ? '{{ i18n "pages.inbounds.resetInboundClientTrafficContent"}}' : '{{ i18n "pages.inbounds.resetAllClientTrafficContent"}}',
  1323. class: themeSwitcher.currentTheme,
  1324. okText: '{{ i18n "reset"}}',
  1325. cancelText: '{{ i18n "cancel"}}',
  1326. onOk: () => this.submit('/panel/api/inbounds/resetAllClientTraffics/' + dbInboundId),
  1327. })
  1328. },
  1329. delDepletedClients(dbInboundId) {
  1330. this.$confirm({
  1331. title: '{{ i18n "pages.inbounds.delDepletedClientsTitle"}}',
  1332. content: '{{ i18n "pages.inbounds.delDepletedClientsContent"}}',
  1333. class: themeSwitcher.currentTheme,
  1334. okText: '{{ i18n "delete"}}',
  1335. cancelText: '{{ i18n "cancel"}}',
  1336. onOk: () => this.submit('/panel/api/inbounds/delDepletedClients/' + dbInboundId),
  1337. })
  1338. },
  1339. isExpiry(dbInbound, index) {
  1340. return dbInbound.toInbound().isExpiry(index);
  1341. },
  1342. getUpStats(dbInbound, email) {
  1343. if (email.length == 0) return 0;
  1344. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1345. return clientStats ? clientStats.up : 0;
  1346. },
  1347. getDownStats(dbInbound, email) {
  1348. if (email.length == 0) return 0;
  1349. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1350. return clientStats ? clientStats.down : 0;
  1351. },
  1352. getSumStats(dbInbound, email) {
  1353. if (email.length == 0) return 0;
  1354. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1355. return clientStats ? clientStats.up + clientStats.down : 0;
  1356. },
  1357. getAllTimeClient(dbInbound, email) {
  1358. if (email.length == 0) return 0;
  1359. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1360. if (!clientStats) return 0;
  1361. return clientStats.allTime || (clientStats.up + clientStats.down);
  1362. },
  1363. getRemStats(dbInbound, email) {
  1364. if (email.length == 0) return 0;
  1365. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1366. if (!clientStats) return 0;
  1367. remained = clientStats.total - (clientStats.up + clientStats.down);
  1368. return remained > 0 ? remained : 0;
  1369. },
  1370. clientStatsColor(dbInbound, email) {
  1371. if (email.length == 0) return ColorUtils.clientUsageColor();
  1372. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1373. return ColorUtils.clientUsageColor(clientStats, app.trafficDiff)
  1374. },
  1375. statsProgress(dbInbound, email) {
  1376. if (email.length == 0) return 100;
  1377. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1378. if (!clientStats) return 0;
  1379. if (clientStats.total == 0) return 100;
  1380. return 100 * (clientStats.down + clientStats.up) / clientStats.total;
  1381. },
  1382. expireProgress(expTime, reset) {
  1383. now = new Date().getTime();
  1384. remainedSeconds = expTime < 0 ? -expTime / 1000 : (expTime - now) / 1000;
  1385. resetSeconds = reset * 86400;
  1386. if (remainedSeconds >= resetSeconds) return 0;
  1387. return 100 * (1 - (remainedSeconds / resetSeconds));
  1388. },
  1389. statsExpColor(dbInbound, email) {
  1390. if (email.length == 0) return '#7a316f';
  1391. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1392. if (!clientStats) return '#7a316f';
  1393. statsColor = ColorUtils.usageColor(clientStats.down + clientStats.up, this.trafficDiff, clientStats.total);
  1394. expColor = ColorUtils.usageColor(new Date().getTime(), this.expireDiff, clientStats.expiryTime);
  1395. switch (true) {
  1396. case statsColor == "red" || expColor == "red":
  1397. return "#cf3c3c"; // Red
  1398. case statsColor == "orange" || expColor == "orange":
  1399. return "#f37b24"; // Orange
  1400. case statsColor == "green" || expColor == "green":
  1401. return "#008771"; // Green
  1402. default:
  1403. return "#7a316f"; // purple
  1404. }
  1405. },
  1406. isClientEnabled(dbInbound, email) {
  1407. clientStats = dbInbound.clientStats ? dbInbound.clientStats.find(stats => stats.email === email) : null;
  1408. return clientStats ? clientStats['enable'] : true;
  1409. },
  1410. isClientDepleted(dbInbound, email) {
  1411. if (!email || !dbInbound || !dbInbound.clientStats) return false;
  1412. const stats = dbInbound.clientStats.find(s => s.email === email);
  1413. if (!stats) return false;
  1414. const total = stats.total ?? 0;
  1415. const used = (stats.up ?? 0) + (stats.down ?? 0);
  1416. const hasTotal = total > 0;
  1417. const exhausted = hasTotal && used >= total;
  1418. const expiryTime = stats.expiryTime ?? 0;
  1419. const hasExpiry = expiryTime > 0;
  1420. const now = Date.now();
  1421. const expired = hasExpiry && expiryTime <= now;
  1422. return expired || exhausted;
  1423. },
  1424. isClientOnline(email) {
  1425. return this.onlineClients.includes(email);
  1426. },
  1427. getLastOnline(email) {
  1428. return this.lastOnlineMap[email] || null
  1429. },
  1430. formatLastOnline(email) {
  1431. const ts = this.getLastOnline(email)
  1432. if (!ts) return '-'
  1433. return IntlUtil.formatDate(ts)
  1434. },
  1435. isRemovable(dbInboundId) {
  1436. return this.getInboundClients(this.dbInbounds.find(row => row.id === dbInboundId)).length > 1;
  1437. },
  1438. inboundLinks(dbInboundId) {
  1439. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1440. newDbInbound = this.checkFallback(dbInbound);
  1441. txtModal.show('{{ i18n "pages.inbounds.export"}}', newDbInbound.genInboundLinks(this.remarkModel), newDbInbound.remark);
  1442. },
  1443. exportSubs(dbInboundId) {
  1444. const dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1445. const clients = this.getInboundClients(dbInbound);
  1446. let subLinks = []
  1447. if (clients != null) {
  1448. clients.forEach(c => {
  1449. if (c.subId && c.subId.length > 0) {
  1450. subLinks.push(this.subSettings.subURI + c.subId)
  1451. }
  1452. })
  1453. }
  1454. txtModal.show(
  1455. '{{ i18n "pages.inbounds.export"}} - {{ i18n "pages.settings.subSettings" }}',
  1456. [...new Set(subLinks)].join('\n'),
  1457. dbInbound.remark + "-Subs");
  1458. },
  1459. importInbound() {
  1460. promptModal.open({
  1461. title: '{{ i18n "pages.inbounds.importInbound" }}',
  1462. type: 'textarea',
  1463. value: '',
  1464. okText: '{{ i18n "pages.inbounds.import" }}',
  1465. confirm: async (dbInboundText) => {
  1466. await this.submit('/panel/api/inbounds/import', { data: dbInboundText }, promptModal);
  1467. },
  1468. });
  1469. },
  1470. exportAllSubs() {
  1471. let subLinks = []
  1472. for (const dbInbound of this.dbInbounds) {
  1473. const clients = this.getInboundClients(dbInbound);
  1474. if (clients != null) {
  1475. clients.forEach(c => {
  1476. if (c.subId && c.subId.length > 0) {
  1477. subLinks.push(this.subSettings.subURI + c.subId)
  1478. }
  1479. })
  1480. }
  1481. }
  1482. txtModal.show(
  1483. '{{ i18n "pages.inbounds.export"}} - {{ i18n "pages.settings.subSettings" }}',
  1484. [...new Set(subLinks)].join('\r\n'),
  1485. 'All-Inbounds-Subs');
  1486. },
  1487. exportAllLinks() {
  1488. let copyText = [];
  1489. for (const dbInbound of this.dbInbounds) {
  1490. copyText.push(dbInbound.genInboundLinks(this.remarkModel));
  1491. }
  1492. txtModal.show('{{ i18n "pages.inbounds.export"}}', copyText.join('\r\n'), 'All-Inbounds');
  1493. },
  1494. copy(dbInboundId) {
  1495. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1496. txtModal.show('{{ i18n "pages.inbounds.inboundData" }}', JSON.stringify(dbInbound, null, 2));
  1497. },
  1498. async startDataRefreshLoop() {
  1499. while (this.isRefreshEnabled) {
  1500. try {
  1501. await this.getDBInbounds();
  1502. } catch (e) {
  1503. console.error(e);
  1504. }
  1505. await PromiseUtil.sleep(this.refreshInterval);
  1506. }
  1507. },
  1508. toggleRefresh() {
  1509. localStorage.setItem("isRefreshEnabled", this.isRefreshEnabled);
  1510. if (this.isRefreshEnabled) {
  1511. this.startDataRefreshLoop();
  1512. }
  1513. },
  1514. changeRefreshInterval() {
  1515. localStorage.setItem("refreshInterval", this.refreshInterval);
  1516. },
  1517. async manualRefresh() {
  1518. if (!this.refreshing) {
  1519. this.loadingStates.spinning = true;
  1520. await this.getDBInbounds();
  1521. this.loadingStates.spinning = false;
  1522. }
  1523. },
  1524. pagination(obj) {
  1525. if (this.pageSize > 0 && obj.length > this.pageSize) {
  1526. // Set page options based on object size
  1527. sizeOptions = [];
  1528. for (i = this.pageSize; i <= obj.length; i = i + this.pageSize) {
  1529. sizeOptions.push(i.toString());
  1530. }
  1531. // Add option to see all in one page
  1532. sizeOptions.push(i.toString());
  1533. p = {
  1534. showSizeChanger: true,
  1535. size: 'small',
  1536. position: 'bottom',
  1537. pageSize: this.pageSize,
  1538. pageSizeOptions: sizeOptions
  1539. };
  1540. return p;
  1541. }
  1542. return false
  1543. }
  1544. },
  1545. watch: {
  1546. searchKey: Utils.debounce(function (newVal) {
  1547. this.searchInbounds(newVal);
  1548. }, 500)
  1549. },
  1550. mounted() {
  1551. if (window.location.protocol !== "https:") {
  1552. this.showAlert = true;
  1553. }
  1554. this.loading();
  1555. this.getDefaultSettings();
  1556. if (this.isRefreshEnabled) {
  1557. this.startDataRefreshLoop();
  1558. }
  1559. else {
  1560. this.getDBInbounds();
  1561. }
  1562. this.loading(false);
  1563. },
  1564. computed: {
  1565. total() {
  1566. let down = 0, up = 0, allTime = 0;
  1567. let clients = 0, deactive = [], depleted = [], expiring = [];
  1568. this.dbInbounds.forEach(dbInbound => {
  1569. down += dbInbound.down;
  1570. up += dbInbound.up;
  1571. allTime += (dbInbound.allTime || (dbInbound.up + dbInbound.down));
  1572. if (this.clientCount[dbInbound.id]) {
  1573. clients += this.clientCount[dbInbound.id].clients;
  1574. deactive = deactive.concat(this.clientCount[dbInbound.id].deactive);
  1575. depleted = depleted.concat(this.clientCount[dbInbound.id].depleted);
  1576. expiring = expiring.concat(this.clientCount[dbInbound.id].expiring);
  1577. }
  1578. });
  1579. return {
  1580. down: down,
  1581. up: up,
  1582. allTime: allTime,
  1583. clients: clients,
  1584. deactive: deactive,
  1585. depleted: depleted,
  1586. expiring: expiring,
  1587. };
  1588. }
  1589. },
  1590. });
  1591. </script>
  1592. {{ template "page/body_end" .}}