mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
25 lines
713 B
JavaScript
25 lines
713 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 websiteId = +id;
|
|
const startDate = new Date(+start_at);
|
|
const endDate = new Date(+end_at);
|
|
|
|
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 });
|
|
};
|