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

107 lines
2.2 KiB
TypeScript
Raw Normal View History

2022-11-15 21:21:14 +00: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 21:21:14 +00:00
import { getPageviewStats } from 'queries';
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
2022-11-18 06:46:05 +00:00
export interface WebsitePageviewRequestQuery {
2022-11-15 21:21:14 +00:00
id: string;
2022-12-27 01:36:48 +00:00
startAt: number;
endAt: number;
2022-11-15 21:21:14 +00:00
unit: string;
timezone: string;
2022-11-15 21:21:14 +00:00
url?: string;
referrer?: string;
2023-03-01 18:53:57 +00:00
pageTitle?: string;
2022-11-15 21:21:14 +00:00
os?: string;
browser?: string;
device?: string;
country?: string;
2023-04-17 07:10:51 +00:00
region: string;
city?: string;
2022-11-15 21:21:14 +00:00
}
export default async (
2022-11-18 06:46:05 +00:00
req: NextApiRequestQueryBody<WebsitePageviewRequestQuery>,
2022-11-15 21:21:14 +00:00
res: NextApiResponse<WebsitePageviews>,
) => {
2022-10-12 20:11:44 +00:00
await useCors(req, res);
await useAuth(req, res);
2022-04-04 07:33:20 +00:00
const {
id: websiteId,
2022-12-27 01:36:48 +00:00
startAt,
endAt,
unit,
timezone,
url,
referrer,
2023-03-01 18:53:57 +00:00
pageTitle,
os,
browser,
device,
country,
2023-04-17 07:10:51 +00:00
region,
city,
} = req.query;
2022-10-12 20:11:44 +00:00
if (req.method === 'GET') {
if (!(await canViewWebsite(req.auth, websiteId))) {
return unauthorized(res);
2020-09-11 20:49:43 +00:00
}
2022-12-27 01:36:48 +00:00
const startDate = new Date(+startAt);
const endDate = new Date(+endAt);
2020-07-30 07:06:29 +00:00
if (!moment.tz.zone(timezone) || !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-11-15 21:21:14 +00:00
startDate,
endDate,
timezone,
2022-09-12 16:55:34 +00:00
unit,
count: '*',
filters: {
url,
referrer,
2023-03-01 18:53:57 +00:00
pageTitle,
2022-09-12 16:55:34 +00:00
os,
browser,
device,
country,
2023-04-17 07:10:51 +00:00
region,
city,
2022-09-12 16:55:34 +00:00
},
2022-04-10 10:51:43 +00:00
}),
2022-10-11 00:01:48 +00:00
getPageviewStats(websiteId, {
2022-11-15 21:21:14 +00:00
startDate,
endDate,
timezone,
2022-09-12 16:55:34 +00:00
unit,
count: 'distinct website_event.',
2022-09-12 16:55:34 +00:00
filters: {
url,
2023-03-01 18:53:57 +00:00
pageTitle,
2022-09-12 16:55:34 +00:00
os,
browser,
device,
country,
2023-04-17 07:10:51 +00:00
region,
city,
2022-09-12 16:55:34 +00:00
},
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
};