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

37 lines
923 B
TypeScript
Raw Normal View History

2022-12-07 03:36:41 +01:00
import { WebsiteActive } from 'lib/types';
import { NextApiRequestQueryBody } from 'lib/types';
import { canViewWebsite } from 'lib/auth';
2022-11-19 03:49:58 +01:00
import { useAuth, useCors } from 'lib/middleware';
2022-11-15 22:21:14 +01:00
import { NextApiResponse } from 'next';
2022-11-19 03:49:58 +01:00
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
import { getActiveVisitors } from 'queries';
2020-08-18 09:51:32 +02:00
2022-11-15 22:21:14 +01:00
export interface WebsiteActiveRequestQuery {
id: string;
}
export default async (
req: NextApiRequestQueryBody<WebsiteActiveRequestQuery>,
res: NextApiResponse<WebsiteActive>,
) => {
2022-10-12 22:11:44 +02:00
await useCors(req, res);
await useAuth(req, res);
2022-04-04 09:33:20 +02:00
const {
user: { id: userId },
} = req.auth;
const { id: websiteId } = req.query;
2022-10-12 22:11:44 +02:00
if (req.method === 'GET') {
if (await canViewWebsite(userId, websiteId)) {
return unauthorized(res);
}
2022-10-11 02:01:48 +02:00
const result = await getActiveVisitors(websiteId);
2020-09-11 22:49:43 +02:00
return ok(res, result);
}
return methodNotAllowed(res);
2020-08-18 09:51:32 +02:00
};