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

37 lines
944 B
JavaScript
Raw Normal View History

2020-08-27 12:42:24 +02:00
import moment from 'moment-timezone';
2020-10-09 08:26:05 +02:00
import { getEventMetrics } from 'lib/queries';
import { ok, badRequest, methodNotAllowed, unauthorized } from 'lib/response';
import { allowQuery } from 'lib/auth';
2022-04-04 09:33:20 +02:00
import { 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) => {
2020-09-11 22:49:43 +02:00
if (req.method === 'GET') {
2022-04-04 09:33:20 +02:00
await useCors(req, res);
if (!(await allowQuery(req))) {
return unauthorized(res);
}
const { id, start_at, end_at, unit, tz, url, event_type } = req.query;
2020-09-11 22:49:43 +02:00
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
return badRequest(res);
}
2020-08-27 12:42:24 +02:00
2020-09-11 22:49:43 +02:00
const websiteId = +id;
const startDate = new Date(+start_at);
const endDate = new Date(+end_at);
2020-08-27 12:42:24 +02:00
const events = await getEventMetrics(websiteId, startDate, endDate, tz, unit, {
url,
event_type,
});
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
};