forked from pinks/eris
1
0
Fork 0

feat: tagcount endpoint #8

Merged
nameless merged 1 commits from tagcount-onlyadmin into pr-main 2023-11-10 23:49:00 +00:00
1 changed files with 22 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import { generationStore } from "../app/generationStore.ts";
import { globalStats } from "../app/globalStats.ts"; import { globalStats } from "../app/globalStats.ts";
import { getUserDailyStats } from "../app/userDailyStatsStore.ts"; import { getUserDailyStats } from "../app/userDailyStatsStore.ts";
import { getUserStats } from "../app/userStatsStore.ts"; import { getUserStats } from "../app/userStatsStore.ts";
import { withAdmin } from "./withUser.ts";
const STATS_INTERVAL_MIN = 3; const STATS_INTERVAL_MIN = 3;
@ -91,7 +92,6 @@ export const statsRoute = createPathFilter({
data: { data: {
imageCount: stats.imageCount, imageCount: stats.imageCount,
pixelCount: stats.pixelCount, pixelCount: stats.pixelCount,
tagCountMap: stats.tagCountMap,
timestamp: stats.timestamp, timestamp: stats.timestamp,
}, },
}, },
@ -99,6 +99,27 @@ export const statsRoute = createPathFilter({
}, },
), ),
}), }),
"users/{userId}/tagcount": createMethodFilter({
GET: createEndpoint(
{ query: { sessionId: { type: "string" } }, body: null },
async ({ params, query }) => {
return withAdmin(query, async () => {
const userId = Number(params.userId);
const stats = await getUserStats(userId);
return {
status: 200,
body: {
type: "application/json",
data: {
tagCountMap: stats.tagCountMap,
timestamp: stats.timestamp,
},
},
};
});
},
),
}),
"users/{userId}/daily/{year}/{month}/{day}": createMethodFilter({ "users/{userId}/daily/{year}/{month}/{day}": createMethodFilter({
GET: createEndpoint( GET: createEndpoint(
{ query: null, body: null }, { query: null, body: null },