umami/queries/analytics/pageview/getPageviewMetrics.js

65 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-07-21 06:31:26 +02:00
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
2022-08-26 07:04:32 +02:00
import clickhouse from 'lib/clickhouse';
import { parseFilters, rawQuery } from 'lib/db/relational';
import { runAnalyticsQuery } from 'lib/db/db';
2022-07-12 23:14:36 +02:00
2022-07-21 06:31:26 +02:00
export async function getPageviewMetrics(...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(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,
column,
2022-07-12 23:14:36 +02:00
filters,
params,
);
return rawQuery(
`
select ${column} x, count(*) y
2022-07-12 23:14:36 +02:00
from ${table}
${joinSession}
where ${table}.website_id=$1
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
async function clickhouseQuery(website_id, start_at, end_at, column, table, filters = {}) {
2022-07-21 06:31:26 +02:00
const params = [website_id];
2022-08-26 07:04:32 +02:00
const { pageviewQuery, sessionQuery, eventQuery, joinSession } = clickhouse.parseFilters(
2022-07-21 06:31:26 +02:00
table,
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
);
2022-08-26 07:04:32 +02:00
return clickhouse.rawQuery(
2022-07-21 06:31:26 +02:00
`
select ${column} x, count(*) y
2022-07-21 06:31:26 +02:00
from ${table}
${joinSession}
where ${table}.website_id= $1
2022-08-26 07:04:32 +02:00
and ${clickhouse.getBetweenDates(table + '.created_at', start_at, end_at)}
2022-07-21 06:31:26 +02:00
${pageviewQuery}
${joinSession && sessionQuery}
${eventQuery}
group by x
order by y desc
`,
params,
);
}