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

65 lines
1.4 KiB
JavaScript
Raw Normal View History

import moment from 'moment-timezone';
2022-07-12 23:14:36 +02:00
import { getPageviewStats } from 'queries';
2022-08-29 05:20:54 +02:00
import { ok, badRequest, methodNotAllowed, unauthorized } from 'next-basics';
import { allowQuery } from 'lib/auth';
2022-04-04 09:33:20 +02:00
import { useCors } from 'lib/middleware';
2020-07-26 09:12:42 +02:00
2020-09-13 10:38:14 +02:00
const unitTypes = ['year', 'month', 'hour', 'day'];
2020-08-01 04:05:14 +02:00
2020-07-26 09:12:42 +02:00
export default async (req, res) => {
2020-09-11 22:49:43 +02:00
if (req.method === 'GET') {
2022-04-04 09:33:20 +02:00
await useCors(req, res);
if (!(await allowQuery(req))) {
return unauthorized(res);
2020-09-11 22:49:43 +02:00
}
2022-04-10 12:51:43 +02:00
const { id, start_at, end_at, unit, tz, url, referrer, os, browser, device, country } =
req.query;
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
if (!moment.tz.zone(tz) || !unitTypes.includes(unit)) {
return badRequest(res);
}
2020-10-09 08:26:05 +02:00
const [pageviews, sessions] = await Promise.all([
2022-09-12 18:55:34 +02:00
getPageviewStats(websiteId, {
startDate,
endDate,
tz,
unit,
count: '*',
filters: {
url,
referrer,
os,
browser,
device,
country,
},
2022-04-10 12:51:43 +02:00
}),
2022-09-12 18:55:34 +02:00
getPageviewStats(websiteId, {
startDate,
endDate,
tz,
unit,
count: 'distinct pageview.',
filters: {
url,
os,
browser,
device,
country,
},
2021-11-22 07:00:14 +01:00
}),
2020-09-11 22:49:43 +02:00
]);
2020-10-09 08:26:05 +02:00
return ok(res, { pageviews, sessions });
2020-09-11 22:49:43 +02:00
}
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
};