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';
|
2020-09-18 07:52:20 +02:00
|
|
|
import { ok, badRequest, methodNotAllowed, unauthorized } from 'lib/response';
|
|
|
|
import { allowQuery } from 'lib/auth';
|
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') {
|
2020-09-18 07:52:20 +02:00
|
|
|
if (!(await allowQuery(req))) {
|
|
|
|
return unauthorized(res);
|
|
|
|
}
|
|
|
|
|
2020-09-26 07:31:18 +02:00
|
|
|
const { id, start_at, end_at, unit, tz, url } = 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
|
|
|
|
2020-10-09 08:26:05 +02:00
|
|
|
const events = await getEventMetrics(websiteId, startDate, endDate, tz, unit, { url });
|
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
|
|
|
};
|