mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 03:26:38 +08:00
redisRestClient refactor
This commit is contained in:
parent
511f650696
commit
35c6263560
@ -75,16 +75,37 @@ export const getAvailableDateKeys = async (): Promise<string[]> => {
|
|||||||
export const getSignInCountForPeriod = async (dateKey: string): Promise<number> => {
|
export const getSignInCountForPeriod = async (dateKey: string): Promise<number> => {
|
||||||
try {
|
try {
|
||||||
const counts = await redis.hgetall(`signin_count:${dateKey}`);
|
const counts = await redis.hgetall(`signin_count:${dateKey}`);
|
||||||
return Object.values(counts).reduce((total, count) => total + parseInt(count, 10), 0);
|
return Object.values(counts).reduce((total, count) => {
|
||||||
|
// Ensure that 'count' is a string before parsing it to an integer.
|
||||||
|
if (typeof count === 'string') {
|
||||||
|
return total + parseInt(count, 10);
|
||||||
|
} else {
|
||||||
|
console.error(`Count value is not a string: ${count}`);
|
||||||
|
return total;
|
||||||
|
}
|
||||||
|
}, 0);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Failed to get sign-in count for period ${dateKey}`, error);
|
console.error(`Failed to get sign-in count for period ${dateKey}`, error);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export const getDetailsByUser = async (dateKey: string): Promise<Record<string, number>> => {
|
export const getDetailsByUser = async (dateKey: string): Promise<Record<string, number>> => {
|
||||||
try {
|
try {
|
||||||
const counts = await redis.hgetall(`signin_count:${dateKey}`);
|
const rawCounts = await redis.hgetall(`signin_count:${dateKey}`);
|
||||||
|
const counts: Record<string, number> = {};
|
||||||
|
|
||||||
|
// Ensure that all values are numbers after parsing.
|
||||||
|
for (const [key, value] of Object.entries(rawCounts)) {
|
||||||
|
if (typeof value === 'string') {
|
||||||
|
counts[key] = parseInt(value, 10);
|
||||||
|
} else {
|
||||||
|
console.error(`Value for key '${key}' is not a string: ${value}`);
|
||||||
|
counts[key] = 0; // or handle this case as appropriate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return counts;
|
return counts;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Failed to get details by user for period ${dateKey}`, error);
|
console.error(`Failed to get details by user for period ${dateKey}`, error);
|
||||||
@ -92,3 +113,4 @@ export const getDetailsByUser = async (dateKey: string): Promise<Record<string,
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user