Files
car-crushers-portal/functions/api/events-team/strikes/new.ts
Regalijan cfc57c838e
All checks were successful
Test, Build, Deploy / Test, Build, and Deploy (push) Successful in 55s
Test, Build, Deploy / Create Sentry Release (push) Successful in 6s
More events team nonsense
2026-04-11 03:30:46 -04:00

45 lines
1.1 KiB
TypeScript

import { jsonError, jsonResponse } from "../../../common.js";
export async function onRequestPost(context: RequestContext) {
const { reason, user } = context.data.body;
const { D1 } = context.env;
if (typeof reason !== "string") return jsonError("Invalid reason", 400);
if (
typeof user !== "string" ||
user.length > 20 ||
user.length < 17 ||
user.match(/\D/) ||
!(await context.data.prisma.etMember.findUnique({
where: {
id: user,
},
}))
)
return jsonError("Invalid user id", 400);
const now = Date.now();
const id = crypto.randomUUID().replaceAll("-", "");
const actingUser = context.data.current_user.id;
await D1.batch([
D1.prepare(
"INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?, ?, ?, ?, ?);",
).bind(now, actingUser, id, reason, user),
D1.prepare(
"UPDATE et_members SET points = points - 100 WHERE id = ?;",
).bind(user),
]);
return jsonResponse(
JSON.stringify({
created_at: Date.now(),
created_by: context.data.current_user.id,
id,
reason,
user,
}),
);
}