mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
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<any, RetentionRequestBody>,
|
|
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);
|
|
};
|