Permalink
Cannot retrieve contributors at this time
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?
car-crushers-portal/functions/api/events-team/strikes/new.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (36 sloc)
1.11 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | |
}), | |
); | |
} |