mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
26 lines
677 B
JavaScript
26 lines
677 B
JavaScript
import moment from 'moment-timezone';
|
|
import { getEvents } from 'lib/queries';
|
|
import { ok, badRequest, methodNotAllowed } from 'lib/response';
|
|
|
|
const unitTypes = ['year', 'month', 'hour', 'day'];
|
|
|
|
export default async (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);
|
|
};
|