mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
21 lines
644 B
JavaScript
21 lines
644 B
JavaScript
import moment from 'moment-timezone';
|
|
import { getPageviewData } from 'lib/db';
|
|
import { useAuth } from 'lib/middleware';
|
|
|
|
export default async (req, res) => {
|
|
await useAuth(req, res);
|
|
|
|
const { id, start_at, end_at, unit, tz } = req.query;
|
|
|
|
if (!moment.tz.zone(tz) || !['hour', 'day'].includes(unit)) {
|
|
return res.status(400).end();
|
|
}
|
|
|
|
const [pageviews, uniques] = await Promise.all([
|
|
getPageviewData(+id, new Date(+start_at), new Date(+end_at), tz, unit, '*'),
|
|
getPageviewData(+id, new Date(+start_at), new Date(+end_at), tz, unit, 'distinct session_id'),
|
|
]);
|
|
|
|
return res.status(200).json({ pageviews, uniques });
|
|
};
|