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

33 lines
848 B
TypeScript
Raw Normal View History

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