mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
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 { getPageviewFunnel } from 'queries';
|
|
|
|
export interface FunnelRequestBody {
|
|
websiteId: string;
|
|
urls: string[];
|
|
window: number;
|
|
dateRange: {
|
|
startDate: string;
|
|
endDate: string;
|
|
};
|
|
}
|
|
|
|
export interface FunnelResponse {
|
|
urls: string[];
|
|
window: number;
|
|
startAt: number;
|
|
endAt: number;
|
|
}
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<any, FunnelRequestBody>,
|
|
res: NextApiResponse<FunnelResponse>,
|
|
) => {
|
|
await useCors(req, res);
|
|
await useAuth(req, res);
|
|
|
|
if (req.method === 'POST') {
|
|
const {
|
|
websiteId,
|
|
urls,
|
|
window,
|
|
dateRange: { startDate, endDate },
|
|
} = req.body;
|
|
|
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const data = await getPageviewFunnel(websiteId, {
|
|
startDate: new Date(startDate),
|
|
endDate: new Date(endDate),
|
|
urls,
|
|
windowMinutes: +window,
|
|
});
|
|
|
|
return ok(res, data);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|