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-08-08 02:19:42 +02:00
|
|
|
import { ok, badRequest } from 'lib/response';
|
2020-07-26 09:12:42 +02:00
|
|
|
|
2020-08-01 04:05:14 +02:00
|
|
|
const unitTypes = ['month', 'hour', 'day'];
|
|
|
|
|
2020-07-26 09:12:42 +02:00
|
|
|
export default async (req, res) => {
|
2020-07-28 10:17:45 +02:00
|
|
|
const { id, start_at, end_at, unit, tz } = req.query;
|
2020-07-26 09:12:42 +02:00
|
|
|
|
2020-08-01 04:05:14 +02:00
|
|
|
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
|
2020-08-08 02:19:42 +02:00
|
|
|
return badRequest(res);
|
2020-07-29 04:04:45 +02:00
|
|
|
}
|
|
|
|
|
2020-07-30 09:06:29 +02:00
|
|
|
const start = new Date(+start_at);
|
|
|
|
const end = new Date(+end_at);
|
|
|
|
|
2020-07-28 08:52:14 +02:00
|
|
|
const [pageviews, uniques] = await Promise.all([
|
2020-08-12 07:24:41 +02:00
|
|
|
getPageviews(+id, start, end, tz, unit, '*'),
|
|
|
|
getPageviews(+id, start, end, tz, unit, 'distinct session_id'),
|
2020-07-28 08:52:14 +02:00
|
|
|
]);
|
|
|
|
|
2020-08-08 02:19:42 +02:00
|
|
|
return ok(res, { pageviews, uniques });
|
2020-07-26 09:12:42 +02:00
|
|
|
};
|