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

77 lines
1.6 KiB
JavaScript
Raw Normal View History

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