2022-07-21 06:31:26 +02:00
|
|
|
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
|
|
|
|
import {
|
|
|
|
rawQueryClickhouse,
|
|
|
|
runAnalyticsQuery,
|
|
|
|
parseFilters,
|
|
|
|
rawQuery,
|
|
|
|
getBetweenDatesClickhouse,
|
|
|
|
} from 'lib/db';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-07-21 06:31:26 +02:00
|
|
|
export async function getPageviewMetrics(...args) {
|
|
|
|
return runAnalyticsQuery({
|
|
|
|
[`${RELATIONAL}`]: () => relationalQuery(...args),
|
|
|
|
[`${CLICKHOUSE}`]: () => clickhouseQuery(...args),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-07-23 02:03:42 +02:00
|
|
|
async function relationalQuery(website_id, start_at, end_at, column, table, filters = {}) {
|
2022-07-12 23:14:36 +02:00
|
|
|
const params = [website_id, start_at, end_at];
|
|
|
|
const { pageviewQuery, sessionQuery, eventQuery, joinSession } = parseFilters(
|
|
|
|
table,
|
2022-07-21 10:11:10 +02:00
|
|
|
column,
|
2022-07-12 23:14:36 +02:00
|
|
|
filters,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
|
|
|
|
return rawQuery(
|
|
|
|
`
|
2022-07-21 10:11:10 +02:00
|
|
|
select ${column} x, count(*) y
|
2022-07-12 23:14:36 +02:00
|
|
|
from ${table}
|
|
|
|
${joinSession}
|
|
|
|
where ${table}.website_id=$1
|
2022-07-23 02:03:42 +02:00
|
|
|
and ${table}.created_at between $2 and $3
|
|
|
|
${pageviewQuery}
|
|
|
|
${joinSession && sessionQuery}
|
|
|
|
${eventQuery}
|
2022-07-12 23:14:36 +02:00
|
|
|
group by 1
|
|
|
|
order by 2 desc
|
|
|
|
`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-07-23 02:03:42 +02:00
|
|
|
async function clickhouseQuery(website_id, start_at, end_at, column, table, filters = {}) {
|
2022-07-21 06:31:26 +02:00
|
|
|
const params = [website_id];
|
|
|
|
const { pageviewQuery, sessionQuery, eventQuery, joinSession } = parseFilters(
|
|
|
|
table,
|
2022-07-23 02:03:42 +02:00
|
|
|
column,
|
2022-07-21 06:31:26 +02:00
|
|
|
filters,
|
|
|
|
params,
|
2022-07-22 23:43:19 +02:00
|
|
|
'session_uuid',
|
2022-07-21 06:31:26 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
return rawQueryClickhouse(
|
|
|
|
`
|
2022-07-23 02:03:42 +02:00
|
|
|
select ${column} x, count(*) y
|
2022-07-21 06:31:26 +02:00
|
|
|
from ${table}
|
|
|
|
${joinSession}
|
|
|
|
where ${table}.website_id= $1
|
|
|
|
and ${getBetweenDatesClickhouse(table + '.created_at', start_at, end_at)}
|
|
|
|
${pageviewQuery}
|
|
|
|
${joinSession && sessionQuery}
|
|
|
|
${eventQuery}
|
|
|
|
group by x
|
|
|
|
order by y desc
|
|
|
|
`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|