umami/pages/api/reports/insights.ts

57 lines
1.3 KiB
TypeScript
Raw Normal View History

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;
};
2023-08-04 09:51:52 +02:00
fields: { name: string; type: string; value: string }[];
filters: string[];
2023-08-07 07:52:17 +02:00
groups: { name: string; type: string }[];
}
2023-08-11 18:05:56 +02:00
function convertFilters(filters) {
return filters.reduce((obj, { name, ...value }) => {
obj[name] = value;
return obj;
}, {});
}
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 },
2023-08-08 08:02:38 +02:00
fields,
2023-08-07 07:52:17 +02:00
filters,
} = req.body;
if (!(await canViewWebsite(req.auth, websiteId))) {
return unauthorized(res);
}
2023-08-08 08:02:38 +02:00
const data = await getInsights(websiteId, fields, {
2023-08-11 18:05:56 +02:00
...convertFilters(filters),
2023-08-07 07:52:17 +02:00
startDate: new Date(startDate),
endDate: new Date(endDate),
});
return ok(res, data);
}
return methodNotAllowed(res);
};