forked from x-dr/chatgptProxyAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
312 lines (271 loc) · 8.86 KB
/
index.html
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script defer src="https://unpkg.com/alpinejs@3.10.5/dist/cdn.min.js"></script>
<title>查询 ChatGPTAPI 余额</title>
<style>
:root {
--color-primary: #5c7cfa;
--color-primary-dark: #4263eb;
--color-primary-alpha: #5c7cfa50;
--body-color: #495057;
--body-bg: #f8f9fa;
--border-color: #dee2e6;
}
body {
max-width: 30rem;
margin-left: auto;
margin-right: auto;
padding-left: 2rem;
padding-right: 2rem;
color: var(--body-color);
background: var(--body-bg);
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color .3s;
}
a:hover {
color: var(--color-primary);
text-decoration: underline;
}
h1 {
font-size: 3rem;
font-weight: 300;
text-align: center;
opacity: .2;
}
main[x-cloak] {
opacity: 0;
}
main:not([x-cloak]) {
opacity: 1;
transition: opacity .3s;
}
input {
-webkit-appearance: none;
appearance: none;
display: block;
width: 100%;
padding: .5rem 1rem;
border: 1px solid var(--border-color);
border-radius: .25rem;
box-sizing: border-box;
color: #33404d;
line-height: inherit;
font-size: 1rem;
transition: border .3s, box-shadow .3s;
}
input:focus {
box-shadow: 0 0 0 .25rem var(--color-primary-alpha);
border-color: var(--color-primary);
outline: 0;
}
details {
margin: 1rem 0 2rem;
border: 1px solid var(--border-color);
border-radius: .25rem;
transition: background .3s;
}
details[open] {
background: #fff;
}
details summary {
padding: .5rem 1rem;
font-weight: 500;
user-select: none;
cursor: pointer;
opacity: .8;
outline: 0;
}
details div {
padding: 1rem;
border-top: 1px solid var(--border-color);
}
details small {
margin: 0;
font-size: .875rem;
line-height: 2;
}
button {
appearance: none;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 5rem;
padding: .5rem .75rem;
border: 1px solid var(--color-primary);
border-radius: .25rem;
background: var(--color-primary);
color: #fff;
font-size: 1rem;
font-weight: 500;
line-height: inherit;
cursor: pointer;
user-select: none;
transition: border .3s, background .3s, ;
}
button:hover {
border-color: var(--color-primary-dark);
background: var(--color-primary-dark);
}
button:focus {
box-shadow: 0 0 0 .25rem var(--color-primary-alpha);
border-color: var(--color-primary);
outline: 0;
}
button:disabled {
background: var(--color-primary);
border-color: var(--color-primary);
opacity: .6;
cursor: not-allowed;
}
button.loading::before {
content: '';
display: inline-block;
margin-right: .5rem;
border: 2px solid #fff;
border-top-color: transparent;
border-bottom-color: transparent;
border-radius: 50%;
width: .75rem;
height: .75rem;
animation: rotate .5s linear infinite;
}
footer {
padding: 1rem;
border-top: 1px solid var(--border-color);
text-align: center;
opacity: .5;
}
footer i {
font-style: normal;
color: #ff8787;
}
.success,
.error {
margin-bottom: 1rem;
padding: .5rem 1rem;
border-radius: .25rem;
color: #fff;
text-align: center;
opacity: 1;
transition: opacity .3s;
}
.success {
border: 1px solid #12b886;
background: #38d9a9;
}
.error {
border: 1px solid #fa5252;
background: #ff8787;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<header>
<h1>查询 ChatGPTAPI 余额</h1>
</header>
<main x-data="app" x-cloak>
<p x-show.transition.opacity="alert" :class="alert?.type" x-text="alert?.message"></p>
<input placeholder="请输入以sk-开头的key..." x-model="u" /></p>
<button :class="{ loading }" :disabled="loading" @click="submit($refs)">查询</button> </p>
<p>额度总量:<a x-text="total?.total_granted"></a></p>
<p>已用额度:<a x-text="total?.total_used"></a></p>
<p>剩余额度:<a x-text="total?.total_available"></a></p>
</main>
<footer>
<p x-data="ip" x-init='$nextTick(() => {getipinfo()})' x-show.transition.opacity="ipinfo" x-text="ipinfo"></p>
</footer>
<script>
const app = {
u: '',
alert: null,
total: null,
loading: false,
isValidated() {
const regex = /^sk-.{21,}$/;
if (regex.test(this.u)) {
return false
}
else {
return true
}
},
submit($refs) {
if (!this.u) {
this.alert = { type: 'error', message: '请输入以sk-开头的key...' }
return
}
if (this.isValidated()) {
this.alert = { type: 'error', message: '非法key格式' }
return
}
this.alert = null
this.loading = true
this.total = null
//https://api.openai.com/dashboard/billing/credit_grants 官方接口
// openai.1rmb.tk 反代接口
fetch('https://openai.1rmb.tk/dashboard/billing/credit_grants', {
method: 'get',
headers: {
'content-type': 'application/json',
'Authorization': `Bearer ${this.u}`
}
})
.then(res => res.json())
.then(res => {
this.loading = false
console.log(res.total_used);
if (res.hasOwnProperty('total_granted')) {
this.alert = { type: 'success', message: "查询成功" }
this.total = {
total_granted: res.total_granted,
total_used: res.total_used,
total_available: res.total_available,
}
return
}
if (res.hasOwnProperty('error')) {
this.alert = { type: 'error', message: res.error.message }
return
}
})
.catch(e => {
this.alert = { type: 'error', message: e.message }
this.loading = false
})
}
}
const ip = {
ipinfo: '',
getipinfo() {
fetch('https://forge.speedtest.cn/api/location/info')
.then(res => res.json())
.then(res => {
// console.log(res);
this.ipinfo = `当前IP: ${res.ip} (${res.province} ${res.city} ${res.distinct} ${res.isp}) `
})
.catch(err => {
console.log(err);
})
}
}
</script>
</body>
</html>