mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { canUpdateTeam, canViewTeam } from 'lib/auth';
|
|
import { useAuth } from 'lib/middleware';
|
|
import { NextApiRequestQueryBody } from 'lib/types';
|
|
import { NextApiResponse } from 'next';
|
|
import { badRequest, methodNotAllowed, ok, unauthorized } from 'next-basics';
|
|
import { createTeamUser, getTeamUsers, getUser } from 'queries';
|
|
|
|
export interface TeamUserRequestQuery {
|
|
id: string;
|
|
}
|
|
|
|
export interface TeamUserRequestBody {
|
|
email: string;
|
|
roleId: string;
|
|
}
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<TeamUserRequestQuery, TeamUserRequestBody>,
|
|
res: NextApiResponse,
|
|
) => {
|
|
await useAuth(req, res);
|
|
|
|
const { id: teamId } = req.query;
|
|
|
|
if (req.method === 'GET') {
|
|
if (!(await canViewTeam(req.auth, teamId))) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const users = await getTeamUsers(teamId);
|
|
|
|
return ok(res, users);
|
|
}
|
|
|
|
if (req.method === 'POST') {
|
|
if (!(await canUpdateTeam(req.auth, teamId))) {
|
|
return unauthorized(res, 'You must be the owner of this team.');
|
|
}
|
|
|
|
const { email, roleId: roleId } = req.body;
|
|
|
|
// Check for User
|
|
const user = await getUser({ username: email });
|
|
|
|
if (!user) {
|
|
return badRequest(res, 'The User does not exists.');
|
|
}
|
|
|
|
const updated = await createTeamUser(user.id, teamId, roleId);
|
|
|
|
return ok(res, updated);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|