2020-07-29 04:04:45 +02:00
|
|
|
import moment from 'moment-timezone';
|
2020-08-12 07:24:41 +02:00
|
|
|
import { getPageviews } 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-07-26 09:12:42 +02:00
|
|
|
|
2020-09-13 10:38:14 +02:00
|
|
|
const unitTypes = ['year', 'month', 'hour', 'day'];
|
2020-08-01 04:05:14 +02:00
|
|
|
|
2020-07-26 09:12:42 +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-11 22:49:43 +02:00
|
|
|
}
|
2020-07-29 04:04:45 +02:00
|
|
|
|
2020-09-18 07:52:20 +02:00
|
|
|
const { id, start_at, end_at, unit, tz } = req.query;
|
|
|
|
|
2020-09-11 22:49:43 +02:00
|
|
|
const websiteId = +id;
|
|
|
|
const startDate = new Date(+start_at);
|
|
|
|
const endDate = new Date(+end_at);
|
2020-07-30 09:06:29 +02:00
|
|
|
|
2020-09-18 07:52:20 +02:00
|
|
|
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
|
|
|
|
return badRequest(res);
|
|
|
|
}
|
|
|
|
|
2020-09-11 22:49:43 +02:00
|
|
|
const [pageviews, uniques] = await Promise.all([
|
|
|
|
getPageviews(websiteId, startDate, endDate, tz, unit, '*'),
|
|
|
|
getPageviews(websiteId, startDate, endDate, tz, unit, 'distinct session_id'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return ok(res, { pageviews, uniques });
|
|
|
|
}
|
2020-07-28 08:52:14 +02:00
|
|
|
|
2020-09-11 22:49:43 +02:00
|
|
|
return methodNotAllowed(res);
|
2020-07-26 09:12:42 +02:00
|
|
|
};
|