umami/pages/api/teams/[id]/websites.ts

37 lines
890 B
TypeScript
Raw Normal View History

2022-11-18 09:27:42 +01:00
import { NextApiResponse } from 'next';
2022-11-20 09:48:13 +01:00
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
2022-12-07 03:36:41 +01:00
import { NextApiRequestQueryBody } from 'lib/types';
import { canViewTeam } from 'lib/auth';
import { useAuth } from 'lib/middleware';
import { getTeamWebsites } from 'queries/admin/team';
2022-11-18 09:27:42 +01:00
export interface TeamWebsiteRequestQuery {
id: string;
}
export interface TeamWebsiteRequestBody {
2023-02-02 12:30:09 +01:00
websiteId: string;
teamWebsiteId?: string;
2022-11-18 09:27:42 +01:00
}
export default async (
req: NextApiRequestQueryBody<TeamWebsiteRequestQuery, TeamWebsiteRequestBody>,
res: NextApiResponse,
) => {
await useAuth(req, res);
const { id: teamId } = req.query;
if (req.method === 'GET') {
2023-01-25 16:42:46 +01:00
if (!(await canViewTeam(req.auth, teamId))) {
2022-11-20 09:48:13 +01:00
return unauthorized(res);
}
2022-12-07 03:36:41 +01:00
const websites = await getTeamWebsites(teamId);
2022-11-18 09:27:42 +01:00
2022-12-07 03:36:41 +01:00
return ok(res, websites);
2022-11-18 09:27:42 +01:00
}
return methodNotAllowed(res);
};