37 lines
939 B
JavaScript
37 lines
939 B
JavaScript
![]() |
import moment from 'moment-timezone';
|
||
![]() |
import { getEventMetrics } from 'queries';
|
||
![]() |
import { ok, badRequest, methodNotAllowed, unauthorized } from 'next-basics';
|
||
![]() |
import { allowQuery } from 'lib/auth';
|
||
![]() |
import { useCors } from 'lib/middleware';
|
||
![]() |
|
||
![]() |
const unitTypes = ['year', 'month', 'hour', 'day'];
|
||
![]() |
|
||
|
export default async (req, res) => {
|
||
![]() |
if (req.method === 'GET') {
|
||
![]() |
await useCors(req, res);
|
||
|
|
||
![]() |
if (!(await allowQuery(req))) {
|
||
|
return unauthorized(res);
|
||
|
}
|
||
|
|
||
![]() |
const { id, start_at, end_at, unit, tz, url, event_name } = 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 getEventMetrics(websiteId, startDate, endDate, tz, unit, {
|
||
|
url,
|
||
![]() |
event_name,
|
||
![]() |
});
|
||
![]() |
|
||
|
return ok(res, events);
|
||
|
}
|
||
![]() |
|
||
![]() |
return methodNotAllowed(res);
|
||
![]() |
};
|