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: { name: string; type: string; value: string }[]; filters: string[]; groups: { name: string; type: string }[]; } function convertFilters(filters) { return filters.reduce((obj, { name, ...value }) => { obj[name] = value; return obj; }, {}); } export default async ( req: NextApiRequestQueryBody, res: NextApiResponse, ) => { await useCors(req, res); await useAuth(req, res); if (req.method === 'POST') { const { websiteId, dateRange: { startDate, endDate }, fields, filters, } = req.body; if (!(await canViewWebsite(req.auth, websiteId))) { return unauthorized(res); } const data = await getInsights(websiteId, fields, { ...convertFilters(filters), startDate: new Date(startDate), endDate: new Date(endDate), }); return ok(res, data); } return methodNotAllowed(res); };