umami/pages/api/website/[id]/pageviews.js

32 lines
892 B
JavaScript
Raw Normal View History

import moment from 'moment-timezone';
2020-08-12 07:24:41 +02:00
import { getPageviews } from 'lib/queries';
2020-09-11 22:49:43 +02:00
import { ok, badRequest, methodNotAllowed } from 'lib/response';
import { useAuth } from 'lib/middleware';
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-09-11 22:49:43 +02:00
await useAuth(req, res);
2020-07-26 09:12:42 +02:00
2020-09-11 22:49:43 +02:00
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);
}
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-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
};