inbounds.html 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  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. if (!dbInbound) return;
  1119. clients = this.getInboundClients(dbInbound);
  1120. if (!clients || !Array.isArray(clients)) return;
  1121. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1122. if (index < 0) return;
  1123. clientModal.show({
  1124. title: '{{ i18n "pages.client.edit"}}',
  1125. okText: '{{ i18n "pages.client.submitEdit"}}',
  1126. dbInbound: dbInbound,
  1127. index: index,
  1128. confirm: async (client, dbInboundId, clientId) => {
  1129. clientModal.loading();
  1130. await this.updateClient(client, dbInboundId, clientId);
  1131. clientModal.close();
  1132. },
  1133. isEdit: true
  1134. });
  1135. },
  1136. findIndexOfClient(protocol, clients, client) {
  1137. if (!clients || !Array.isArray(clients) || !client) {
  1138. return -1;
  1139. }
  1140. switch (protocol) {
  1141. case Protocols.TROJAN:
  1142. case Protocols.SHADOWSOCKS:
  1143. return clients.findIndex(item => item && item.password === client.password && item.email === client.email);
  1144. default: return clients.findIndex(item => item && item.id === client.id && item.email === client.email);
  1145. }
  1146. },
  1147. async addClient(clients, dbInboundId, modal) {
  1148. const data = {
  1149. id: dbInboundId,
  1150. settings: '{"clients": [' + clients.toString() + ']}',
  1151. };
  1152. await this.submit(`/panel/api/inbounds/addClient`, data, modal);
  1153. },
  1154. async updateClient(client, dbInboundId, clientId) {
  1155. const data = {
  1156. id: dbInboundId,
  1157. settings: '{"clients": [' + client.toString() + ']}',
  1158. };
  1159. await this.submit(`/panel/api/inbounds/updateClient/${clientId}`, data, clientModal);
  1160. },
  1161. resetTraffic(dbInboundId) {
  1162. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1163. this.$confirm({
  1164. title: '{{ i18n "pages.inbounds.resetTraffic"}}' + ' #' + dbInboundId,
  1165. content: '{{ i18n "pages.inbounds.resetTrafficContent"}}',
  1166. class: themeSwitcher.currentTheme,
  1167. okText: '{{ i18n "reset"}}',
  1168. cancelText: '{{ i18n "cancel"}}',
  1169. onOk: () => {
  1170. const inbound = dbInbound.toInbound();
  1171. dbInbound.up = 0;
  1172. dbInbound.down = 0;
  1173. this.updateInbound(inbound, dbInbound);
  1174. },
  1175. });
  1176. },
  1177. delInbound(dbInboundId) {
  1178. this.$confirm({
  1179. title: '{{ i18n "pages.inbounds.deleteInbound"}}' + ' #' + dbInboundId,
  1180. content: '{{ i18n "pages.inbounds.deleteInboundContent"}}',
  1181. class: themeSwitcher.currentTheme,
  1182. okText: '{{ i18n "delete"}}',
  1183. cancelText: '{{ i18n "cancel"}}',
  1184. onOk: () => this.submit('/panel/api/inbounds/del/' + dbInboundId),
  1185. });
  1186. },
  1187. delClient(dbInboundId, client, confirmation = true) {
  1188. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1189. clientId = this.getClientId(dbInbound.protocol, client);
  1190. if (confirmation) {
  1191. this.$confirm({
  1192. title: '{{ i18n "pages.inbounds.deleteClient"}}' + ' ' + client.email,
  1193. content: '{{ i18n "pages.inbounds.deleteClientContent"}}',
  1194. class: themeSwitcher.currentTheme,
  1195. okText: '{{ i18n "delete"}}',
  1196. cancelText: '{{ i18n "cancel"}}',
  1197. onOk: () => this.submit(`/panel/api/inbounds/${dbInboundId}/delClient/${clientId}`),
  1198. });
  1199. } else {
  1200. this.submit(`/panel/api/inbounds/${dbInboundId}/delClient/${clientId}`);
  1201. }
  1202. },
  1203. getSubGroupClients(dbInbounds, currentClient) {
  1204. const response = {
  1205. inbounds: [],
  1206. clients: [],
  1207. editIds: []
  1208. }
  1209. if (dbInbounds && dbInbounds.length > 0 && currentClient) {
  1210. dbInbounds.forEach((dbInboundItem) => {
  1211. const dbInbound = new DBInbound(dbInboundItem);
  1212. if (dbInbound) {
  1213. const inbound = dbInbound.toInbound();
  1214. if (inbound) {
  1215. const clients = inbound.clients;
  1216. if (clients.length > 0) {
  1217. clients.forEach((client) => {
  1218. if (client['subId'] === currentClient['subId']) {
  1219. client['inboundId'] = dbInboundItem.id
  1220. client['clientId'] = this.getClientId(dbInbound.protocol, client)
  1221. response.inbounds.push(dbInboundItem.id)
  1222. response.clients.push(client)
  1223. response.editIds.push(client['clientId'])
  1224. }
  1225. })
  1226. }
  1227. }
  1228. }
  1229. })
  1230. }
  1231. return response;
  1232. },
  1233. getClientId(protocol, client) {
  1234. switch (protocol) {
  1235. case Protocols.TROJAN: return client.password;
  1236. case Protocols.SHADOWSOCKS: return client.email;
  1237. default: return client.id;
  1238. }
  1239. },
  1240. checkFallback(dbInbound) {
  1241. newDbInbound = new DBInbound(dbInbound);
  1242. if (dbInbound.listen.startsWith("@")) {
  1243. rootInbound = this.inbounds.find((i) =>
  1244. i.isTcp &&
  1245. ['trojan', 'vless'].includes(i.protocol) &&
  1246. i.settings.fallbacks.find(f => f.dest === dbInbound.listen)
  1247. );
  1248. if (rootInbound) {
  1249. newDbInbound.listen = rootInbound.listen;
  1250. newDbInbound.port = rootInbound.port;
  1251. newInbound = newDbInbound.toInbound();
  1252. newInbound.stream.security = rootInbound.stream.security;
  1253. newInbound.stream.tls = rootInbound.stream.tls;
  1254. newInbound.stream.externalProxy = rootInbound.stream.externalProxy;
  1255. newDbInbound.streamSettings = newInbound.stream.toString();
  1256. }
  1257. }
  1258. return newDbInbound;
  1259. },
  1260. showQrcode(dbInboundId, client) {
  1261. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1262. newDbInbound = this.checkFallback(dbInbound);
  1263. qrModal.show('{{ i18n "qrCode"}}', newDbInbound, client);
  1264. },
  1265. showInfo(dbInboundId, client) {
  1266. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1267. if (!dbInbound) return;
  1268. index = 0;
  1269. if (dbInbound.isMultiUser()) {
  1270. inbound = dbInbound.toInbound();
  1271. clients = inbound && inbound.clients ? inbound.clients : null;
  1272. if (clients && Array.isArray(clients)) {
  1273. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1274. if (index < 0) index = 0;
  1275. }
  1276. }
  1277. newDbInbound = this.checkFallback(dbInbound);
  1278. infoModal.show(newDbInbound, index);
  1279. },
  1280. switchEnable(dbInboundId, state) {
  1281. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1282. dbInbound.enable = state;
  1283. this.submit(`/panel/api/inbounds/update/${dbInboundId}`, dbInbound);
  1284. },
  1285. async switchEnableClient(dbInboundId, client) {
  1286. this.loading()
  1287. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1288. if (!dbInbound) return;
  1289. inbound = dbInbound.toInbound();
  1290. clients = inbound && inbound.clients ? inbound.clients : null;
  1291. if (!clients || !Array.isArray(clients)) return;
  1292. index = this.findIndexOfClient(dbInbound.protocol, clients, client);
  1293. if (index < 0 || !clients[index]) return;
  1294. clients[index].enable = !clients[index].enable;
  1295. clientId = this.getClientId(dbInbound.protocol, clients[index]);
  1296. await this.updateClient(clients[index], dbInboundId, clientId);
  1297. this.loading(false);
  1298. },
  1299. async submit(url, data, modal) {
  1300. const msg = await HttpUtil.postWithModal(url, data, modal);
  1301. if (msg.success) {
  1302. await this.getDBInbounds();
  1303. }
  1304. },
  1305. getInboundClients(dbInbound) {
  1306. if (!dbInbound) return null;
  1307. const inbound = dbInbound.toInbound();
  1308. return inbound && inbound.clients ? inbound.clients : null;
  1309. },
  1310. resetClientTraffic(client, dbInboundId, confirmation = true) {
  1311. if (confirmation) {
  1312. this.$confirm({
  1313. title: '{{ i18n "pages.inbounds.resetTraffic"}}' + ' ' + client.email,
  1314. content: '{{ i18n "pages.inbounds.resetTrafficContent"}}',
  1315. class: themeSwitcher.currentTheme,
  1316. okText: '{{ i18n "reset"}}',
  1317. cancelText: '{{ i18n "cancel"}}',
  1318. onOk: () => this.submit('/panel/api/inbounds/' + dbInboundId + '/resetClientTraffic/' + client.email),
  1319. })
  1320. } else {
  1321. this.submit('/panel/api/inbounds/' + dbInboundId + '/resetClientTraffic/' + client.email);
  1322. }
  1323. },
  1324. resetAllTraffic() {
  1325. this.$confirm({
  1326. title: '{{ i18n "pages.inbounds.resetAllTrafficTitle"}}',
  1327. content: '{{ i18n "pages.inbounds.resetAllTrafficContent"}}',
  1328. class: themeSwitcher.currentTheme,
  1329. okText: '{{ i18n "reset"}}',
  1330. cancelText: '{{ i18n "cancel"}}',
  1331. onOk: () => this.submit('/panel/api/inbounds/resetAllTraffics'),
  1332. });
  1333. },
  1334. resetAllClientTraffics(dbInboundId) {
  1335. this.$confirm({
  1336. title: dbInboundId > 0 ? '{{ i18n "pages.inbounds.resetInboundClientTrafficTitle"}}' : '{{ i18n "pages.inbounds.resetAllClientTrafficTitle"}}',
  1337. content: dbInboundId > 0 ? '{{ i18n "pages.inbounds.resetInboundClientTrafficContent"}}' : '{{ i18n "pages.inbounds.resetAllClientTrafficContent"}}',
  1338. class: themeSwitcher.currentTheme,
  1339. okText: '{{ i18n "reset"}}',
  1340. cancelText: '{{ i18n "cancel"}}',
  1341. onOk: () => this.submit('/panel/api/inbounds/resetAllClientTraffics/' + dbInboundId),
  1342. })
  1343. },
  1344. delDepletedClients(dbInboundId) {
  1345. this.$confirm({
  1346. title: '{{ i18n "pages.inbounds.delDepletedClientsTitle"}}',
  1347. content: '{{ i18n "pages.inbounds.delDepletedClientsContent"}}',
  1348. class: themeSwitcher.currentTheme,
  1349. okText: '{{ i18n "delete"}}',
  1350. cancelText: '{{ i18n "cancel"}}',
  1351. onOk: () => this.submit('/panel/api/inbounds/delDepletedClients/' + dbInboundId),
  1352. })
  1353. },
  1354. isExpiry(dbInbound, index) {
  1355. return dbInbound.toInbound().isExpiry(index);
  1356. },
  1357. getUpStats(dbInbound, email) {
  1358. if (email.length == 0) return 0;
  1359. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1360. return clientStats ? clientStats.up : 0;
  1361. },
  1362. getDownStats(dbInbound, email) {
  1363. if (email.length == 0) return 0;
  1364. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1365. return clientStats ? clientStats.down : 0;
  1366. },
  1367. getSumStats(dbInbound, email) {
  1368. if (email.length == 0) return 0;
  1369. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1370. return clientStats ? clientStats.up + clientStats.down : 0;
  1371. },
  1372. getAllTimeClient(dbInbound, email) {
  1373. if (email.length == 0) return 0;
  1374. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1375. if (!clientStats) return 0;
  1376. return clientStats.allTime || (clientStats.up + clientStats.down);
  1377. },
  1378. getRemStats(dbInbound, email) {
  1379. if (email.length == 0) return 0;
  1380. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1381. if (!clientStats) return 0;
  1382. remained = clientStats.total - (clientStats.up + clientStats.down);
  1383. return remained > 0 ? remained : 0;
  1384. },
  1385. clientStatsColor(dbInbound, email) {
  1386. if (email.length == 0) return ColorUtils.clientUsageColor();
  1387. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1388. return ColorUtils.clientUsageColor(clientStats, app.trafficDiff)
  1389. },
  1390. statsProgress(dbInbound, email) {
  1391. if (email.length == 0) return 100;
  1392. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1393. if (!clientStats) return 0;
  1394. if (clientStats.total == 0) return 100;
  1395. return 100 * (clientStats.down + clientStats.up) / clientStats.total;
  1396. },
  1397. expireProgress(expTime, reset) {
  1398. now = new Date().getTime();
  1399. remainedSeconds = expTime < 0 ? -expTime / 1000 : (expTime - now) / 1000;
  1400. resetSeconds = reset * 86400;
  1401. if (remainedSeconds >= resetSeconds) return 0;
  1402. return 100 * (1 - (remainedSeconds / resetSeconds));
  1403. },
  1404. statsExpColor(dbInbound, email) {
  1405. if (email.length == 0) return '#7a316f';
  1406. clientStats = dbInbound.clientStats.find(stats => stats.email === email);
  1407. if (!clientStats) return '#7a316f';
  1408. statsColor = ColorUtils.usageColor(clientStats.down + clientStats.up, this.trafficDiff, clientStats.total);
  1409. expColor = ColorUtils.usageColor(new Date().getTime(), this.expireDiff, clientStats.expiryTime);
  1410. switch (true) {
  1411. case statsColor == "red" || expColor == "red":
  1412. return "#cf3c3c"; // Red
  1413. case statsColor == "orange" || expColor == "orange":
  1414. return "#f37b24"; // Orange
  1415. case statsColor == "green" || expColor == "green":
  1416. return "#008771"; // Green
  1417. default:
  1418. return "#7a316f"; // purple
  1419. }
  1420. },
  1421. isClientEnabled(dbInbound, email) {
  1422. clientStats = dbInbound.clientStats ? dbInbound.clientStats.find(stats => stats.email === email) : null;
  1423. return clientStats ? clientStats['enable'] : true;
  1424. },
  1425. isClientDepleted(dbInbound, email) {
  1426. if (!email || !dbInbound || !dbInbound.clientStats) return false;
  1427. const stats = dbInbound.clientStats.find(s => s.email === email);
  1428. if (!stats) return false;
  1429. const total = stats.total ?? 0;
  1430. const used = (stats.up ?? 0) + (stats.down ?? 0);
  1431. const hasTotal = total > 0;
  1432. const exhausted = hasTotal && used >= total;
  1433. const expiryTime = stats.expiryTime ?? 0;
  1434. const hasExpiry = expiryTime > 0;
  1435. const now = Date.now();
  1436. const expired = hasExpiry && expiryTime <= now;
  1437. return expired || exhausted;
  1438. },
  1439. isClientOnline(email) {
  1440. return this.onlineClients.includes(email);
  1441. },
  1442. getLastOnline(email) {
  1443. return this.lastOnlineMap[email] || null
  1444. },
  1445. formatLastOnline(email) {
  1446. const ts = this.getLastOnline(email)
  1447. if (!ts) return '-'
  1448. // Check if IntlUtil is available (may not be loaded yet)
  1449. if (typeof IntlUtil !== 'undefined' && IntlUtil.formatDate) {
  1450. return IntlUtil.formatDate(ts)
  1451. }
  1452. // Fallback to simple date formatting if IntlUtil is not available
  1453. return new Date(ts).toLocaleString()
  1454. },
  1455. isRemovable(dbInboundId) {
  1456. return this.getInboundClients(this.dbInbounds.find(row => row.id === dbInboundId)).length > 1;
  1457. },
  1458. inboundLinks(dbInboundId) {
  1459. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1460. newDbInbound = this.checkFallback(dbInbound);
  1461. txtModal.show('{{ i18n "pages.inbounds.export"}}', newDbInbound.genInboundLinks(this.remarkModel), newDbInbound.remark);
  1462. },
  1463. exportSubs(dbInboundId) {
  1464. const dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1465. const clients = this.getInboundClients(dbInbound);
  1466. let subLinks = []
  1467. if (clients != null) {
  1468. clients.forEach(c => {
  1469. if (c.subId && c.subId.length > 0) {
  1470. subLinks.push(this.subSettings.subURI + c.subId)
  1471. }
  1472. })
  1473. }
  1474. txtModal.show(
  1475. '{{ i18n "pages.inbounds.export"}} - {{ i18n "pages.settings.subSettings" }}',
  1476. [...new Set(subLinks)].join('\n'),
  1477. dbInbound.remark + "-Subs");
  1478. },
  1479. importInbound() {
  1480. promptModal.open({
  1481. title: '{{ i18n "pages.inbounds.importInbound" }}',
  1482. type: 'textarea',
  1483. value: '',
  1484. okText: '{{ i18n "pages.inbounds.import" }}',
  1485. confirm: async (dbInboundText) => {
  1486. await this.submit('/panel/api/inbounds/import', { data: dbInboundText }, promptModal);
  1487. },
  1488. });
  1489. },
  1490. exportAllSubs() {
  1491. let subLinks = []
  1492. for (const dbInbound of this.dbInbounds) {
  1493. const clients = this.getInboundClients(dbInbound);
  1494. if (clients != null) {
  1495. clients.forEach(c => {
  1496. if (c.subId && c.subId.length > 0) {
  1497. subLinks.push(this.subSettings.subURI + c.subId)
  1498. }
  1499. })
  1500. }
  1501. }
  1502. txtModal.show(
  1503. '{{ i18n "pages.inbounds.export"}} - {{ i18n "pages.settings.subSettings" }}',
  1504. [...new Set(subLinks)].join('\r\n'),
  1505. 'All-Inbounds-Subs');
  1506. },
  1507. exportAllLinks() {
  1508. let copyText = [];
  1509. for (const dbInbound of this.dbInbounds) {
  1510. copyText.push(dbInbound.genInboundLinks(this.remarkModel));
  1511. }
  1512. txtModal.show('{{ i18n "pages.inbounds.export"}}', copyText.join('\r\n'), 'All-Inbounds');
  1513. },
  1514. copy(dbInboundId) {
  1515. dbInbound = this.dbInbounds.find(row => row.id === dbInboundId);
  1516. txtModal.show('{{ i18n "pages.inbounds.inboundData" }}', JSON.stringify(dbInbound, null, 2));
  1517. },
  1518. async startDataRefreshLoop() {
  1519. while (this.isRefreshEnabled) {
  1520. try {
  1521. await this.getDBInbounds();
  1522. } catch (e) {
  1523. console.error(e);
  1524. }
  1525. await PromiseUtil.sleep(this.refreshInterval);
  1526. }
  1527. },
  1528. toggleRefresh() {
  1529. localStorage.setItem("isRefreshEnabled", this.isRefreshEnabled);
  1530. if (this.isRefreshEnabled) {
  1531. this.startDataRefreshLoop();
  1532. }
  1533. },
  1534. changeRefreshInterval() {
  1535. localStorage.setItem("refreshInterval", this.refreshInterval);
  1536. },
  1537. async manualRefresh() {
  1538. if (!this.refreshing) {
  1539. this.loadingStates.spinning = true;
  1540. await this.getDBInbounds();
  1541. this.loadingStates.spinning = false;
  1542. }
  1543. },
  1544. pagination(obj) {
  1545. if (this.pageSize > 0 && obj.length > this.pageSize) {
  1546. // Set page options based on object size
  1547. sizeOptions = [];
  1548. for (i = this.pageSize; i <= obj.length; i = i + this.pageSize) {
  1549. sizeOptions.push(i.toString());
  1550. }
  1551. // Add option to see all in one page
  1552. sizeOptions.push(i.toString());
  1553. p = {
  1554. showSizeChanger: true,
  1555. size: 'small',
  1556. position: 'bottom',
  1557. pageSize: this.pageSize,
  1558. pageSizeOptions: sizeOptions
  1559. };
  1560. return p;
  1561. }
  1562. return false
  1563. }
  1564. },
  1565. watch: {
  1566. searchKey: Utils.debounce(function (newVal) {
  1567. this.searchInbounds(newVal);
  1568. }, 500)
  1569. },
  1570. mounted() {
  1571. if (window.location.protocol !== "https:") {
  1572. this.showAlert = true;
  1573. }
  1574. this.loading();
  1575. this.getDefaultSettings();
  1576. // Initial data fetch
  1577. this.getDBInbounds().then(() => {
  1578. this.loading(false);
  1579. });
  1580. // Setup WebSocket for real-time updates
  1581. if (window.wsClient) {
  1582. window.wsClient.connect();
  1583. // Listen for inbounds updates
  1584. window.wsClient.on('inbounds', (payload) => {
  1585. if (payload && Array.isArray(payload)) {
  1586. // Use setInbounds to properly convert to DBInbound objects with methods
  1587. this.setInbounds(payload);
  1588. this.searchInbounds(this.searchKey);
  1589. }
  1590. });
  1591. // Listen for traffic updates
  1592. window.wsClient.on('traffic', (payload) => {
  1593. if (payload && payload.clientTraffics && Array.isArray(payload.clientTraffics)) {
  1594. // Update client traffic statistics
  1595. payload.clientTraffics.forEach(clientTraffic => {
  1596. const dbInbound = this.dbInbounds.find(ib => {
  1597. if (!ib) return false;
  1598. const clients = this.getInboundClients(ib);
  1599. return clients && Array.isArray(clients) && clients.some(c => c && c.email === clientTraffic.email);
  1600. });
  1601. if (dbInbound && dbInbound.clientStats && Array.isArray(dbInbound.clientStats)) {
  1602. const stats = dbInbound.clientStats.find(s => s && s.email === clientTraffic.email);
  1603. if (stats) {
  1604. stats.up = clientTraffic.up || stats.up;
  1605. stats.down = clientTraffic.down || stats.down;
  1606. stats.total = clientTraffic.total || stats.total;
  1607. }
  1608. }
  1609. });
  1610. }
  1611. // Update online clients list in real-time
  1612. if (payload && Array.isArray(payload.onlineClients)) {
  1613. this.onlineClients = payload.onlineClients;
  1614. // Recalculate client counts to update online status
  1615. this.dbInbounds.forEach(dbInbound => {
  1616. const inbound = this.inbounds.find(ib => ib.id === dbInbound.id);
  1617. if (inbound && this.clientCount[dbInbound.id]) {
  1618. this.clientCount[dbInbound.id] = this.getClientCounts(dbInbound, inbound);
  1619. }
  1620. });
  1621. }
  1622. // Update last online map in real-time
  1623. if (payload && payload.lastOnlineMap && typeof payload.lastOnlineMap === 'object') {
  1624. this.lastOnlineMap = { ...this.lastOnlineMap, ...payload.lastOnlineMap };
  1625. }
  1626. });
  1627. // Notifications disabled - white notifications are not needed
  1628. // Fallback to polling if WebSocket fails
  1629. window.wsClient.on('error', () => {
  1630. console.warn('WebSocket connection failed, falling back to polling');
  1631. if (this.isRefreshEnabled) {
  1632. this.startDataRefreshLoop();
  1633. }
  1634. });
  1635. window.wsClient.on('disconnected', () => {
  1636. if (window.wsClient.reconnectAttempts >= window.wsClient.maxReconnectAttempts) {
  1637. console.warn('WebSocket reconnection failed, falling back to polling');
  1638. if (this.isRefreshEnabled) {
  1639. this.startDataRefreshLoop();
  1640. }
  1641. }
  1642. });
  1643. } else {
  1644. // Fallback to polling if WebSocket is not available
  1645. if (this.isRefreshEnabled) {
  1646. this.startDataRefreshLoop();
  1647. }
  1648. }
  1649. },
  1650. computed: {
  1651. total() {
  1652. let down = 0, up = 0, allTime = 0;
  1653. let clients = 0, deactive = [], depleted = [], expiring = [];
  1654. this.dbInbounds.forEach(dbInbound => {
  1655. down += dbInbound.down;
  1656. up += dbInbound.up;
  1657. allTime += (dbInbound.allTime || (dbInbound.up + dbInbound.down));
  1658. if (this.clientCount[dbInbound.id]) {
  1659. clients += this.clientCount[dbInbound.id].clients;
  1660. deactive = deactive.concat(this.clientCount[dbInbound.id].deactive);
  1661. depleted = depleted.concat(this.clientCount[dbInbound.id].depleted);
  1662. expiring = expiring.concat(this.clientCount[dbInbound.id].expiring);
  1663. }
  1664. });
  1665. return {
  1666. down: down,
  1667. up: up,
  1668. allTime: allTime,
  1669. clients: clients,
  1670. deactive: deactive,
  1671. depleted: depleted,
  1672. expiring: expiring,
  1673. };
  1674. }
  1675. },
  1676. });
  1677. </script>
  1678. {{ template "page/body_end" .}}