2022-08-28 06:38:35 +02:00
|
|
|
import prisma from 'lib/prisma';
|
2022-08-26 07:04:32 +02:00
|
|
|
import clickhouse from 'lib/clickhouse';
|
2022-08-28 06:38:35 +02:00
|
|
|
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
|
2022-11-08 07:35:51 +01:00
|
|
|
import cache from 'lib/cache';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-11-15 22:21:14 +01:00
|
|
|
export async function getSessionMetrics(
|
|
|
|
...args: [
|
|
|
|
websiteId: string,
|
|
|
|
data: { startDate: Date; endDate: Date; field: string; filters: object },
|
|
|
|
]
|
|
|
|
) {
|
2022-08-28 06:38:35 +02:00
|
|
|
return runQuery({
|
|
|
|
[PRISMA]: () => relationalQuery(...args),
|
2022-07-25 18:47:11 +02:00
|
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
2022-07-21 06:31:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-15 22:21:14 +01:00
|
|
|
async function relationalQuery(
|
|
|
|
websiteId: string,
|
|
|
|
data: { startDate: Date; endDate: Date; field: string; filters: object },
|
|
|
|
) {
|
|
|
|
const { startDate, endDate, field, filters = {} } = data;
|
2022-08-28 06:38:35 +02:00
|
|
|
const { parseFilters, rawQuery } = prisma;
|
2022-10-22 06:33:23 +02:00
|
|
|
const params = [startDate, endDate];
|
2022-11-15 22:21:14 +01:00
|
|
|
const { filterQuery, joinSession } = parseFilters(filters, params);
|
2022-07-12 23:14:36 +02:00
|
|
|
|
|
|
|
return rawQuery(
|
2022-08-28 06:38:35 +02:00
|
|
|
`select ${field} x, count(*) y
|
2022-07-12 23:14:36 +02:00
|
|
|
from session as x
|
|
|
|
where x.session_id in (
|
|
|
|
select pageview.session_id
|
|
|
|
from pageview
|
2022-10-12 04:37:38 +02:00
|
|
|
join website
|
|
|
|
on pageview.website_id = website.website_id
|
2022-07-12 23:14:36 +02:00
|
|
|
${joinSession}
|
2022-11-01 07:42:37 +01:00
|
|
|
where website.website_id='${websiteId}'
|
2022-10-22 06:33:23 +02:00
|
|
|
and pageview.created_at between $1 and $2
|
2022-11-15 22:21:14 +01:00
|
|
|
${filterQuery}
|
2022-07-12 23:14:36 +02:00
|
|
|
)
|
|
|
|
group by 1
|
2022-08-28 06:38:35 +02:00
|
|
|
order by 2 desc`,
|
2022-07-12 23:14:36 +02:00
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-11-15 22:21:14 +01:00
|
|
|
async function clickhouseQuery(
|
|
|
|
websiteId: string,
|
|
|
|
data: { startDate: Date; endDate: Date; field: string; filters: object },
|
|
|
|
) {
|
|
|
|
const { startDate, endDate, field, filters = {} } = data;
|
2022-08-28 06:38:35 +02:00
|
|
|
const { parseFilters, getBetweenDates, rawQuery } = clickhouse;
|
2022-11-08 07:35:51 +01:00
|
|
|
const website = await cache.fetchWebsite(websiteId);
|
2022-11-08 01:22:49 +01:00
|
|
|
const params = [websiteId, website?.revId || 0];
|
2022-11-15 22:21:14 +01:00
|
|
|
const { filterQuery } = parseFilters(filters, params);
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-08-28 06:38:35 +02:00
|
|
|
return rawQuery(
|
|
|
|
`select ${field} x, count(*) y
|
2022-09-12 18:55:34 +02:00
|
|
|
from event as x
|
2022-11-08 01:22:49 +01:00
|
|
|
where website_id = $1
|
|
|
|
and rev_id = $2
|
2022-09-12 18:55:34 +02:00
|
|
|
and event_name = ''
|
|
|
|
and ${getBetweenDates('created_at', startDate, endDate)}
|
2022-11-15 22:21:14 +01:00
|
|
|
${filterQuery}
|
2022-07-21 06:31:26 +02:00
|
|
|
group by x
|
2022-08-28 06:38:35 +02:00
|
|
|
order by y desc`,
|
2022-07-21 06:31:26 +02:00
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|