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

98 lines
2.1 KiB
TypeScript
Raw Normal View History

2022-11-15 22:21:14 +01:00
import { WebsitePageviews } from 'interface/api/models';
import { NextApiRequestQueryBody } from 'interface/api/nextApi';
import { allowQuery } from 'lib/auth';
import { TYPE_WEBSITE } from 'lib/constants';
2022-11-15 22:21:14 +01:00
import { useAuth, useCors } from 'lib/middleware';
import moment from 'moment-timezone';
import { NextApiResponse } from 'next';
import { badRequest, methodNotAllowed, ok, unauthorized } from 'next-basics';
import { getPageviewStats } from 'queries';
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
2022-11-15 22:21:14 +01:00
export interface WebsitePageviewReqeustQuery {
id: string;
websiteId: string;
start_at: number;
end_at: number;
unit: string;
tz: string;
url?: string;
referrer?: string;
os?: string;
browser?: string;
device?: string;
country?: string;
}
export default async (
req: NextApiRequestQueryBody<WebsitePageviewReqeustQuery>,
res: NextApiResponse<WebsitePageviews>,
) => {
2022-10-12 22:11:44 +02:00
await useCors(req, res);
await useAuth(req, res);
2022-04-04 09:33:20 +02:00
2022-10-12 22:11:44 +02:00
if (req.method === 'GET') {
if (!(await allowQuery(req, TYPE_WEBSITE))) {
return unauthorized(res);
2020-09-11 22:49:43 +02:00
}
2022-10-12 04:37:38 +02:00
const {
id: websiteId,
start_at,
end_at,
unit,
tz,
url,
referrer,
os,
browser,
device,
country,
} = req.query;
2020-09-11 22:49:43 +02:00
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-10-11 02:01:48 +02:00
getPageviewStats(websiteId, {
2022-11-15 22:21:14 +01:00
startDate,
endDate,
2022-09-28 02:18:16 +02:00
timezone: tz,
2022-09-12 18:55:34 +02:00
unit,
count: '*',
filters: {
url,
referrer,
os,
browser,
device,
country,
},
2022-04-10 12:51:43 +02:00
}),
2022-10-11 02:01:48 +02:00
getPageviewStats(websiteId, {
2022-11-15 22:21:14 +01:00
startDate,
endDate,
2022-09-28 02:18:16 +02:00
timezone: tz,
2022-09-12 18:55:34 +02:00
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
};