umami/pages/api/websites/[id]/events.js

36 lines
967 B
JavaScript
Raw Normal View History

2020-08-27 12:42:24 +02:00
import moment from 'moment-timezone';
2022-07-13 04:50:47 +02:00
import { getEventMetrics } from 'queries';
2022-08-29 05:20:54 +02:00
import { ok, badRequest, methodNotAllowed, unauthorized } from 'next-basics';
import { allowQuery } from 'lib/auth';
2022-10-12 22:11:44 +02:00
import { useAuth, useCors } from 'lib/middleware';
2020-08-27 12:42:24 +02:00
const unitTypes = ['year', 'month', 'hour', 'day'];
2020-08-27 12:42:24 +02:00
export default async (req, res) => {
2022-10-12 22:11:44 +02:00
await useCors(req, res);
await useAuth(req, res);
2022-04-04 09:33:20 +02:00
2022-10-12 22:11:44 +02:00
if (req.method === 'GET') {
if (!(await allowQuery(req))) {
return unauthorized(res);
}
2022-10-12 04:37:38 +02:00
const { id: websiteId, start_at, end_at, unit, tz, url, event_name } = req.query;
2020-09-11 22:49:43 +02:00
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
return badRequest(res);
}
const startDate = new Date(+start_at);
const endDate = new Date(+end_at);
2020-08-27 12:42:24 +02:00
2022-10-11 02:01:48 +02:00
const events = await getEventMetrics(websiteId, startDate, endDate, tz, unit, {
url,
eventName: event_name,
});
2020-09-11 22:49:43 +02:00
return ok(res, events);
}
2020-08-27 12:42:24 +02:00
2020-09-11 22:49:43 +02:00
return methodNotAllowed(res);
2020-08-27 12:42:24 +02:00
};