mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
Converted admin, auth, me and realtime routes.
This commit is contained in:
parent
6c9f1ad06b
commit
5205551ca8
25 changed files with 346 additions and 7 deletions
44
src/app/api/auth/login/route.ts
Normal file
44
src/app/api/auth/login/route.ts
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
import { z } from 'zod';
|
||||
import { checkPassword, createSecureToken } from 'next-basics';
|
||||
import { redisEnabled } from '@umami/redis-client';
|
||||
import { getUserByUsername } from 'queries';
|
||||
import { json, unauthorized } from 'lib/response';
|
||||
import { parseRequest } from 'lib/request';
|
||||
import { saveAuth } from 'lib/auth';
|
||||
import { secret } from 'lib/crypto';
|
||||
import { ROLES } from 'lib/constants';
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
if (redisEnabled) {
|
||||
const token = await saveAuth({ userId: user.id });
|
||||
|
||||
return json({ token, user });
|
||||
}
|
||||
|
||||
const token = createSecureToken({ userId: user.id }, secret());
|
||||
const { id, role, createdAt } = user;
|
||||
|
||||
return json({
|
||||
token,
|
||||
user: { id, username, role, createdAt, isAdmin: role === ROLES.admin },
|
||||
});
|
||||
}
|
||||
14
src/app/api/auth/logout/route.ts
Normal file
14
src/app/api/auth/logout/route.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { getClient, redisEnabled } from '@umami/redis-client';
|
||||
import { ok } from 'lib/response';
|
||||
|
||||
export async function POST(request: Request) {
|
||||
if (redisEnabled) {
|
||||
const redis = getClient();
|
||||
|
||||
const token = request.headers.get('authorization')?.split(' ')?.[1];
|
||||
|
||||
await redis.del(token);
|
||||
}
|
||||
|
||||
return ok();
|
||||
}
|
||||
18
src/app/api/auth/sso/route.ts
Normal file
18
src/app/api/auth/sso/route.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { redisEnabled } from '@umami/redis-client';
|
||||
import { json } from 'lib/response';
|
||||
import { parseRequest } from 'lib/request';
|
||||
import { saveAuth } from 'lib/auth';
|
||||
|
||||
export async function POST(request: Request) {
|
||||
const { auth, error } = await parseRequest(request);
|
||||
|
||||
if (error) {
|
||||
return error();
|
||||
}
|
||||
|
||||
if (redisEnabled) {
|
||||
const token = await saveAuth({ userId: auth.user.id }, 86400);
|
||||
|
||||
return json({ user: auth.user, token });
|
||||
}
|
||||
}
|
||||
12
src/app/api/auth/verify/route.ts
Normal file
12
src/app/api/auth/verify/route.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { parseRequest } from 'lib/request';
|
||||
import { json } from 'lib/response';
|
||||
|
||||
export async function GET(request: Request) {
|
||||
const { auth, error } = await parseRequest(request);
|
||||
|
||||
if (error) {
|
||||
return error();
|
||||
}
|
||||
|
||||
return json(auth.user);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue