Welcome to mirror list, hosted at ThFree Co, Russian Federation.

client.html « form « xui « html « web - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30bf6566c0be51ceabae7cc32d48aec095cbf1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
{{define "form/client"}}
<a-form layout="inline" v-if="client">
    <table width="100%" class="ant-table-tbody">
        <tr>
            <td>{{ i18n "pages.inbounds.enable" }}</td>
            <td>
                <a-form-item>
                    <a-switch v-model="client.enable"></a-switch>
                </a-form-item>
            </td>
        </tr>
        <tr>
            <td>
                <span>{{ i18n "pages.inbounds.email" }}</span>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.emailDesc" }}</span>
                    </template>
                    <a-icon type="sync" @click="client.email = RandomUtil.randomLowerAndNum(9)"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-input v-model.trim="client.email" style="width: 250px"></a-input>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="inbound.protocol === Protocols.TROJAN || inbound.protocol === Protocols.SHADOWSOCKS">
            <td>password
                <a-icon v-if="inbound.protocol === Protocols.SHADOWSOCKS" @click="client.password = RandomUtil.randomShadowsocksPassword()" type="sync"> </a-icon>
                <a-icon v-if="inbound.protocol === Protocols.TROJAN" @click="client.password = RandomUtil.randomSeq(10)" type="sync"> </a-icon>
            </td>
            <td>
                <a-form-item>
                    <a-input v-model.trim="client.password" style="width: 250px"></a-input>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="inbound.protocol === Protocols.VMESS || inbound.protocol === Protocols.VLESS">
            <td>ID <a-icon @click="client.id = RandomUtil.randomUUID()" type="sync"></a-icon></td>
            <td>
                <a-input v-model.trim="client.id" style="width: 300px;"></a-input>
            </td>
        </tr>
        <tr v-if="client.email && app.subSettings.enable">
            <td>Subscription <a-icon @click="client.subId = RandomUtil.randomLowerAndNum(16)" type="sync"></a-icon></td>
            <td>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.subscriptionDesc" }}</span>
                    </template>
                </a-tooltip>
                <a-form-item>
                    <a-input v-model.trim="client.subId" style="width: 250px;"></a-input>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="client.email && app.tgBotEnable">
            <td>Telegram ID
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.telegramDesc" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-input v-model.trim="client.tgId" style="width: 250px"></a-input>
                </a-form-item>
            </td>
        </tr>
        <tr>
            <td>
                <span>{{ i18n "pages.inbounds.IPLimit" }}</span>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.IPLimitDesc" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-input-number v-model="client.limitIp" min="0"></a-input-number>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="client.email && client.limitIp > 0 && isEdit">
            <td>
                <span>{{ i18n "pages.inbounds.IPLimitlog" }}</span>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span>
                    </template>
                    <span style="color: #FF4D4F">
                        <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon>
                    </span>
                </a-tooltip>
            </td>
            <td>
                <a-form layout="block">
                    <a-textarea id="clientIPs" readonly @click="getDBClientIps(client.email)"
                        placeholder="Click To Get IPs" :auto-size="{ minRows: 5, maxRows: 10 }">
                    </a-textarea>
                </a-form>
            </td>
        </tr>
        <tr v-if="inbound.xtls">
            <td>Flow</td>
            <td>
                <a-form-item>
                    <a-select v-model="client.flow" style="width: 200px"
                        :dropdown-class-name="themeSwitcher.currentTheme">
                        <a-select-option value="">{{ i18n "none" }}</a-select-option>
                        <a-select-option v-for="key in XTLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
                    </a-select>
                </a-form-item>
            </td>
        </tr>
        <tr v-else-if="inbound.canEnableTlsFlow()">
            <td>Flow</td>
            <td>
                <a-form-item>
                    <a-select v-model="client.flow" style="width: 200px"
                        :dropdown-class-name="themeSwitcher.currentTheme">
                        <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
                        <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
                    </a-select>
                </a-form-item>
            </td>
        </tr>
        <tr>
            <td>
                <span>{{ i18n "pages.inbounds.totalFlow" }}</span> (GB)
                <a-tooltip>
                    <template slot="title">
                        0 <span>{{ i18n "pages.inbounds.meansNoLimit" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-input-number v-model="client._totalGB" :min="0"></a-input-number>
                </a-form-item>
                <template v-if="isEdit && clientStats">
                    <br>
                    <span> {{ i18n "usage" }}:</span>
                    <a-tag :color="clientUsageColor(clientStats, app.trafficDiff)">
                        [[ sizeFormat(clientStats.up) ]] /
                        [[ sizeFormat(clientStats.down) ]]
                        ([[ sizeFormat(clientStats.up + clientStats.down) ]])
                    </a-tag>
                    <a-tooltip>
                        <template slot="title">{{ i18n "pages.inbounds.resetTraffic" }}</template>
                        <a-icon type="retweet"
                            @click="resetClientTraffic(client.email,clientStats.inboundId,$event.target)"
                            v-if="client.email.length > 0"></a-icon>
                    </a-tooltip>
                </template>
            </td>
        </tr>
        <tr>
            <td>{{ i18n "pages.client.delayedStart" }}</td>
            <td>
                <a-form-item>
                    <a-switch v-model="delayedStart" @click="client._expiryTime=0"></a-switch>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="delayedStart">
            <td>{{ i18n "pages.client.expireDays" }}</td>
            <td>
                <a-form-item>
                    <a-input-number v-model="delayedExpireDays" :min="0"></a-input-number>
                </a-form-item>
            </td>
        </tr>
        <tr v-else>
            <td>
                <span>{{ i18n "pages.inbounds.expireDate" }}</span>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.inbounds.leaveBlankToNeverExpire" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-date-picker :show-time="{ format: 'HH:mm:ss' }" format="YYYY-MM-DD HH:mm:ss"
                        :dropdown-class-name="themeSwitcher.currentTheme" v-model="client._expiryTime"
                        style="width: 170px;"></a-date-picker>
                    <a-tag color="red" v-if="isEdit && isExpiry">Expired</a-tag>
                </a-form-item>
            </td>
        </tr>
        <tr v-if="client.expiryTime != 0">
            <td>
                <span>{{ i18n "pages.client.renew" }}</span>
                <a-tooltip>
                    <template slot="title">
                        <span>{{ i18n "pages.client.renewDesc" }}</span>
                    </template>
                    <a-icon type="question-circle" theme="filled"></a-icon>
                </a-tooltip>
            </td>
            <td>
                <a-form-item>
                    <a-input-number v-model.number="client.reset" :min="0"></a-input-number>
                </a-form-item>
            </td>
        </tr>
    </table>
</a-form>
{{end}}