2023-11-20 02:14:14 +00:00
|
|
|
import { Elysia, t } from "elysia";
|
2023-10-21 10:40:42 +00:00
|
|
|
import { subMinutes } from "date-fns";
|
2023-11-20 02:14:14 +00:00
|
|
|
import { dailyStatsSchema, getDailyStats } from "../app/dailyStatsStore.ts";
|
2023-10-13 11:47:57 +00:00
|
|
|
import { generationStore } from "../app/generationStore.ts";
|
2023-10-21 10:40:42 +00:00
|
|
|
import { globalStats } from "../app/globalStats.ts";
|
2023-11-20 02:14:14 +00:00
|
|
|
import { getUserDailyStats, userDailyStatsSchema } from "../app/userDailyStatsStore.ts";
|
|
|
|
import { getUserStats, userStatsSchema } from "../app/userStatsStore.ts";
|
|
|
|
import { withSessionAdmin } from "./getUser.ts";
|
2023-10-13 11:47:57 +00:00
|
|
|
|
|
|
|
const STATS_INTERVAL_MIN = 3;
|
2023-10-09 19:03:31 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
export const statsRoute = new Elysia()
|
|
|
|
.get(
|
|
|
|
"",
|
|
|
|
async () => {
|
|
|
|
const after = subMinutes(new Date(), STATS_INTERVAL_MIN);
|
|
|
|
const generations = await generationStore.getAll({ after });
|
2023-10-13 11:47:57 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
const imagesPerMinute = generations.length / STATS_INTERVAL_MIN;
|
2023-10-13 11:47:57 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
const stepsPerMinute = generations
|
|
|
|
.map((generation) => generation.value.info?.steps ?? 0)
|
|
|
|
.reduce((sum, steps) => sum + steps, 0) / STATS_INTERVAL_MIN;
|
2023-10-13 11:47:57 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
const pixelsPerMinute = generations
|
|
|
|
.map((generation) =>
|
|
|
|
(generation.value.info?.width ?? 0) * (generation.value.info?.height ?? 0)
|
|
|
|
)
|
|
|
|
.reduce((sum, pixels) => sum + pixels, 0) / STATS_INTERVAL_MIN;
|
2023-10-13 11:47:57 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
const pixelStepsPerMinute = generations
|
|
|
|
.map((generation) =>
|
|
|
|
(generation.value.info?.width ?? 0) * (generation.value.info?.height ?? 0) *
|
|
|
|
(generation.value.info?.steps ?? 0)
|
|
|
|
)
|
|
|
|
.reduce((sum, pixelSteps) => sum + pixelSteps, 0) / STATS_INTERVAL_MIN;
|
2023-10-13 11:47:57 +00:00
|
|
|
|
2023-11-20 02:14:14 +00:00
|
|
|
return {
|
|
|
|
imageCount: globalStats.imageCount,
|
|
|
|
stepCount: globalStats.stepCount,
|
|
|
|
pixelCount: globalStats.pixelCount,
|
|
|
|
pixelStepCount: globalStats.pixelStepCount,
|
|
|
|
userCount: globalStats.userIds.length,
|
|
|
|
imagesPerMinute,
|
|
|
|
stepsPerMinute,
|
|
|
|
pixelsPerMinute,
|
|
|
|
pixelStepsPerMinute,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
{
|
|
|
|
response: {
|
|
|
|
200: t.Object({
|
|
|
|
imageCount: t.Number(),
|
|
|
|
stepCount: t.Number(),
|
|
|
|
pixelCount: t.Number(),
|
|
|
|
pixelStepCount: t.Number(),
|
|
|
|
userCount: t.Number(),
|
|
|
|
imagesPerMinute: t.Number(),
|
|
|
|
stepsPerMinute: t.Number(),
|
|
|
|
pixelsPerMinute: t.Number(),
|
|
|
|
pixelStepsPerMinute: t.Number(),
|
|
|
|
}),
|
2023-10-10 16:21:25 +00:00
|
|
|
},
|
2023-11-20 02:14:14 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
.get(
|
|
|
|
"/daily/:year/:month/:day",
|
|
|
|
async ({ params }) => {
|
|
|
|
return getDailyStats(params.year, params.month, params.day);
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: t.Object({
|
|
|
|
year: t.Number(),
|
|
|
|
month: t.Number(),
|
|
|
|
day: t.Number(),
|
|
|
|
}),
|
|
|
|
response: {
|
|
|
|
200: dailyStatsSchema,
|
2023-10-10 16:21:25 +00:00
|
|
|
},
|
2023-11-20 02:14:14 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
.get(
|
|
|
|
"/users/:userId",
|
|
|
|
async ({ params }) => {
|
|
|
|
const userId = params.userId;
|
|
|
|
// deno-lint-ignore no-unused-vars
|
|
|
|
const { tagCountMap, ...stats } = await getUserStats(userId);
|
|
|
|
return stats;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: t.Object({ userId: t.Number() }),
|
|
|
|
response: {
|
|
|
|
200: t.Omit(userStatsSchema, ["tagCountMap"]),
|
2023-11-10 10:45:39 +00:00
|
|
|
},
|
2023-11-20 02:14:14 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
.get(
|
|
|
|
"/users/:userId/tagcount",
|
|
|
|
async ({ params, query, set }) => {
|
|
|
|
return withSessionAdmin({ query, set }, async () => {
|
|
|
|
const stats = await getUserStats(params.userId);
|
2023-10-10 16:21:25 +00:00
|
|
|
return {
|
2023-11-20 02:14:14 +00:00
|
|
|
tagCountMap: stats.tagCountMap,
|
|
|
|
timestamp: stats.timestamp,
|
2023-10-09 19:03:31 +00:00
|
|
|
};
|
2023-11-20 02:14:14 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: t.Object({ userId: t.Number() }),
|
|
|
|
query: t.Object({ sessionId: t.String() }),
|
|
|
|
response: {
|
|
|
|
200: t.Pick(userStatsSchema, ["tagCountMap", "timestamp"]),
|
|
|
|
401: t.Literal("Must be logged in"),
|
|
|
|
403: t.Literal("Must be an admin"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.get(
|
|
|
|
"/users/:userId/daily/:year/:month/:day",
|
|
|
|
async ({ params }) => {
|
|
|
|
return getUserDailyStats(params.userId, params.year, params.month, params.day);
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: t.Object({
|
|
|
|
userId: t.Number(),
|
|
|
|
year: t.Number(),
|
|
|
|
month: t.Number(),
|
|
|
|
day: t.Number(),
|
|
|
|
}),
|
|
|
|
response: {
|
|
|
|
200: userDailyStatsSchema,
|
2023-10-09 19:03:31 +00:00
|
|
|
},
|
2023-11-20 02:14:14 +00:00
|
|
|
},
|
|
|
|
);
|