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-07-21 06:31:26 +02:00
|
|
|
export async function getPageviewStats(...args) {
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function relationalQuery(
|
2022-10-10 22:42:18 +02:00
|
|
|
websiteId,
|
2022-09-12 18:55:34 +02:00
|
|
|
{
|
|
|
|
start_at,
|
|
|
|
end_at,
|
|
|
|
timezone = 'utc',
|
|
|
|
unit = 'day',
|
|
|
|
count = '*',
|
|
|
|
filters = {},
|
|
|
|
sessionKey = 'session_id',
|
|
|
|
},
|
2022-07-12 23:14:36 +02:00
|
|
|
) {
|
2022-08-28 06:38:35 +02:00
|
|
|
const { getDateQuery, parseFilters, rawQuery } = prisma;
|
2022-10-22 06:33:23 +02:00
|
|
|
const params = [start_at, end_at];
|
2022-07-21 10:11:10 +02:00
|
|
|
const { pageviewQuery, sessionQuery, joinSession } = parseFilters(
|
|
|
|
'pageview',
|
|
|
|
null,
|
|
|
|
filters,
|
|
|
|
params,
|
|
|
|
);
|
2022-07-12 23:14:36 +02:00
|
|
|
|
|
|
|
return rawQuery(
|
2022-08-28 06:38:35 +02:00
|
|
|
`select ${getDateQuery('pageview.created_at', unit, timezone)} t,
|
2022-07-23 07:42:01 +02:00
|
|
|
count(${count !== '*' ? `${count}${sessionKey}` : count}) y
|
2022-07-13 07:39:16 +02:00
|
|
|
from pageview
|
2022-10-12 04:37:38 +02:00
|
|
|
join website
|
|
|
|
on pageview.website_id = website.website_id
|
2022-07-13 07:39:16 +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-07-23 02:03:42 +02:00
|
|
|
${pageviewQuery}
|
|
|
|
${sessionQuery}
|
2022-08-28 06:38:35 +02:00
|
|
|
group by 1`,
|
2022-07-12 23:14:36 +02:00
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
|
|
|
async function clickhouseQuery(
|
2022-10-10 22:42:18 +02:00
|
|
|
websiteId,
|
2022-09-12 18:55:34 +02:00
|
|
|
{ start_at, end_at, timezone = 'UTC', unit = 'day', count = '*', filters = {} },
|
2022-07-21 06:31:26 +02:00
|
|
|
) {
|
2022-08-28 06:38:35 +02:00
|
|
|
const { parseFilters, rawQuery, getDateStringQuery, getDateQuery, getBetweenDates } = 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-09-12 18:55:34 +02:00
|
|
|
const { pageviewQuery, sessionQuery } = parseFilters(null, filters, params);
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-08-28 06:38:35 +02:00
|
|
|
return rawQuery(
|
|
|
|
`select
|
|
|
|
${getDateStringQuery('g.t', unit)} as t,
|
2022-07-21 06:31:26 +02:00
|
|
|
g.y as y
|
|
|
|
from
|
|
|
|
(select
|
2022-08-28 06:38:35 +02:00
|
|
|
${getDateQuery('created_at', unit, timezone)} t,
|
2022-10-09 01:12:33 +02:00
|
|
|
count(${count !== '*' ? 'distinct session_id' : count}) y
|
2022-09-12 18:55:34 +02:00
|
|
|
from event
|
2022-09-24 07:43:51 +02:00
|
|
|
where event_name = ''
|
2022-11-10 07:46:50 +01:00
|
|
|
and website_id = $1
|
|
|
|
and rev_id = $2
|
2022-09-12 18:55:34 +02:00
|
|
|
and ${getBetweenDates('created_at', start_at, end_at)}
|
2022-07-23 02:03:42 +02:00
|
|
|
${pageviewQuery}
|
|
|
|
${sessionQuery}
|
2022-07-21 06:31:26 +02:00
|
|
|
group by t) g
|
2022-08-28 06:38:35 +02:00
|
|
|
order by t`,
|
2022-07-21 06:31:26 +02:00
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|