mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
27 lines
722 B
JavaScript
27 lines
722 B
JavaScript
import { subMinutes } from 'date-fns';
|
|
import { useAuth } from 'lib/middleware';
|
|
import { ok, methodNotAllowed } from 'lib/response';
|
|
import { getUserWebsites, getRealtimeData } from 'queries';
|
|
import { createToken } from 'lib/crypto';
|
|
|
|
export default async (req, res) => {
|
|
await useAuth(req, res);
|
|
|
|
if (req.method === 'GET') {
|
|
const { user_id } = req.auth;
|
|
|
|
const websites = await getUserWebsites(user_id);
|
|
const ids = websites.map(({ website_id }) => website_id);
|
|
const token = await createToken({ websites: ids });
|
|
const data = await getRealtimeData(ids, subMinutes(new Date(), 30));
|
|
|
|
return ok(res, {
|
|
websites,
|
|
token,
|
|
data,
|
|
});
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|