mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
import moment from 'moment-timezone';
|
|
import { getPageviewStats } from 'lib/queries';
|
|
import { ok, badRequest, methodNotAllowed, unauthorized } from 'lib/response';
|
|
import { allowQuery } from 'lib/auth';
|
|
|
|
const unitTypes = ['year', 'month', 'hour', 'day'];
|
|
|
|
export default async (req, res) => {
|
|
if (req.method === 'GET') {
|
|
if (!(await allowQuery(req))) {
|
|
return unauthorized(res);
|
|
}
|
|
|
|
const { id, start_at, end_at, unit, tz, url, ref } = req.query;
|
|
|
|
const websiteId = +id;
|
|
const startDate = new Date(+start_at);
|
|
const endDate = new Date(+end_at);
|
|
|
|
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
|
|
return badRequest(res);
|
|
}
|
|
|
|
const [pageviews, sessions] = await Promise.all([
|
|
getPageviewStats(websiteId, startDate, endDate, tz, unit, '*', { url, ref }),
|
|
getPageviewStats(websiteId, startDate, endDate, tz, unit, 'distinct session_id', {
|
|
url,
|
|
ref,
|
|
}),
|
|
]);
|
|
|
|
return ok(res, { pageviews, sessions });
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|