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

29 lines
739 B
JavaScript
Raw Normal View History

2020-08-27 12:42:24 +02:00
import moment from 'moment-timezone';
import { getEvents } from 'lib/queries';
2020-09-11 22:49:43 +02:00
import { ok, badRequest, methodNotAllowed } from 'lib/response';
import { useAuth } from 'lib/middleware';
2020-08-27 12:42:24 +02:00
const unitTypes = ['month', 'hour', 'day'];
export default async (req, res) => {
2020-09-11 22:49:43 +02:00
await useAuth(req, res);
2020-08-27 12:42:24 +02:00
2020-09-11 22:49:43 +02:00
if (req.method === 'GET') {
const { id, start_at, end_at, unit, tz } = req.query;
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
2020-09-11 22:49:43 +02:00
const events = await getEvents(websiteId, startDate, endDate, tz, unit);
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
};