forked from QuantumNous/new-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
304 lines (269 loc) · 8.44 KB
/
Copy pathutils.ts
File metadata and controls
304 lines (269 loc) · 8.44 KB
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
/*
Copyright (C) 2023-2026 QuantumNous
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
/**
* Utility functions for usage logs feature
*/
import {
getAllLogs,
getUserLogs,
getAllMidjourneyLogs,
getUserMidjourneyLogs,
getAllTaskLogs,
getUserTaskLogs,
} from '../api'
import {
LOG_TYPES,
DISPLAYABLE_LOG_TYPES,
TIMING_LOG_TYPES,
} from '../constants'
import type {
GetLogsParams,
GetLogsResponse,
FetchLogsConfig,
GetMidjourneyLogsParams,
GetTaskLogsParams,
} from '../types'
// ============================================================================
// Type Checkers & Utilities
// ============================================================================
/**
* Check if log type is displayable (has detailed info)
*/
export function isDisplayableLogType(type: number): boolean {
return (DISPLAYABLE_LOG_TYPES as readonly number[]).includes(type)
}
/**
* Check if log type shows timing info
*/
export function isTimingLogType(type: number): boolean {
return (TIMING_LOG_TYPES as readonly number[]).includes(type)
}
/**
* Get log type configuration by type number
*/
export function getLogTypeConfig(type: number) {
return LOG_TYPES.find((t) => t.value === type) || LOG_TYPES[0]
}
/**
* Check if log uses per-call billing
*/
export function isPerCallBilling(modelPrice?: number): boolean {
return (modelPrice ?? 0) > 0
}
/**
* Get default time range (today 00:00:00 to now + 1 hour)
*/
export function getDefaultTimeRange(): { start: Date; end: Date } {
const now = new Date()
const start = new Date(now)
start.setHours(0, 0, 0, 0)
const end = new Date(now.getTime() + 3600 * 1000) // +1 hour
return { start, end }
}
/**
* Convert milliseconds timestamp to seconds for API
*/
function timestampToSeconds(ms: number): number {
return Math.floor(ms / 1000)
}
/**
* Build query parameters from filters
*/
export function buildQueryParams(
params: Record<string, unknown>
): URLSearchParams {
const queryParams = new URLSearchParams()
Object.entries(params).forEach(([key, value]) => {
// Keep 0 as a valid value, only filter out undefined, null, and empty string
if (value !== undefined && value !== null && value !== '') {
queryParams.append(key, String(value))
}
})
return queryParams
}
/**
* Build time range parameters with default values
* Shared logic for all log types
*/
function buildTimeRangeParams(
searchParams: Record<string, unknown>,
useMilliseconds: boolean
): { start_timestamp?: number; end_timestamp?: number } {
const hasTimeParams = searchParams.startTime ?? searchParams.endTime
const defaultTimeRange = !hasTimeParams ? getDefaultTimeRange() : null
const convertTimestamp = (timestamp: number) =>
useMilliseconds ? timestamp : timestampToSeconds(timestamp)
const getTimestamp = (paramTime?: unknown, defaultTime?: Date) => {
const time = (paramTime as number) || defaultTime?.getTime()
return time ? convertTimestamp(time) : undefined
}
return {
start_timestamp: getTimestamp(
searchParams.startTime,
defaultTimeRange?.start
),
end_timestamp: getTimestamp(searchParams.endTime, defaultTimeRange?.end),
}
}
/**
* Build base parameters with time range (for drawing and task logs)
* @param useMilliseconds - Whether to use millisecond timestamps (true for drawing logs, false for task logs)
*/
export function buildBaseParams(config: {
page: number
pageSize: number
searchParams: Record<string, unknown>
useMilliseconds?: boolean
}): {
p: number
page_size: number
channel_id?: string
start_timestamp?: number
end_timestamp?: number
} {
const { page, pageSize, searchParams, useMilliseconds = false } = config
return {
p: page,
page_size: pageSize,
...(searchParams.channel
? {
channel_id: String(searchParams.channel),
}
: {}),
...buildTimeRangeParams(searchParams, useMilliseconds),
}
}
/**
* Build API params from search params and column filters (for common logs)
*/
export function buildApiParams(config: {
page: number
pageSize: number
searchParams: Record<string, unknown>
columnFilters?: Array<{ id: string; value: unknown }>
isAdmin: boolean
}): GetLogsParams {
const { page, pageSize, searchParams, columnFilters = [], isAdmin } = config
// Helper to process type parameter (single value from array)
const processType = (value: unknown): number | undefined => {
const parseType = (raw: unknown): number | undefined => {
const type = Number(raw)
return Number.isFinite(type) ? type : undefined
}
if (Array.isArray(value) && value.length === 1) {
return parseType(value[0])
}
if (typeof value === 'string' && value !== '') {
return parseType(value)
}
return undefined
}
// Build base params from search params
const params: GetLogsParams = {
p: page,
page_size: pageSize,
...(searchParams.type ? { type: processType(searchParams.type) } : {}),
...(searchParams.model ? { model_name: String(searchParams.model) } : {}),
...(searchParams.token ? { token_name: String(searchParams.token) } : {}),
...(searchParams.group ? { group: String(searchParams.group) } : {}),
...(isAdmin && searchParams.channel
? { channel: Number(searchParams.channel) || 0 }
: {}),
...(isAdmin && searchParams.username
? { username: String(searchParams.username) }
: {}),
...(searchParams.requestId
? { request_id: String(searchParams.requestId) }
: {}),
...(searchParams.upstreamRequestId
? { upstream_request_id: String(searchParams.upstreamRequestId) }
: {}),
...buildTimeRangeParams(searchParams, false),
}
// Override with column filters if present
if (columnFilters.length > 0) {
columnFilters.forEach(({ id, value }) => {
if (value === undefined || value === null || value === '') return
switch (id) {
case 'type':
params.type = processType(value)
break
case 'model_name':
params.model_name = String(value)
break
case 'token_name':
params.token_name = String(value)
break
case 'group':
params.group = String(value)
break
case 'channel':
if (isAdmin) params.channel = Number(value) || 0
break
case 'username':
if (isAdmin) params.username = String(value)
break
}
})
}
return params
}
// ============================================================================
// Data Fetching
// ============================================================================
/**
* Fetch logs based on category type
*/
export async function fetchLogsByCategory(
config: FetchLogsConfig
): Promise<GetLogsResponse> {
const { logCategory, isAdmin, page, pageSize, searchParams, columnFilters } =
config
if (logCategory === 'common') {
const params = buildApiParams({
page,
pageSize,
searchParams,
columnFilters,
isAdmin,
})
return isAdmin ? await getAllLogs(params) : await getUserLogs(params)
}
// For drawing and task logs
const baseParams = buildBaseParams({
page,
pageSize,
searchParams,
useMilliseconds: logCategory === 'drawing',
})
const paramsWithFilter = {
...baseParams,
...(logCategory === 'drawing'
? { mj_id: searchParams.filter as string | undefined }
: {}),
...(logCategory === 'task'
? { task_id: searchParams.filter as string | undefined }
: {}),
}
if (logCategory === 'drawing') {
return isAdmin
? await getAllMidjourneyLogs(paramsWithFilter as GetMidjourneyLogsParams)
: await getUserMidjourneyLogs(paramsWithFilter as GetMidjourneyLogsParams)
}
// task logs
return isAdmin
? await getAllTaskLogs(paramsWithFilter as GetTaskLogsParams)
: await getUserTaskLogs(paramsWithFilter as GetTaskLogsParams)
}