mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
22 lines
523 B
TypeScript
22 lines
523 B
TypeScript
import { saveAuth } from '@/lib/auth';
|
|
import redis from '@/lib/redis';
|
|
import { parseRequest } from '@/lib/request';
|
|
import { json, serverError } from '@/lib/response';
|
|
|
|
export async function POST(request: Request) {
|
|
const { auth, error } = await parseRequest(request);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
if (!redis.enabled) {
|
|
return serverError({
|
|
message: 'Redis is disabled',
|
|
});
|
|
}
|
|
|
|
const token = await saveAuth({ userId: auth.user.id }, 86400);
|
|
|
|
return json({ user: auth.user, token });
|
|
}
|