2023-04-02 00:44:30 +02:00
|
|
|
import { NextApiResponse } from 'next';
|
|
|
|
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
|
2022-12-09 08:43:43 +01:00
|
|
|
import { WebsiteMetric, NextApiRequestQueryBody } from 'lib/types';
|
2022-12-02 05:53:37 +01:00
|
|
|
import { canViewWebsite } from 'lib/auth';
|
2022-10-12 22:11:44 +02:00
|
|
|
import { useAuth, useCors } from 'lib/middleware';
|
2023-04-02 00:44:30 +02:00
|
|
|
import { SESSION_COLUMNS, EVENT_COLUMNS, FILTER_COLUMNS } from 'lib/constants';
|
|
|
|
import { getPageviewMetrics, getSessionMetrics } from 'queries';
|
2020-10-09 00:02:48 +02:00
|
|
|
|
2022-11-18 07:46:05 +01:00
|
|
|
export interface WebsiteMetricsRequestQuery {
|
2022-11-15 22:21:14 +01:00
|
|
|
id: string;
|
|
|
|
type: string;
|
2022-12-27 02:36:48 +01:00
|
|
|
startAt: number;
|
|
|
|
endAt: number;
|
2022-11-15 22:21:14 +01:00
|
|
|
url: string;
|
|
|
|
referrer: string;
|
2023-03-31 14:55:28 +02:00
|
|
|
title: string;
|
2023-04-02 00:44:30 +02:00
|
|
|
query: string;
|
|
|
|
event: string;
|
2022-11-15 22:21:14 +01:00
|
|
|
os: string;
|
|
|
|
browser: string;
|
|
|
|
device: string;
|
|
|
|
country: string;
|
2023-04-14 07:28:29 +02:00
|
|
|
region: string;
|
2023-02-20 18:04:20 +01:00
|
|
|
city: string;
|
2022-11-15 22:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default async (
|
2022-11-18 07:46:05 +01:00
|
|
|
req: NextApiRequestQueryBody<WebsiteMetricsRequestQuery>,
|
2022-11-15 22:21:14 +01:00
|
|
|
res: NextApiResponse<WebsiteMetric[]>,
|
|
|
|
) => {
|
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-12-02 05:53:37 +01:00
|
|
|
const {
|
|
|
|
id: websiteId,
|
|
|
|
type,
|
2022-12-27 02:36:48 +01:00
|
|
|
startAt,
|
|
|
|
endAt,
|
2022-12-02 05:53:37 +01:00
|
|
|
url,
|
|
|
|
referrer,
|
2023-03-31 14:55:28 +02:00
|
|
|
title,
|
2023-04-02 00:44:30 +02:00
|
|
|
query,
|
|
|
|
event,
|
2022-12-02 05:53:37 +01:00
|
|
|
os,
|
|
|
|
browser,
|
|
|
|
device,
|
|
|
|
country,
|
2023-04-14 07:28:29 +02:00
|
|
|
region,
|
2023-02-20 18:04:20 +01:00
|
|
|
city,
|
2022-12-02 05:53:37 +01:00
|
|
|
} = req.query;
|
|
|
|
|
2022-10-12 22:11:44 +02:00
|
|
|
if (req.method === 'GET') {
|
2022-12-28 00:18:58 +01:00
|
|
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
2020-09-18 07:52:20 +02:00
|
|
|
return unauthorized(res);
|
|
|
|
}
|
|
|
|
|
2022-12-27 02:36:48 +01:00
|
|
|
const startDate = new Date(+startAt);
|
|
|
|
const endDate = new Date(+endAt);
|
2020-07-28 08:52:14 +02:00
|
|
|
|
2023-04-02 00:44:30 +02:00
|
|
|
if (SESSION_COLUMNS.includes(type)) {
|
|
|
|
const column = FILTER_COLUMNS[type] || type;
|
|
|
|
const filters = {
|
|
|
|
os,
|
|
|
|
browser,
|
|
|
|
device,
|
|
|
|
country,
|
2023-04-14 07:28:29 +02:00
|
|
|
region,
|
2023-04-02 00:44:30 +02:00
|
|
|
city,
|
|
|
|
};
|
|
|
|
|
|
|
|
filters[type] = undefined;
|
|
|
|
|
2022-09-12 18:55:34 +02:00
|
|
|
let data = await getSessionMetrics(websiteId, {
|
|
|
|
startDate,
|
|
|
|
endDate,
|
2023-04-02 00:44:30 +02:00
|
|
|
column,
|
|
|
|
filters,
|
2022-04-10 12:51:43 +02:00
|
|
|
});
|
2021-12-02 04:25:00 +01:00
|
|
|
|
|
|
|
if (type === 'language') {
|
2023-02-08 01:29:25 +01:00
|
|
|
const combined = {};
|
2021-12-02 04:25:00 +01:00
|
|
|
|
2023-02-08 01:29:25 +01:00
|
|
|
for (const { x, y } of data) {
|
|
|
|
const key = String(x).toLowerCase().split('-')[0];
|
2022-04-10 12:51:43 +02:00
|
|
|
|
2023-04-02 00:44:30 +02:00
|
|
|
if (combined[key] === undefined) {
|
|
|
|
combined[key] = { x: key, y };
|
2022-04-10 12:51:43 +02:00
|
|
|
} else {
|
2023-02-08 01:29:25 +01:00
|
|
|
combined[key].y += y;
|
2022-04-10 12:51:43 +02:00
|
|
|
}
|
2021-12-02 04:25:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
data = Object.values(combined);
|
|
|
|
}
|
2020-07-30 06:40:26 +02:00
|
|
|
|
2020-10-09 00:02:48 +02:00
|
|
|
return ok(res, data);
|
|
|
|
}
|
|
|
|
|
2023-04-02 00:44:30 +02:00
|
|
|
if (EVENT_COLUMNS.includes(type)) {
|
|
|
|
const column = FILTER_COLUMNS[type] || type;
|
2022-07-21 10:11:10 +02:00
|
|
|
const filters = {
|
2023-04-02 00:44:30 +02:00
|
|
|
url,
|
|
|
|
referrer,
|
|
|
|
title,
|
|
|
|
query,
|
|
|
|
event,
|
|
|
|
os,
|
|
|
|
browser,
|
|
|
|
device,
|
|
|
|
country,
|
2023-04-14 07:28:29 +02:00
|
|
|
region,
|
2023-04-02 00:44:30 +02:00
|
|
|
city,
|
2022-07-21 10:11:10 +02:00
|
|
|
};
|
|
|
|
|
2023-04-02 00:44:30 +02:00
|
|
|
filters[type] = undefined;
|
|
|
|
|
2022-10-11 02:01:48 +02:00
|
|
|
const data = await getPageviewMetrics(websiteId, {
|
2022-09-12 18:55:34 +02:00
|
|
|
startDate,
|
|
|
|
endDate,
|
|
|
|
column,
|
|
|
|
filters,
|
|
|
|
});
|
2020-09-11 22:49:43 +02:00
|
|
|
|
2020-10-09 00:02:48 +02:00
|
|
|
return ok(res, data);
|
|
|
|
}
|
2020-09-11 22:49:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return methodNotAllowed(res);
|
2020-07-28 08:52:14 +02:00
|
|
|
};
|