mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
21 lines
595 B
TypeScript
21 lines
595 B
TypeScript
|
import { subMinutes } from 'date-fns';
|
||
|
import { RealtimeInit, NextApiRequestAuth } from 'lib/types';
|
||
|
import { useAuth } from 'lib/middleware';
|
||
|
import { NextApiResponse } from 'next';
|
||
|
import { methodNotAllowed, ok } from 'next-basics';
|
||
|
import { getRealtimeData } from 'queries';
|
||
|
|
||
|
export default async (req: NextApiRequestAuth, res: NextApiResponse<RealtimeInit>) => {
|
||
|
await useAuth(req, res);
|
||
|
|
||
|
if (req.method === 'GET') {
|
||
|
const { id } = req.query;
|
||
|
|
||
|
const data = await getRealtimeData(id, subMinutes(new Date(), 30));
|
||
|
|
||
|
return ok(res, data);
|
||
|
}
|
||
|
|
||
|
return methodNotAllowed(res);
|
||
|
};
|