2022-07-21 06:31:26 +02:00
|
|
|
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
|
2022-08-26 07:20:30 +02:00
|
|
|
import { getDateQuery, parseFilters, rawQuery } from 'lib/relational';
|
2022-08-26 07:23:19 +02:00
|
|
|
import { runAnalyticsQuery } from 'lib/db';
|
2022-08-26 07:04:32 +02:00
|
|
|
import clickhouse from 'lib/clickhouse';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-07-21 06:31:26 +02:00
|
|
|
export async function getPageviewStats(...args) {
|
|
|
|
return runAnalyticsQuery({
|
2022-07-25 18:47:11 +02:00
|
|
|
[RELATIONAL]: () => relationalQuery(...args),
|
|
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
2022-07-21 06:31:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function relationalQuery(
|
2022-07-12 23:14:36 +02:00
|
|
|
website_id,
|
|
|
|
start_at,
|
|
|
|
end_at,
|
|
|
|
timezone = 'utc',
|
|
|
|
unit = 'day',
|
|
|
|
count = '*',
|
|
|
|
filters = {},
|
2022-07-22 23:43:19 +02:00
|
|
|
sessionKey = 'session_id',
|
2022-07-12 23:14:36 +02:00
|
|
|
) {
|
|
|
|
const params = [website_id, 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-07-23 02:03:42 +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
|
|
|
|
${joinSession}
|
|
|
|
where pageview.website_id=$1
|
2022-07-23 02:03:42 +02:00
|
|
|
and pageview.created_at between $2 and $3
|
|
|
|
${pageviewQuery}
|
|
|
|
${sessionQuery}
|
|
|
|
group by 1
|
2022-07-12 23:14:36 +02:00
|
|
|
`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
|
|
|
async function clickhouseQuery(
|
|
|
|
website_id,
|
|
|
|
start_at,
|
|
|
|
end_at,
|
|
|
|
timezone = 'UTC',
|
|
|
|
unit = 'day',
|
|
|
|
count = '*',
|
|
|
|
filters = {},
|
2022-07-22 23:43:19 +02:00
|
|
|
sessionKey = 'session_uuid',
|
2022-07-21 06:31:26 +02:00
|
|
|
) {
|
|
|
|
const params = [website_id];
|
2022-08-26 07:43:22 +02:00
|
|
|
const { pageviewQuery, sessionQuery, joinSession } = parseFilters(
|
2022-07-22 23:43:19 +02:00
|
|
|
'pageview',
|
2022-07-23 04:50:43 +02:00
|
|
|
null,
|
2022-07-22 23:43:19 +02:00
|
|
|
filters,
|
|
|
|
params,
|
|
|
|
sessionKey,
|
|
|
|
);
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-08-26 07:04:32 +02:00
|
|
|
return clickhouse.rawQuery(
|
2022-07-21 06:31:26 +02:00
|
|
|
`
|
|
|
|
select
|
2022-08-26 07:04:32 +02:00
|
|
|
${clickhouse.getDateStringQuery('g.t', unit)} as t,
|
2022-07-21 06:31:26 +02:00
|
|
|
g.y as y
|
|
|
|
from
|
|
|
|
(select
|
2022-08-26 07:04:32 +02:00
|
|
|
${clickhouse.getDateQuery('created_at', unit, timezone)} t,
|
2022-07-23 07:42:01 +02:00
|
|
|
count(${count !== '*' ? `${count}${sessionKey}` : count}) y
|
2022-07-21 06:31:26 +02:00
|
|
|
from pageview
|
|
|
|
${joinSession}
|
|
|
|
where pageview.website_id= $1
|
2022-08-26 07:04:32 +02:00
|
|
|
and ${clickhouse.getBetweenDates('pageview.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
|
|
|
|
order by t
|
|
|
|
`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|