Skip to content
Permalink
84e7df6c30
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
42 lines (36 sloc) 1.11 KB
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 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 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,
}),
);
}