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 { getJourney } from 'queries'; import * as yup from 'yup'; export interface RetentionRequestBody { websiteId: string; dateRange: { startDate: string; endDate: string }; steps: number; startStep?: string; endStep?: 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(), steps: yup.number().min(3).max(7).required(), startStep: yup.string(), endStep: yup.string(), }), }; export default async ( req: NextApiRequestQueryBody, res: NextApiResponse, ) => { await useCors(req, res); await useAuth(req, res); await useValidate(schema, req, res); if (req.method === 'POST') { const { websiteId, dateRange: { startDate, endDate }, steps, startStep, endStep, } = req.body; if (!(await canViewWebsite(req.auth, websiteId))) { return unauthorized(res); } const data = await getJourney(websiteId, { startDate: new Date(startDate), endDate: new Date(endDate), steps, startStep, endStep, }); return ok(res, data); } return methodNotAllowed(res); };