mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { startOfMinute, subMinutes } from 'date-fns';
|
|
import { canViewWebsite } from 'lib/auth';
|
|
import { useAuth, useValidate } from 'lib/middleware';
|
|
import { NextApiRequestQueryBody } from 'lib/types';
|
|
import { NextApiResponse } from 'next';
|
|
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
|
|
import { getRealtimeData } from 'queries';
|
|
import * as yup from 'yup';
|
|
import { REALTIME_RANGE } from 'lib/constants';
|
|
import { TimezoneTest } from 'lib/yup';
|
|
|
|
export interface RealtimeRequestQuery {
|
|
websiteId: string;
|
|
timezone?: string;
|
|
}
|
|
|
|
const schema = {
|
|
GET: yup.object().shape({
|
|
websiteId: yup.string().uuid().required(),
|
|
timezone: TimezoneTest,
|
|
}),
|
|
};
|
|
|
|
export default async (req: NextApiRequestQueryBody<RealtimeRequestQuery>, res: NextApiResponse) => {
|
|
await useAuth(req, res);
|
|
await useValidate(schema, req, res);
|
|
|
|
if (req.method === 'GET') {
|
|
const { websiteId, timezone } = req.query;
|
|
|
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const startDate = subMinutes(startOfMinute(new Date()), REALTIME_RANGE);
|
|
|
|
const data = await getRealtimeData(websiteId, { startDate, timezone });
|
|
|
|
return ok(res, data);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|