mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
36 lines
787 B
TypeScript
36 lines
787 B
TypeScript
import { z } from 'zod';
|
|
import { getRandomChars } from '@/lib/generate';
|
|
import { unauthorized, json } from '@/lib/response';
|
|
import { canCreateTeam } from '@/permissions';
|
|
import { uuid } from '@/lib/crypto';
|
|
import { parseRequest } from '@/lib/request';
|
|
import { createTeam } from '@/queries';
|
|
|
|
export async function POST(request: Request) {
|
|
const schema = z.object({
|
|
name: z.string().max(50),
|
|
});
|
|
|
|
const { auth, body, error } = await parseRequest(request, schema);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
if (!(await canCreateTeam(auth))) {
|
|
return unauthorized();
|
|
}
|
|
|
|
const { name } = body;
|
|
|
|
const team = await createTeam(
|
|
{
|
|
id: uuid(),
|
|
name,
|
|
accessCode: `team_${getRandomChars(16)}`,
|
|
},
|
|
auth.user.id,
|
|
);
|
|
|
|
return json(team);
|
|
}
|