mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* First iteration on the new PieChart component * #128 Adds new admin home page * Fixes code after merging conflicts * Removes empty file * Uses real data for admin home page, and improves style * Reverts debugging code * Defines missing variable * Caches user stats data for admin home page * Typo * Styles improvements * Invalidates cache on signup/signin * Implements top 5 biggest games * Improves styling * Improves style * Using generateManifest to get the proper size * Reading data from cache * Removes unnecessary import * Improves caching mechanism for game sizes * Removes lint errors * Replaces piechart tooltip with colors in legend * Fixes caching * Fixes caching and slight improvement on pie chart colours * Fixes a few bugs related to caching * Fixes bug where app signin didn't refresh cache * feat: style improvements * fix: lint --------- Co-authored-by: DecDuck <declanahofmeyr@gmail.com>
34 lines
995 B
TypeScript
34 lines
995 B
TypeScript
import { defineEventHandler, createError } from "h3";
|
|
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
import userStatsManager from "~/server/internal/userstats";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["user:delete"]);
|
|
if (!allowed)
|
|
throw createError({
|
|
statusCode: 403,
|
|
});
|
|
|
|
const userId = h3.context.params?.id;
|
|
if (!userId) {
|
|
throw createError({
|
|
statusCode: 400,
|
|
message: "No userId in route.",
|
|
});
|
|
}
|
|
if (userId === "system")
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "Cannot interact with system user.",
|
|
});
|
|
|
|
const user = await prisma.user.findUnique({ where: { id: userId } });
|
|
if (!user)
|
|
throw createError({ statusCode: 404, statusMessage: "User not found." });
|
|
|
|
await prisma.user.delete({ where: { id: userId } });
|
|
await userStatsManager.deleteUser();
|
|
return { success: true };
|
|
});
|