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

40 lines
951 B
TypeScript
Raw Normal View History

2022-11-18 09:27:42 +01:00
import { NextApiRequestQueryBody } from 'interface/api/nextApi';
import { canViewTeam } from 'lib/auth';
2022-11-18 09:27:42 +01:00
import { useAuth } from 'lib/middleware';
import { NextApiResponse } from 'next';
2022-11-20 09:48:13 +01:00
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
import { getWebsitesByTeamId } from 'queries';
2022-11-18 09:27:42 +01:00
export interface TeamWebsiteRequestQuery {
id: string;
}
export interface TeamWebsiteRequestBody {
website_id: string;
team_website_id?: string;
}
export default async (
req: NextApiRequestQueryBody<TeamWebsiteRequestQuery, TeamWebsiteRequestBody>,
res: NextApiResponse,
) => {
await useAuth(req, res);
const {
user: { id: userId },
} = req.auth;
2022-11-18 09:27:42 +01:00
const { id: teamId } = req.query;
if (req.method === 'GET') {
if (await canViewTeam(userId, teamId)) {
2022-11-20 09:48:13 +01:00
return unauthorized(res);
}
2022-11-18 09:27:42 +01:00
const website = await getWebsitesByTeamId({ teamId });
return ok(res, website);
}
return methodNotAllowed(res);
};