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

86 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-11-15 22:21:14 +01:00
import moment from 'moment-timezone';
import { NextApiResponse } from 'next';
import { badRequest, methodNotAllowed, ok, unauthorized } from 'next-basics';
import { NextApiRequestQueryBody, WebsitePageviews } from 'lib/types';
import { canViewWebsite } from 'lib/auth';
import { useAuth, useCors } from 'lib/middleware';
2022-11-15 22:21:14 +01:00
import { getPageviewStats } from 'queries';
2023-07-26 18:55:54 +02:00
import { parseDateRangeQuery } from 'lib/query';
2023-08-02 23:21:13 +02:00
import { getSessionStats } from '../../../../queries/analytics/sessions/getSessionStats';
2020-07-26 09:12:42 +02:00
2022-11-18 07:46:05 +01:00
export interface WebsitePageviewRequestQuery {
2022-11-15 22:21:14 +01:00
id: string;
2022-12-27 02:36:48 +01:00
startAt: number;
endAt: number;
2022-11-15 22:21:14 +01:00
unit: string;
timezone: string;
2022-11-15 22:21:14 +01:00
url?: string;
referrer?: string;
2023-04-26 08:25:51 +02:00
title?: string;
2022-11-15 22:21:14 +01:00
os?: string;
browser?: string;
device?: string;
country?: string;
2023-04-17 09:10:51 +02:00
region: string;
city?: string;
2022-11-15 22:21:14 +01:00
}
export default async (
2022-11-18 07:46:05 +01:00
req: NextApiRequestQueryBody<WebsitePageviewRequestQuery>,
2022-11-15 22:21:14 +01:00
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
const {
id: websiteId,
timezone,
url,
referrer,
2023-04-26 08:25:51 +02:00
title,
os,
browser,
device,
country,
2023-04-17 09:10:51 +02:00
region,
city,
} = req.query;
2022-10-12 22:11:44 +02:00
if (req.method === 'GET') {
if (!(await canViewWebsite(req.auth, websiteId))) {
return unauthorized(res);
2020-09-11 22:49:43 +02:00
}
2023-07-26 18:55:54 +02:00
const { startDate, endDate, unit } = await parseDateRangeQuery(req);
2020-07-30 09:06:29 +02:00
2023-07-26 18:55:54 +02:00
if (!moment.tz.zone(timezone)) {
return badRequest(res);
}
2023-08-04 22:18:30 +02:00
const filters = {
startDate,
endDate,
timezone,
unit,
url,
referrer,
title,
os,
browser,
device,
country,
region,
city,
};
2020-10-09 08:26:05 +02:00
const [pageviews, sessions] = await Promise.all([
2023-08-04 22:18:30 +02:00
getPageviewStats(websiteId, filters),
getSessionStats(websiteId, filters),
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
};