forked from pinks/eris
main #14
|
@ -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 },
|
||||||
|
|
Loading…
Reference in New Issue