mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
"/auth/login" route
This commit is contained in:
46
packages/backend/src/routes/auth/login.ts
Normal file
46
packages/backend/src/routes/auth/login.ts
Normal file
@@ -0,0 +1,46 @@
|
||||
import type { BunRequest } from "bun";
|
||||
import { generateToken, verifyPassword } from "../../auth/utils";
|
||||
import { getUserByUsername } from "../../db/queries";
|
||||
|
||||
const isNonEmptyString = (value: unknown): value is string =>
|
||||
typeof value === "string" && value.trim().length > 0;
|
||||
|
||||
export default async function login(req: BunRequest) {
|
||||
if (req.method !== "POST") {
|
||||
return new Response("method not allowed", { status: 405 });
|
||||
}
|
||||
|
||||
let body: unknown;
|
||||
try {
|
||||
body = await req.json();
|
||||
} catch {
|
||||
return new Response("invalid JSON", { status: 400 });
|
||||
}
|
||||
|
||||
if (!body || typeof body !== "object") {
|
||||
return new Response("invalid request body", { status: 400 });
|
||||
}
|
||||
|
||||
const { username, password } = body as Record<string, unknown>;
|
||||
|
||||
if (!isNonEmptyString(username) || !isNonEmptyString(password)) {
|
||||
return new Response("username and password are required", { status: 400 });
|
||||
}
|
||||
|
||||
const user = await getUserByUsername(username);
|
||||
if (!user) {
|
||||
return new Response("invalid credentials", { status: 401 });
|
||||
}
|
||||
|
||||
const ok = await verifyPassword(password, user.passwordHash);
|
||||
if (!ok) {
|
||||
return new Response("invalid credentials", { status: 401 });
|
||||
}
|
||||
|
||||
const token = generateToken(user.id);
|
||||
|
||||
return Response.json({
|
||||
user: { id: user.id, name: user.name, username: user.username },
|
||||
token,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user