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';
|
2020-08-27 12:42:24 +02:00
|
|
|
|
2020-09-13 20:33:57 +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') {
|
|
|
|
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
|
|
|
};
|