Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix new strike endpoint
  • Loading branch information
regalijan committed Dec 6, 2024
1 parent cae9af5 commit c454d2a
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions functions/api/events-team/strikes/new.ts
Expand Up @@ -2,26 +2,33 @@ 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/)
user.match(/\D/) ||
!(await D1.prepare("SELECT id FROM et_members WHERE id = ?;")
.bind(user)
.first())
)
return jsonError("Invalid user id", 400);

const now = Date.now();
const id = crypto.randomUUID().replaceAll("-", "");
const actingUser = context.data.current_user.id;

await context.env.D1.prepare(
"INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?1, ?2, ?3, ?4, ?5); UPDATE et_members SET points = points - 100 WHERE id = ?5;",
)
.bind(now, actingUser, id, reason, user)
.run();
await D1.batch([
D1.prepare(
"INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?, ?, ?, ?, ?); UPDATE et_members SET points = points - 100 WHERE id = ?5;",
).bind(now, actingUser, id, reason, user),
D1.prepare(
"UPDATE et_members SET points = points - 100 WHERE id = ?;",
).bind(user),
]);

return jsonResponse(
JSON.stringify({
Expand Down

0 comments on commit c454d2a

Please sign in to comment.