2022-11-15 22:21:14 +01:00
|
|
|
import { WebsiteActive } from 'interface/api/models';
|
|
|
|
import { NextApiRequestQueryBody } from 'interface/api/nextApi';
|
2022-11-19 03:49:58 +01:00
|
|
|
import { allowQuery } from 'lib/auth';
|
|
|
|
import { UmamiApi } from 'lib/constants';
|
|
|
|
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
|
|
|
|
2022-10-12 22:11:44 +02:00
|
|
|
if (req.method === 'GET') {
|
2022-11-19 03:49:58 +01:00
|
|
|
if (!(await allowQuery(req, UmamiApi.AuthType.Website))) {
|
2020-09-18 07:52:20 +02:00
|
|
|
return unauthorized(res);
|
|
|
|
}
|
|
|
|
|
2022-10-12 04:37:38 +02:00
|
|
|
const { id: websiteId } = req.query;
|
2020-09-18 07:52:20 +02:00
|
|
|
|
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
|
|
|
};
|