import moment from 'moment-timezone'; import { getEvents } from 'lib/queries'; import { ok, badRequest, methodNotAllowed } from 'lib/response'; import { useAuth } from 'lib/middleware'; const unitTypes = ['month', 'hour', 'day']; export default async (req, res) => { await useAuth(req, res); 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); } const websiteId = +id; const startDate = new Date(+start_at); const endDate = new Date(+end_at); const events = await getEvents(websiteId, startDate, endDate, tz, unit); return ok(res, events); } return methodNotAllowed(res); };