mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-09 13:42:26 +01:00
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
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 { getInsights } from 'queries';
|
||
|
|
||
|
export interface InsightsRequestBody {
|
||
|
websiteId: string;
|
||
|
dateRange: {
|
||
|
startDate: string;
|
||
|
endDate: string;
|
||
|
};
|
||
|
fields: string[];
|
||
|
filters: string[];
|
||
|
groups: string[];
|
||
|
}
|
||
|
|
||
|
export default async (
|
||
|
req: NextApiRequestQueryBody<any, InsightsRequestBody>,
|
||
|
res: NextApiResponse,
|
||
|
) => {
|
||
|
await useCors(req, res);
|
||
|
await useAuth(req, res);
|
||
|
|
||
|
if (req.method === 'POST') {
|
||
|
const {
|
||
|
websiteId,
|
||
|
dateRange: { startDate, endDate },
|
||
|
fields,
|
||
|
filters,
|
||
|
groups,
|
||
|
} = req.body;
|
||
|
|
||
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
||
|
return unauthorized(res);
|
||
|
}
|
||
|
|
||
|
const data = await getInsights(websiteId, {
|
||
|
startDate: new Date(startDate),
|
||
|
endDate: new Date(endDate),
|
||
|
fields,
|
||
|
filters,
|
||
|
groups,
|
||
|
});
|
||
|
|
||
|
return ok(res, data);
|
||
|
}
|
||
|
|
||
|
return methodNotAllowed(res);
|
||
|
};
|