mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
update user backend + frontend server function
This commit is contained in:
30
packages/backend/src/routes/user/update.ts
Normal file
30
packages/backend/src/routes/user/update.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import type { UserRecord } from "@issue/shared";
|
||||
import type { AuthedRequest } from "../../auth/middleware";
|
||||
import { getUserById } from "../../db/queries";
|
||||
|
||||
// /user/update?id=1&name=NewName&passwordHash=NewHash&serverURL=NewURL
|
||||
export default async function update(req: AuthedRequest) {
|
||||
const url = new URL(req.url);
|
||||
const id = url.searchParams.get("id");
|
||||
if (!id) {
|
||||
return new Response("id is required", { status: 400 });
|
||||
}
|
||||
|
||||
const user = await getUserById(Number(id));
|
||||
if (!user) {
|
||||
return new Response("user not found", { status: 404 });
|
||||
}
|
||||
|
||||
const name = url.searchParams.get("name") || undefined;
|
||||
const passwordHash = url.searchParams.get("passwordHash") || undefined;
|
||||
const serverURL = url.searchParams.get("serverURL") || undefined;
|
||||
|
||||
const { updateById } = await import("../../db/queries/users");
|
||||
const updatedUser = await updateById(user.id, { name, passwordHash, serverURL });
|
||||
|
||||
if (!updatedUser) {
|
||||
return new Response("failed to update user", { status: 500 });
|
||||
}
|
||||
|
||||
return Response.json(updatedUser as UserRecord);
|
||||
}
|
||||
Reference in New Issue
Block a user