client_modal.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. {{define "clientsModal"}}
  2. <a-modal id="client-modal" v-model="clientModal.visible" :title="clientModal.title" @ok="clientModal.ok"
  3. :confirm-loading="clientModal.confirmLoading" :closable="true" :mask-closable="false"
  4. :class="themeSwitcher.currentTheme"
  5. :ok-text="clientModal.okText" cancel-text='{{ i18n "close" }}'>
  6. <template v-if="isEdit">
  7. <a-tag v-if="isExpiry || isTrafficExhausted" color="red" style="margin-bottom: 10px;display: block;text-align: center;">Account is (Expired|Traffic Ended) And Disabled</a-tag>
  8. </template>
  9. {{template "form/client"}}
  10. </a-modal>
  11. <script>
  12. const clientModal = {
  13. visible: false,
  14. confirmLoading: false,
  15. title: '',
  16. okText: '',
  17. isEdit: false,
  18. group: {
  19. canGroup: true,
  20. isGroup: false,
  21. currentClient: null,
  22. inbounds: [],
  23. clients: [],
  24. editIds: []
  25. },
  26. dbInbound: new DBInbound(),
  27. dbInbounds: null,
  28. inbound: new Inbound(),
  29. clients: [],
  30. clientStats: [],
  31. oldClientId: "",
  32. index: null,
  33. clientIps: null,
  34. delayedStart: false,
  35. ok() {
  36. if (app.subSettings.enable && clientModal.group.isGroup && clientModal.group.canGroup) {
  37. const currentClient = clientModal.group.currentClient;
  38. const { limitIp, totalGB, expiryTime, reset, enable, subId, tgId, flow } = currentClient;
  39. const uniqueEmails = clientModalApp.makeGroupEmailsUnique(clientModal.dbInbounds, currentClient.email, clientModal.group.clients);
  40. clientModal.group.clients.forEach((client, index) => {
  41. client.email = uniqueEmails[index];
  42. client.limitIp = limitIp;
  43. client.totalGB = totalGB;
  44. client.expiryTime = expiryTime;
  45. client.reset = reset;
  46. client.enable = enable;
  47. if (subId) {
  48. client.subId = subId;
  49. }
  50. if (tgId) {
  51. client.tgId = tgId;
  52. }
  53. if (flow) {
  54. client.flow = flow;
  55. }
  56. });
  57. if (clientModal.isEdit) {
  58. ObjectUtil.execute(clientModal.confirm, clientModal.group.clients, clientModal.group.inbounds, clientModal.group.editIds);
  59. } else {
  60. ObjectUtil.execute(clientModal.confirm, clientModal.group.clients, clientModal.group.inbounds);
  61. }
  62. } else {
  63. if (clientModal.isEdit) {
  64. ObjectUtil.execute(clientModal.confirm, clientModalApp.client, clientModal.dbInbound.id, clientModal.oldClientId);
  65. } else {
  66. ObjectUtil.execute(clientModal.confirm, clientModalApp.client, clientModal.dbInbound.id);
  67. }
  68. }
  69. },
  70. show({
  71. title = '',
  72. okText = '{{ i18n "sure" }}',
  73. index = null,
  74. dbInbound = null,
  75. dbInbounds = null,
  76. confirm = () => {
  77. },
  78. isEdit = false
  79. }) {
  80. this.group = {
  81. canGroup: true,
  82. isGroup: false,
  83. currentClient: null,
  84. inbounds: [],
  85. clients: [],
  86. editIds: []
  87. }
  88. this.dbInbounds = dbInbounds;
  89. this.visible = true;
  90. this.title = title;
  91. this.okText = okText;
  92. this.isEdit = isEdit;
  93. if (app.subSettings.enable && dbInbounds !== null && Array.isArray(dbInbounds)) {
  94. if (isEdit) {
  95. this.showProcess(dbInbound, index);
  96. let processSingleEdit = true
  97. if (this.group.canGroup) {
  98. this.group.currentClient = this.clients[this.index]
  99. const response = app.getSubGroupClients(dbInbounds, this.group.currentClient)
  100. if (response.clients.length > 1) {
  101. this.group.isGroup = true;
  102. this.group.inbounds = response.inbounds
  103. this.group.clients = response.clients
  104. this.group.editIds = response.editIds
  105. if (this.clients[index].expiryTime < 0) {
  106. this.delayedStart = true;
  107. }
  108. processSingleEdit = false
  109. }
  110. }
  111. if (processSingleEdit) {
  112. this.singleEditClientProcess(index)
  113. }
  114. } else {
  115. this.group.isGroup = true;
  116. dbInbounds.forEach((dbInboundItem) => {
  117. this.showProcess(dbInboundItem);
  118. this.addClient(this.inbound.protocol, this.clients);
  119. this.group.inbounds.push(dbInboundItem.id)
  120. this.group.clients.push(this.clients[this.index])
  121. })
  122. this.group.currentClient = this.clients[this.index]
  123. }
  124. } else {
  125. this.showProcess(dbInbound, index);
  126. if (isEdit) {
  127. this.singleEditClientProcess(index)
  128. } else {
  129. this.addClient(this.inbound.protocol, this.clients);
  130. }
  131. }
  132. this.clientStats = this.dbInbound.clientStats.find(row => row.email === this.clients[this.index].email);
  133. this.confirm = confirm;
  134. },
  135. showProcess(dbInbound, index = null) {
  136. this.dbInbound = new DBInbound(dbInbound);
  137. this.inbound = dbInbound.toInbound();
  138. this.clients = this.inbound.clients;
  139. this.index = index === null ? this.clients.length : index;
  140. this.delayedStart = false;
  141. },
  142. singleEditClientProcess(index) {
  143. if (this.clients[index].expiryTime < 0) {
  144. this.delayedStart = true;
  145. }
  146. this.oldClientId = this.getClientId(this.dbInbound.protocol, this.clients[index]);
  147. },
  148. getClientId(protocol, client) {
  149. switch (protocol) {
  150. case Protocols.TROJAN: return client.password;
  151. case Protocols.SHADOWSOCKS: return client.email;
  152. default: return client.id;
  153. }
  154. },
  155. addClient(protocol, clients) {
  156. switch (protocol) {
  157. case Protocols.VMESS: return clients.push(new Inbound.VmessSettings.VMESS());
  158. case Protocols.VLESS: return clients.push(new Inbound.VLESSSettings.VLESS());
  159. case Protocols.TROJAN: return clients.push(new Inbound.TrojanSettings.Trojan());
  160. case Protocols.SHADOWSOCKS: return clients.push(new Inbound.ShadowsocksSettings.Shadowsocks(clients[0].method));
  161. default: return null;
  162. }
  163. },
  164. close() {
  165. clientModal.visible = false;
  166. clientModal.loading(false);
  167. },
  168. loading(loading = true) {
  169. clientModal.confirmLoading = loading;
  170. },
  171. };
  172. const clientModalApp = new Vue({
  173. delimiters: ['[[', ']]'],
  174. el: '#client-modal',
  175. data: {
  176. clientModal,
  177. get inbound() {
  178. return this.clientModal.inbound;
  179. },
  180. get client() {
  181. return this.clientModal.clients[this.clientModal.index];
  182. },
  183. get clientStats() {
  184. return this.clientModal.clientStats;
  185. },
  186. get isEdit() {
  187. return this.clientModal.isEdit;
  188. },
  189. get isGroup() {
  190. return this.clientModal.group.isGroup;
  191. },
  192. get isGroupEdit() {
  193. return this.clientModal.group.canGroup;
  194. },
  195. set isGroupEdit(value) {
  196. this.clientModal.group.canGroup = value;
  197. if (!value) {
  198. this.clientModal.singleEditClientProcess(this.clientModal.index)
  199. }
  200. },
  201. get datepicker() {
  202. return app.datepicker;
  203. },
  204. get isTrafficExhausted() {
  205. if (!clientStats) return false
  206. if (clientStats.total <= 0) return false
  207. if (clientStats.up + clientStats.down < clientStats.total) return false
  208. return true
  209. },
  210. get isExpiry() {
  211. return this.clientModal.isEdit && this.client.expiryTime >0 ? (this.client.expiryTime < new Date().getTime()) : false;
  212. },
  213. get delayedStart() {
  214. return this.clientModal.delayedStart;
  215. },
  216. set delayedStart(value) {
  217. this.clientModal.delayedStart = value;
  218. },
  219. get delayedExpireDays() {
  220. return this.client && this.client.expiryTime < 0 ? this.client.expiryTime / -86400000 : 0;
  221. },
  222. set delayedExpireDays(days) {
  223. this.client.expiryTime = -86400000 * days;
  224. },
  225. },
  226. methods: {
  227. makeGroupEmailsUnique(dbInbounds, baseEmail, groupClients) {
  228. // Extract the base part of the email (before the "__" if present)
  229. const match = baseEmail.match(/^(.*?)__/);
  230. const base = match ? match[1] : baseEmail;
  231. // Generate initial emails for each client in the group
  232. const generatedEmails = groupClients.map((_, index) => `${base}__${index + 1}`);
  233. // Function to check if an email already exists in dbInbounds but belongs to a different subId
  234. const isDuplicate = (emailToCheck, clientSubId) => {
  235. return dbInbounds.some((dbInbound) => {
  236. const settings = JSON.parse(dbInbound.settings);
  237. const clients = settings && settings.clients ? settings.clients : [];
  238. return clients.some(client => client.email === emailToCheck && client.subId !== clientSubId);
  239. });
  240. };
  241. // Check if any of the generated emails are duplicates
  242. const hasDuplicates = generatedEmails.some((email, index) => {
  243. return isDuplicate(email, groupClients[index].subId);
  244. });
  245. // If duplicates exist, add a random string to the base email to ensure uniqueness
  246. if (hasDuplicates) {
  247. const randomString = `-${RandomUtil.randomLowerAndNum(4)}`;
  248. return groupClients.map((_, index) => `${base}${randomString}__${index + 1}`);
  249. }
  250. return generatedEmails;
  251. },
  252. async clearDBClientIps(email) {
  253. try {
  254. const msg = await HttpUtil.post(`/panel/inbound/clearClientIps/${email}`);
  255. if (!msg.success) {
  256. return;
  257. }
  258. document.getElementById("clientIPs").value = "";
  259. } catch (error) {
  260. }
  261. },
  262. async resetClientTrafficHandler(client, dbInboundId, clients = []) {
  263. if (clients.length > 0) {
  264. const resetRequests = clients
  265. .filter(client => {
  266. const inbound = clientModal.dbInbounds.find(inbound => inbound.id === client.inboundId);
  267. return inbound && app.hasClientStats(inbound, client.email);
  268. }).map(client => ({ inboundId: client.inboundId, email: client.email}));
  269. return HttpUtil.postWithModalJson('/panel/inbound/resetGroupClientTraffic', resetRequests, null)
  270. } else {
  271. return HttpUtil.postWithModal('/panel/inbound/' + dbInboundId + '/resetClientTraffic/' + client.email)
  272. }
  273. },
  274. resetClientTraffic(client, dbInboundId, iconElement) {
  275. const subGroup = app.subSettings.enable && clientModal.group.isGroup && clientModal.group.canGroup && clientModal.dbInbounds && clientModal.dbInbounds.length > 0 ? app.getSubGroupClients(clientModal.dbInbounds, client) : [];
  276. const clients = subGroup && subGroup.clients && subGroup.clients.length > 1 ? subGroup.clients : [];
  277. this.$confirm({
  278. title: '{{ i18n "pages.inbounds.resetTraffic"}}',
  279. content: '{{ i18n "pages.inbounds.resetTrafficContent"}}',
  280. class: themeSwitcher.currentTheme,
  281. okText: '{{ i18n "reset"}}',
  282. cancelText: '{{ i18n "cancel"}}',
  283. onOk: async () => {
  284. iconElement.disabled = true;
  285. const msg = await this.resetClientTrafficHandler(client, dbInboundId, clients);
  286. if (msg && msg.success) {
  287. this.clientModal.clientStats.up = 0;
  288. this.clientModal.clientStats.down = 0;
  289. }
  290. iconElement.disabled = false;
  291. },
  292. })
  293. },
  294. },
  295. });
  296. </script>
  297. {{end}}