mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-09 13:42:26 +01:00
37 lines
951 B
TypeScript
37 lines
951 B
TypeScript
|
import { canViewWebsite } from 'lib/auth';
|
||
|
import { useCors, useAuth } from 'lib/middleware';
|
||
|
import { NextApiRequestQueryBody } from 'lib/types';
|
||
|
import { NextApiResponse } from 'next';
|
||
|
import { ok, methodNotAllowed, unauthorized } from 'next-basics';
|
||
|
import { getEventDataFields } from 'queries';
|
||
|
|
||
|
export interface EventDataFieldsRequestBody {
|
||
|
websiteId: string;
|
||
|
dateRange: {
|
||
|
startDate: string;
|
||
|
endDate: string;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default async (
|
||
|
req: NextApiRequestQueryBody<any, EventDataFieldsRequestBody>,
|
||
|
res: NextApiResponse<any>,
|
||
|
) => {
|
||
|
await useCors(req, res);
|
||
|
await useAuth(req, res);
|
||
|
|
||
|
if (req.method === 'GET') {
|
||
|
const { websiteId, startAt, endAt } = req.query;
|
||
|
|
||
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
||
|
return unauthorized(res);
|
||
|
}
|
||
|
|
||
|
const data = await getEventDataFields(websiteId, new Date(+startAt), new Date(+endAt));
|
||
|
|
||
|
return ok(res, data);
|
||
|
}
|
||
|
|
||
|
return methodNotAllowed(res);
|
||
|
};
|