mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { z } from 'zod';
|
|
import { saveAuth } from '@/lib/auth';
|
|
import { ROLES } from '@/lib/constants';
|
|
import { secret } from '@/lib/crypto';
|
|
import { createSecureToken } from '@/lib/jwt';
|
|
import { checkPassword } from '@/lib/password';
|
|
import redis from '@/lib/redis';
|
|
import { parseRequest } from '@/lib/request';
|
|
import { json, unauthorized } from '@/lib/response';
|
|
import { getAllUserTeams, getUserByUsername } from '@/queries/prisma';
|
|
|
|
export async function POST(request: Request) {
|
|
const schema = z.object({
|
|
username: z.string(),
|
|
password: z.string(),
|
|
});
|
|
|
|
const { body, error } = await parseRequest(request, schema, { skipAuth: true });
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
const { username, password } = body;
|
|
|
|
const user = await getUserByUsername(username, { includePassword: true });
|
|
|
|
if (!user || !checkPassword(password, user.password)) {
|
|
return unauthorized({ code: 'incorrect-username-password' });
|
|
}
|
|
|
|
const { id, role, createdAt } = user;
|
|
|
|
let token: string;
|
|
|
|
if (redis.enabled) {
|
|
token = await saveAuth({ userId: id, role });
|
|
} else {
|
|
token = createSecureToken({ userId: user.id, role }, secret());
|
|
}
|
|
|
|
const teams = await getAllUserTeams(id);
|
|
|
|
return json({
|
|
token,
|
|
user: { id, username, role, createdAt, isAdmin: role === ROLES.admin, teams },
|
|
});
|
|
}
|