mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
24 lines
652 B
JavaScript
24 lines
652 B
JavaScript
import moment from 'moment-timezone';
|
|
import { getPageviews } from 'lib/queries';
|
|
import { ok, badRequest } from 'lib/response';
|
|
|
|
const unitTypes = ['month', 'hour', 'day'];
|
|
|
|
export default async (req, res) => {
|
|
const { id, start_at, end_at, unit, tz } = req.query;
|
|
|
|
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
|
|
return badRequest(res);
|
|
}
|
|
|
|
const start = new Date(+start_at);
|
|
const end = new Date(+end_at);
|
|
|
|
const [pageviews, uniques] = await Promise.all([
|
|
getPageviews(+id, start, end, tz, unit, '*'),
|
|
getPageviews(+id, start, end, tz, unit, 'distinct session_id'),
|
|
]);
|
|
|
|
return ok(res, { pageviews, uniques });
|
|
};
|