import { canViewWebsite } from 'lib/auth'; import { useAuth, useCors, useValidate } from 'lib/middleware'; import { NextApiRequestQueryBody } from 'lib/types'; import { NextApiResponse } from 'next'; import { methodNotAllowed, ok, unauthorized } from 'next-basics'; import { getRetention } from 'queries'; import * as yup from 'yup'; export interface RetentionRequestBody { websiteId: string; dateRange: { startDate: string; endDate: string }; } const schema = { POST: yup.object().shape({ websiteId: yup.string().uuid().required(), dateRange: yup .object() .shape({ startDate: yup.date().required(), endDate: yup.date().required(), }) .required(), }), }; export default async ( req: NextApiRequestQueryBody, res: NextApiResponse, ) => { await useCors(req, res); await useAuth(req, res); req.yup = schema; await useValidate(req, res); if (req.method === 'POST') { const { websiteId, dateRange: { startDate, endDate }, } = req.body; if (!(await canViewWebsite(req.auth, websiteId))) { return unauthorized(res); } const data = await getRetention(websiteId, { startDate: new Date(startDate), endDate: new Date(endDate), }); return ok(res, data); } return methodNotAllowed(res); };