umami/pages/api/realtime/init.js

27 lines
733 B
JavaScript
Raw Normal View History

import { subMinutes } from 'date-fns';
2022-08-29 05:20:54 +02:00
import { ok, methodNotAllowed, createToken } from 'next-basics';
import { useAuth } from 'lib/middleware';
2022-07-12 23:14:36 +02:00
import { getUserWebsites, getRealtimeData } from 'queries';
2022-08-29 05:20:54 +02:00
import { secret } from 'lib/crypto';
export default async (req, res) => {
await useAuth(req, res);
if (req.method === 'GET') {
const { userId } = req.auth;
const websites = await getUserWebsites(userId);
2022-10-12 08:09:06 +02:00
const ids = websites.map(({ websiteUuid }) => websiteUuid);
2022-08-29 05:20:54 +02:00
const token = createToken({ websites: ids }, secret());
const data = await getRealtimeData(ids, subMinutes(new Date(), 30));
return ok(res, {
websites,
token,
data,
});
}
return methodNotAllowed(res);
};